mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 03:45:51 +00:00
small fixes in duality
This commit is contained in:
parent
c57509d795
commit
adb1f95e0a
3 changed files with 7 additions and 5 deletions
|
@ -787,7 +787,7 @@ namespace Duality {
|
|||
Edge *e = unwinding->CreateLowerBoundEdge(node);
|
||||
// node->Annotation = save;
|
||||
insts_of_node[node->map].push_back(node);
|
||||
std::cout << "made leaf: " << node->number << std::endl;
|
||||
// std::cout << "made leaf: " << node->number << std::endl;
|
||||
return e;
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -560,9 +560,11 @@ expr context::make_quant(decl_kind op, const std::vector<sort> &_sorts, const st
|
|||
{
|
||||
static stopwatch sw;
|
||||
static bool started = false;
|
||||
if(!started)
|
||||
if(!started){
|
||||
sw.start();
|
||||
return sw.get_seconds();
|
||||
started = true;
|
||||
}
|
||||
return sw.get_current_seconds();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue