3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-11 17:54:43 +00:00
z3/src/cmd_context
Nuno Lopes b26735a887 fix build with gcc
Signed-off-by: Nuno Lopes <nlopes@microsoft.com>
2015-11-22 11:24:30 +00:00
..
extra_cmds update header guards to be C++ style. Fixes issue #9 2015-07-08 23:18:40 -07:00
basic_cmds.cpp add line/position information to unsupported command reports per zeph pull request 2015-10-30 19:23:31 -07:00
basic_cmds.h update header guards to be C++ style. Fixes issue #9 2015-07-08 23:18:40 -07:00
check_logic.cpp modify offset check to accept linear expressions over numerals. Codeplex issue 81 2014-03-02 17:50:29 -08:00
check_logic.h update header guards to be C++ style. Fixes issue #9 2015-07-08 23:18:40 -07:00
cmd_context.cpp disable aig tactic in inc_sat_solver (it can blow up the size of formulas significantly without sharing) and fix configuration update bug for optimization context exposed in example by Corina 2015-11-20 14:34:31 -08:00
cmd_context.h fix build with gcc 2015-11-22 11:24:30 +00:00
cmd_context_to_goal.cpp added support for named assertions 2012-11-02 14:00:43 -07:00
cmd_context_to_goal.h update header guards to be C++ style. Fixes issue #9 2015-07-08 23:18:40 -07:00
cmd_util.cpp checkpoint 2012-10-21 18:32:35 -07:00
cmd_util.h update header guards to be C++ style. Fixes issue #9 2015-07-08 23:18:40 -07:00
context_params.cpp Added checks for uint parameter values in context_params 2015-11-14 17:25:18 +00:00
context_params.h Added checks for uint parameter values in context_params 2015-11-14 17:25:18 +00:00
echo_tactic.cpp Add new probes for arithmetic. Check for LIA and LRA (and activate qe if applicable). Modify echo tactic to send results to the regular stream. 2013-02-20 13:41:08 -08:00
echo_tactic.h update header guards to be C++ style. Fixes issue #9 2015-07-08 23:18:40 -07:00
eval_cmd.cpp saved params work 2012-11-29 17:19:12 -08:00
eval_cmd.h update header guards to be C++ style. Fixes issue #9 2015-07-08 23:18:40 -07:00
interpolant_cmds.cpp fail gracefully on interpolation errors 2015-07-10 14:39:11 -07:00
interpolant_cmds.h update header guards to be C++ style. Fixes issue #9 2015-07-08 23:18:40 -07:00
parametric_cmd.cpp fixed more problems in the new param framework 2012-12-03 15:02:34 -08:00
parametric_cmd.h update header guards to be C++ style. Fixes issue #9 2015-07-08 23:18:40 -07:00
pdecl.cpp fix AV in debug assertion, address warnings 2014-05-16 09:45:32 -07:00
pdecl.h update header guards to be C++ style. Fixes issue #9 2015-07-08 23:18:40 -07:00
README remove hassel table from unstable: does not compile under other plantforms 2013-05-31 17:48:19 -07:00
simplify_cmd.cpp saved params work 2012-11-29 17:19:12 -08:00
simplify_cmd.h update header guards to be C++ style. Fixes issue #9 2015-07-08 23:18:40 -07:00
tactic_cmds.cpp Clarified documentation of par-or tactic. 2015-10-28 18:50:22 +00:00
tactic_cmds.h update header guards to be C++ style. Fixes issue #9 2015-07-08 23:18:40 -07:00
tactic_manager.cpp checkpoint 2012-10-21 18:32:35 -07:00
tactic_manager.h update header guards to be C++ style. Fixes issue #9 2015-07-08 23:18:40 -07:00

Command context provides the infrastructure for executing commands in front-ends such as SMT-LIB 2.0.
It is also provides the solver abstraction to plugin solvers in this kind of front-end.