3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 09:34:08 +00:00

hash update

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-09-24 18:21:05 -07:00
parent d0fc463a0c
commit 1b910c4ed2

View file

@ -1627,7 +1627,7 @@ def Implies(a, b, ctx=None):
>>> Implies(p, q)
Implies(p, q)
>>> simplify(Implies(p, q))
Or(q, Not(p))
Or(Not(p), q)
"""
ctx = _get_ctx(_ctx_from_ast_arg_list([a, b], ctx))
s = BoolSort(ctx)