mirror of
https://github.com/Z3Prover/z3
synced 2025-06-06 14:13:23 +00:00
list[ExprRef] doesn't build for python
This commit is contained in:
parent
2b6055040b
commit
0b7a81b7c9
1 changed files with 1 additions and 1 deletions
|
@ -1533,7 +1533,7 @@ def RealVar(idx: int, ctx=None) -> ExprRef:
|
||||||
"""
|
"""
|
||||||
return Var(idx, RealSort(ctx))
|
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.
|
Create a list of Real free variables.
|
||||||
The variables have ids: 0, 1, ..., n-1
|
The variables have ids: 0, 1, ..., n-1
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue