mirror of
https://github.com/Z3Prover/z3
synced 2025-04-22 16:45:31 +00:00
small fixes in duality
This commit is contained in:
parent
c57509d795
commit
adb1f95e0a
3 changed files with 7 additions and 5 deletions
|
@ -34,6 +34,6 @@ using System.Security.Permissions;
|
|||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("4.2.0.0")]
|
||||
[assembly: AssemblyVersion("4.3.2.0")]
|
||||
[assembly: AssemblyFileVersion("4.3.2.0")]
|
||||
[assembly: AssemblyVersion("4.3.2.0")]
|
||||
[assembly: AssemblyFileVersion("4.3.2.0")]
|
||||
|
||||
|
|
|
@ -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