3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 17:45:32 +00:00

fixed some address dependencies

This commit is contained in:
Ken McMillan 2013-12-13 18:41:35 -08:00
parent bb61f17989
commit 3764064e98
7 changed files with 33 additions and 3 deletions

View file

@ -213,6 +213,7 @@ public:
test_secondary(cnsts,parents,interps);
return;
#endif
profiling::timer_start("Interpolation prep");
// get rid of frames not used in proof

View file

@ -140,7 +140,8 @@ namespace std {
class less<ast_r> {
public:
bool operator()(const ast_r &s, const ast_r &t) const {
return s.raw() < t.raw(); // s.raw()->get_id() < t.raw()->get_id();
// return s.raw() < t.raw();
return s.raw()->get_id() < t.raw()->get_id();
}
};
}