mirror of
https://github.com/Z3Prover/z3
synced 2025-04-25 10:05:32 +00:00
Add intblast solver
This commit is contained in:
parent
0520558fc0
commit
9293923b8a
28 changed files with 1621 additions and 58 deletions
|
@ -1807,7 +1807,9 @@ namespace dd {
|
|||
pdd& pdd::operator=(pdd const& other) {
|
||||
if (m != other.m) {
|
||||
verbose_stream() << "pdd manager confusion: " << *this << " (mod 2^" << power_of_2() << ") := " << other << " (mod 2^" << other.power_of_2() << ")\n";
|
||||
UNREACHABLE();
|
||||
// TODO: in the end, this operator should probably be changed to also update the manager. But for now I want to detect such confusions.
|
||||
reset(*other.m);
|
||||
}
|
||||
SASSERT_EQ(power_of_2(), other.power_of_2());
|
||||
VERIFY_EQ(power_of_2(), other.power_of_2());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue