3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-09 19:01:50 +00:00
z3/src/cmd_context
Dan Liew a3e0eae9ec Move CMakeLists.txt files (other than the one in the repository root)
and the cmake directory into a new directory ``contrib/cmake`` that
mirrors the directory structure of the root. This is a comprimise
between me and Christoph Wintersteiger that was suggested by Arie
Gurfinkel that allows the CMake build system to live in the Z3
repository but not impact the Z3 developers that want to avoid the CMake
build system. The build system will not work in its new location
and a bootstrap script will soon be provided that allows a developer
to copy the files back to their correct location.
2016-03-04 15:26:09 +00:00
..
extra_cmds Move CMakeLists.txt files (other than the one in the repository root) 2016-03-04 15:26:09 +00:00
basic_cmds.cpp enable logic parameter update to configure SMTLIB logic 2016-03-01 09:48:24 -08: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 seq 2015-12-10 20:25:12 -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 recursive function definitions; combine model-building functionality 2016-03-03 07:59:03 -08:00
cmd_context.h fix test build, working on rec-functions and automata complementation 2016-03-01 22:31:44 -08: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 moving to resource managed cancellation 2015-12-11 17:46:22 -08: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 moving to resource managed cancellation 2015-12-11 17:46:22 -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 enable logic parameter update to configure SMTLIB logic 2016-03-01 09:48:24 -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 Fixing soft timeout for check-sat-using. 2016-01-08 16:17:34 +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.