mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 01:25:31 +00:00
pydoc regression
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
1e21ea4645
commit
b8734273c8
2 changed files with 4 additions and 3 deletions
|
@ -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(x == y), Not(z == x), Not(z == y))
|
||||
And(Not(x == y), Not(x == z), Not(y == z))
|
||||
"""
|
||||
args = _get_args(args)
|
||||
ctx = _ctx_from_ast_arg_list(args)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue