mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 18:31:49 +00:00
python regression
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
b4290d4b3d
commit
5dfc40bf50
|
@ -1271,7 +1271,7 @@ def Distinct(*args):
|
|||
>>> simplify(Distinct(x, y, z))
|
||||
Distinct(x, y, z)
|
||||
>>> 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)
|
||||
ctx = _ctx_from_ast_arg_list(args)
|
||||
|
|
Loading…
Reference in a new issue