mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 09:05:31 +00:00
moving to resource managed cancellation
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
32b6b2da44
commit
981f8226fe
15 changed files with 24 additions and 41 deletions
|
@ -44,7 +44,6 @@ namespace datalog {
|
|||
var_subst m_var_subst;
|
||||
expr_ref_vector m_ground;
|
||||
app_ref_vector m_goals;
|
||||
volatile bool m_cancel;
|
||||
stats m_stats;
|
||||
public:
|
||||
imp(context& ctx):
|
||||
|
@ -54,8 +53,7 @@ namespace datalog {
|
|||
m_solver(m, m_fparams), // TBD: can be replaced by efficient BV solver.
|
||||
m_var_subst(m, false),
|
||||
m_ground(m),
|
||||
m_goals(m),
|
||||
m_cancel(false)
|
||||
m_goals(m)
|
||||
{
|
||||
// m_fparams.m_relevancy_lvl = 0;
|
||||
m_fparams.m_mbqi = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue