mirror of
https://github.com/Z3Prover/z3
synced 2025-04-22 16:45:31 +00:00
Merge branch 'master' of https://github.com/z3prover/z3
This commit is contained in:
commit
b8ac3e6ce4
6 changed files with 10 additions and 8 deletions
|
@ -308,7 +308,7 @@ extern "C" {
|
|||
|
||||
\param c - context.
|
||||
\param f - fixedpoint context.
|
||||
\param s - string containing SMT2 specification.
|
||||
\param s - path to file containing SMT2 specification.
|
||||
|
||||
def_API('Z3_fixedpoint_from_file', AST_VECTOR, (_in(CONTEXT), _in(FIXEDPOINT), _in(STRING)))
|
||||
*/
|
||||
|
|
|
@ -252,7 +252,7 @@ extern "C" {
|
|||
|
||||
\param c - context.
|
||||
\param o - optimize context.
|
||||
\param s - string containing SMT2 specification.
|
||||
\param s - path to file containing SMT2 specification.
|
||||
|
||||
def_API('Z3_optimize_from_file', VOID, (_in(CONTEXT), _in(OPTIMIZE), _in(STRING)))
|
||||
*/
|
||||
|
|
|
@ -146,6 +146,8 @@ public:
|
|||
|
||||
lbool check_sat(app_ref_vector const& asms) { return check_sat(asms.size(), (expr* const*)asms.c_ptr()); }
|
||||
|
||||
lbool check_sat() { return check_sat(0, nullptr); }
|
||||
|
||||
/**
|
||||
\brief Check satisfiability modulo a cube and a clause.
|
||||
|
||||
|
|
|
@ -520,7 +520,7 @@ public:
|
|||
try {
|
||||
symbol m, p;
|
||||
normalize(name, m, p);
|
||||
std::cout << name << " " << m << " " << p << "\n";
|
||||
out << name << " " << m << " " << p << "\n";
|
||||
param_descrs * d;
|
||||
if (m == symbol::null) {
|
||||
d = &get_param_descrs();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue