mirror of
https://github.com/Z3Prover/z3
synced 2025-08-31 15:24:55 +00:00
Switched derivation to new model API
This commit is contained in:
parent
5e65b37f25
commit
f226c6682b
2 changed files with 16 additions and 16 deletions
|
@ -740,7 +740,7 @@ class derivation {
|
|||
app_ref_vector m_evars;
|
||||
/// -- create next child using given model as the guide
|
||||
/// -- returns NULL if there is no next child
|
||||
pob* create_next_child (model_evaluator_util &mev);
|
||||
pob* create_next_child (model &mdl);
|
||||
/// existentially quantify vars and skolemize the result
|
||||
void exist_skolemize(expr *fml, app_ref_vector &vars, expr_ref &res);
|
||||
public:
|
||||
|
@ -752,7 +752,7 @@ public:
|
|||
/// creates the first child. Must be called after all the premises
|
||||
/// are added. The model must be valid for the premises
|
||||
/// Returns NULL if no child exits
|
||||
pob *create_first_child (model_evaluator_util &mev);
|
||||
pob *create_first_child (model &mdl);
|
||||
|
||||
/// Create the next child. Must summary of the currently active
|
||||
/// premise must be consistent with the transition relation
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue