mirror of
https://github.com/Z3Prover/z3
synced 2025-04-16 05:48:44 +00:00
Fix z3.py doctests to reflect recent changes in the substitute API
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
4363c9f44f
commit
8ef2fe7ddb
|
@ -6932,10 +6932,10 @@ def substitute(t, *m):
|
|||
>>> x = Int('x')
|
||||
>>> y = Int('y')
|
||||
>>> substitute(x + 1, (x, y + 1))
|
||||
2 + y
|
||||
y + 1 + 1
|
||||
>>> f = Function('f', IntSort(), IntSort())
|
||||
>>> substitute(f(x) + f(y), (f(x), IntVal(1)), (f(y), IntVal(1)))
|
||||
2
|
||||
1 + 1
|
||||
"""
|
||||
if isinstance(m, tuple):
|
||||
m1 = _get_args(m)
|
||||
|
|
Loading…
Reference in a new issue