mirror of
https://github.com/Z3Prover/z3
synced 2025-04-16 13:58:45 +00:00
list[ExprRef] doesn't build for python
This commit is contained in:
parent
2b6055040b
commit
0b7a81b7c9
|
@ -1533,7 +1533,7 @@ def RealVar(idx: int, ctx=None) -> ExprRef:
|
|||
"""
|
||||
return Var(idx, RealSort(ctx))
|
||||
|
||||
def RealVarVector(n: int, ctx= None) -> list[ExprRef]:
|
||||
def RealVarVector(n: int, ctx= None):
|
||||
"""
|
||||
Create a list of Real free variables.
|
||||
The variables have ids: 0, 1, ..., n-1
|
||||
|
|
Loading…
Reference in a new issue