mirror of
https://github.com/Z3Prover/z3
synced 2025-08-03 09:50:23 +00:00
merge
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
22b5daf85e
commit
080be7a2af
13 changed files with 59 additions and 66 deletions
|
@ -26,11 +26,12 @@ Revision History:
|
|||
--*/
|
||||
#pragma once
|
||||
|
||||
#include "ast/ast.h"
|
||||
#include "util/params.h"
|
||||
#include "model/model.h"
|
||||
#include "util/lbool.h"
|
||||
#include "util/statistics.h"
|
||||
#include "ast/ast.h"
|
||||
#include "model/model.h"
|
||||
#include "solver/solver.h"
|
||||
#include "smt/smt_failure.h"
|
||||
|
||||
struct smt_params;
|
||||
|
@ -289,7 +290,7 @@ namespace smt {
|
|||
*/
|
||||
void user_propagate_init(
|
||||
void* ctx,
|
||||
std::function<void(void*, unsigned, expr*)>& fixed_eh,
|
||||
std::function<void(void*, solver::propagate_callback*, unsigned, expr*)>& fixed_eh,
|
||||
std::function<void(void*)>& push_eh,
|
||||
std::function<void(void*, unsigned)>& pop_eh,
|
||||
std::function<void*(void*)>& fresh_eh);
|
||||
|
@ -298,13 +299,6 @@ namespace smt {
|
|||
\brief register an expression to be tracked fro user propagation.
|
||||
*/
|
||||
unsigned user_propagate_register(expr* e);
|
||||
|
||||
|
||||
/**
|
||||
\brief accept a user-propagation callback (issued during fixed_he).
|
||||
*/
|
||||
|
||||
void user_propagate_consequence(unsigned sz, unsigned const* ids, expr* conseq);
|
||||
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue