3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-03-16 18:20:00 +00:00

output background model in duality counterexamples

This commit is contained in:
Ken McMillan 2013-05-29 16:40:47 -07:00
parent ee4b9d46f1
commit dfae0c5109
4 changed files with 34 additions and 4 deletions

View file

@ -248,6 +248,8 @@ namespace Duality {
RPFP::Term RPFP::Localize(Edge *e, const Term &t){
timer_start("Localize");
hash_map<ast,Term> memo;
if(e->F.IndParams.size() > 0 && e->varMap.empty())
SetEdgeMaps(e); // TODO: why is this needed?
Term res = LocalizeRec(e,memo,t);
timer_stop("Localize");
return res;