mirror of
https://github.com/Z3Prover/z3
synced 2025-06-06 06:03:23 +00:00
python regression
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
b4290d4b3d
commit
5dfc40bf50
1 changed files with 1 additions and 1 deletions
|
@ -1271,7 +1271,7 @@ def Distinct(*args):
|
||||||
>>> simplify(Distinct(x, y, z))
|
>>> simplify(Distinct(x, y, z))
|
||||||
Distinct(x, y, z)
|
Distinct(x, y, z)
|
||||||
>>> simplify(Distinct(x, y, z), blast_distinct=True)
|
>>> simplify(Distinct(x, y, z), blast_distinct=True)
|
||||||
And(Not(y == x), Not(z == x), Not(z == y))
|
And(Not(x == y), Not(z == x), Not(z == y))
|
||||||
"""
|
"""
|
||||||
args = _get_args(args)
|
args = _get_args(args)
|
||||||
ctx = _ctx_from_ast_arg_list(args)
|
ctx = _ctx_from_ast_arg_list(args)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue