Files
cvc5/test/api/cpp/proj-issue388.cpp
Mathias Preiner 56e14c4639 Move public headers into top-level include directory. (#9555)
This PR moves the public API headers into a top-level include directory. This makes it easier to find the public API of cvc5 and makes the install headers script obsolete.

Fixes #9553
Fixes #9556
2023-03-07 23:39:29 +00:00

65 lines
1.8 KiB
C++

/******************************************************************************
* Top contributors (to current version):
* Andrew Reynolds, Mathias Preiner
*
* This file is part of the cvc5 project.
*
* Copyright (c) 2009-2022 by the authors listed in the file AUTHORS
* in the top-level source directory and their institutional affiliations.
* All rights reserved. See the file COPYING in the top-level source
* directory for licensing information.
* ****************************************************************************
*
* Test for project issue #388
*
*/
#include <cvc5/cvc5.h>
#include <cassert>
#include "base/configuration.h"
using namespace cvc5;
int main(void)
{
if (!internal::Configuration::isBuiltWithPoly())
{
return 0;
}
{ // Original
Solver slv;
slv.setLogic("QF_NRA");
Sort s = slv.getRealSort();
Term t1 = slv.mkConst(s, "a");
Term t2 = slv.mkConst(s, "b");
Term t3 = slv.mkConst(s, "c");
Term t4 = slv.mkTerm(Kind::DIVISION, {t1, t2});
Term t5 = slv.mkTerm(Kind::GT, {t4, t3});
Term t6 = slv.mkTerm(Kind::DIVISION, {t1, t3});
Term t7 = slv.mkTerm(Kind::IS_INTEGER, {t6});
Term t8 = slv.mkTerm(Kind::AND, {t5, t7, t5});
Term t9 = slv.mkTerm(Kind::NOT, {t8});
slv.assertFormula(t9);
slv.checkSat();
}
{ // Minimized
Solver slv;
slv.setOption("nl-cov", "true");
slv.setOption("nl-cov-var-elim", "true");
slv.setOption("nl-ext", "none");
slv.setLogic("QF_NIRA");
Sort s = slv.getRealSort();
Term t1 = slv.mkConst(s, "a");
Term t2 = slv.mkConst(s, "b");
Term t3 = slv.mkReal(0);
Term t7 = slv.mkTerm(Kind::IS_INTEGER, {t1});
Term t4 = slv.mkTerm(Kind::DIVISION, {t2, t1});
Term t5 = slv.mkTerm(Kind::DISTINCT, {t3, t4});
Term t8 = slv.mkTerm(Kind::OR, {t7, t5});
slv.assertFormula(t8);
slv.checkSat();
}
}