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

Added (include ...) SMT2 command.

This commit is contained in:
Christoph M. Wintersteiger 2017-01-16 15:05:58 +00:00
parent 6fe1682378
commit 00a50eea7f
3 changed files with 75 additions and 0 deletions

View file

@ -29,6 +29,7 @@ Revision History:
#include"opt_cmds.h"
#include"polynomial_cmds.h"
#include"subpaving_cmds.h"
#include"smt2_extra_cmds.h"
#include"smt_strategic_solver.h"
#include"smt_solver.h"
@ -113,6 +114,7 @@ unsigned read_smtlib2_commands(char const * file_name) {
install_polynomial_cmds(ctx);
install_subpaving_cmds(ctx);
install_opt_cmds(ctx);
install_smt2_extra_cmds(ctx);
g_cmd_context = &ctx;
signal(SIGINT, on_ctrl_c);