3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-16 05:48:44 +00:00

fix default argument identification

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2013-09-23 21:44:24 +03:00
parent 2e7f5303eb
commit c1384095f3

View file

@ -6449,7 +6449,7 @@ class Tactic:
def _to_goal(a):
if isinstance(a, BoolRef):
goal = Goal(a.ctx)
goal = Goal(ctx = a.ctx)
goal.add(a)
return goal
else: