3
0
Fork 0
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:
Nikolaj Bjorner 2019-06-21 22:29:08 +02:00
parent b4290d4b3d
commit 5dfc40bf50

View file

@ -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)