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:
parent
e8d37dba9c
commit
4e9b76365d
|
@ -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)
|
||||
|
||||
#########################################
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue