mirror of
https://github.com/Z3Prover/z3
synced 2025-05-06 07:15:47 +00:00
reconnect saturation
This commit is contained in:
parent
6abe0c9be8
commit
1020f38e1a
5 changed files with 30 additions and 11 deletions
|
@ -1,4 +1,3 @@
|
|||
#if 0
|
||||
/*++
|
||||
Copyright (c) 2021 Microsoft Corporation
|
||||
|
||||
|
@ -103,8 +102,9 @@ namespace polysat {
|
|||
core.insert(d);
|
||||
if (c.bvalue(s) != l_false) // conflict is due to the evaluation of c, so it depends on the variable values
|
||||
core.insert_vars(c);
|
||||
core.insert(~c);
|
||||
core.log_inference(inf_name);
|
||||
core.insert(~c);
|
||||
core.set_backjump();
|
||||
core.logger().log(inf_name);
|
||||
LOG("Core " << core);
|
||||
return true;
|
||||
}
|
||||
|
@ -487,4 +487,3 @@ namespace polysat {
|
|||
}
|
||||
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue