3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-18 10:30:44 +00:00

fussing more with qe in duality

This commit is contained in:
Ken McMillan 2013-12-13 12:41:51 -08:00
parent a410e7f716
commit 0449598530

View file

@ -143,7 +143,7 @@ namespace Duality {
return 0; return 0;
} }
if(t.is_quantifier()) if(t.is_quantifier())
return CountOperatorsRec(memo,t.body())+1; return CountOperatorsRec(memo,t.body())+2; // count 2 for a quantifier
return 0; return 0;
} }