3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-08 18:31:49 +00:00
z3/src/cmd_context
Nuno Lopes 737c2208fa delete more default constructors
reduces code size by 0.1%
2024-09-23 12:59:04 +01:00
..
extra_cmds QEL: Fast Approximated Quantifier Elimination (#6820) 2023-08-02 09:34:06 -07:00
basic_cmds.cpp Add support for initializing variable values in solver and optimize contexts in Z3 2024-09-20 18:28:26 +03:00
basic_cmds.h booyah 2020-07-04 15:56:30 -07:00
CMakeLists.txt Add simplification customization for SMTLIB2 2023-01-30 22:38:51 -08:00
cmd_context.cpp Add support for initializing variable values in solver and optimize contexts in Z3 2024-09-20 18:28:26 +03:00
cmd_context.h delete more default constructors 2024-09-23 12:59:04 +01:00
cmd_context_to_goal.cpp fix #5300 2021-05-28 14:16:43 -07:00
cmd_context_to_goal.h booyah 2020-07-04 15:56:30 -07:00
cmd_util.cpp make include paths uniformly use path relative to src. #534 2017-07-31 13:24:11 -07:00
cmd_util.h booyah 2020-07-04 15:56:30 -07:00
echo_tactic.cpp mux 2019-06-05 09:06:17 +01:00
echo_tactic.h add missing tactic descriptions, add rewrite for tamagochi 2023-01-08 13:32:26 -08:00
eval_cmd.cpp sort muxes 2022-04-15 12:55:26 +02:00
eval_cmd.h booyah 2020-07-04 15:56:30 -07:00
parametric_cmd.cpp fix a couple hundred deref-after-free bugs due to .c_str() on a temporary string 2020-07-11 20:24:45 +01:00
parametric_cmd.h fix #6023 2022-05-08 12:03:13 -07:00
pdecl.cpp fix #6850 2023-08-13 15:06:39 -07:00
pdecl.h fix #6792, add scaffolding for type variables 2023-07-07 17:22:56 -07:00
README remove hassel table from unstable: does not compile under other plantforms 2013-05-31 17:48:19 -07:00
simplifier_cmds.cpp add unconstrained elimination for sequences 2023-03-20 17:07:04 +01:00
simplifier_cmds.h Add simplification customization for SMTLIB2 2023-01-30 22:38:51 -08:00
simplify_cmd.cpp Remove empty leaf destructors. (#6211) 2022-07-30 10:07:03 +01:00
simplify_cmd.h booyah 2020-07-04 15:56:30 -07:00
tactic_cmds.cpp don't apply tactics in parse mode 2023-02-02 20:50:53 -08:00
tactic_cmds.h fix #6564 2023-01-31 09:32:34 -08:00
tactic_manager.cpp Add simplification customization for SMTLIB2 2023-01-30 22:38:51 -08:00
tactic_manager.h add API for creating and attaching simplifiers 2023-01-31 17:06:03 -08: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.