Skip to content

Commit 1b910c4

Browse files
hash update
Signed-off-by: Nikolaj Bjorner <[email protected]>
1 parent d0fc463 commit 1b910c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/api/python/z3/z3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1627,7 +1627,7 @@ def Implies(a, b, ctx=None):
16271627
>>> Implies(p, q)
16281628
Implies(p, q)
16291629
>>> simplify(Implies(p, q))
1630-
Or(q, Not(p))
1630+
Or(Not(p), q)
16311631
"""
16321632
ctx = _get_ctx(_ctx_from_ast_arg_list([a, b], ctx))
16331633
s = BoolSort(ctx)

0 commit comments

Comments
 (0)