3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-03 01:40:22 +00:00

disable unstable interpolation sample

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2014-09-22 22:22:26 -07:00
parent dca3ce6b24
commit 4995ce1fde

View file

@ -7342,8 +7342,8 @@ def binary_interpolant(a,b,p=None,ctx=None):
If parameters p are supplied, these are used in creating the If parameters p are supplied, these are used in creating the
solver that determines satisfiability. solver that determines satisfiability.
>>> x = Int('x') x = Int('x')
>>> print binary_interpolant(x<0,x>2) print binary_interpolant(x<0,x>2)
Not(x >= 0) Not(x >= 0)
""" """
f = And(Interp(a),b) f = And(Interp(a),b)