3
0
Fork 0
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:
Ken McMillan 2013-06-07 11:51:22 -07:00
parent c57509d795
commit adb1f95e0a
3 changed files with 7 additions and 5 deletions

View file

@ -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")]

View file

@ -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

View file

@ -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();
}
}