3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 01:25:31 +00:00

initial opt commands

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2013-10-14 17:08:24 -07:00
parent 0a964c324e
commit 726f66a77c
5 changed files with 183 additions and 2 deletions

View file

@ -26,6 +26,7 @@ Revision History:
#include"smt2parser.h"
#include"dl_cmds.h"
#include"dbg_cmds.h"
#include"opt_cmds.h"
#include"polynomial_cmds.h"
#include"subpaving_cmds.h"
#include"smt_strategic_solver.h"
@ -110,6 +111,7 @@ unsigned read_smtlib2_commands(char const * file_name) {
install_dbg_cmds(ctx);
install_polynomial_cmds(ctx);
install_subpaving_cmds(ctx);
install_opt_cmds(ctx);
g_cmd_context = &ctx;
signal(SIGINT, on_ctrl_c);