3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-27 00:18:45 +00:00

add detection of non-fixed variables to consequence finding

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2016-07-30 19:12:41 -07:00
parent 7562efbe84
commit cb2d8d2107
10 changed files with 188 additions and 25 deletions

View file

@ -19,10 +19,11 @@ Notes:
#define OPT_CMDS_H_
#include "ast.h"
#include "opt_context.h"
class cmd_context;
void install_opt_cmds(cmd_context & ctx);
void install_opt_cmds(cmd_context & ctx, opt::context* opt = 0);
#endif