mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
make front_end_params an optional argument in cmd_context
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
bef9390142
commit
c2e95bb0c5
7 changed files with 26 additions and 19 deletions
|
@ -98,7 +98,7 @@ static void test_quant_solver(ast_manager& m, unsigned sz, app*const* xs, expr*
|
|||
static expr_ref parse_fml(ast_manager& m, char const* str) {
|
||||
expr_ref result(m);
|
||||
front_end_params fp;
|
||||
cmd_context ctx(fp, false, &m);
|
||||
cmd_context ctx(&fp, false, &m);
|
||||
ctx.set_ignore_check(true);
|
||||
std::ostringstream buffer;
|
||||
buffer << "(declare-const x Int)\n"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue