3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-08 18:31:49 +00:00

pass the correct context into And() when doing Tactic.as_expr()

This commit is contained in:
Yan 2015-11-16 15:41:12 -08:00
parent e8d37dba9c
commit 4e9b76365d

View file

@ -4862,7 +4862,7 @@ class Goal(Z3PPObject):
elif sz == 1:
return self.get(0)
else:
return And([ self.get(i) for i in range(len(self)) ])
return And([ self.get(i) for i in range(len(self)) ], self.ctx)
#########################################
#