Last active
August 7, 2019 10:18
-
-
Save mikesol/fe78772d543ea70d23053aa87c554bd7 to your computer and use it in GitHub Desktop.
Prove that the sum of a list of negative numbers is negative
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from z3 import * | |
def test_negative_list_sum(): | |
ll = Datatype('ll') | |
ll.declare('empty') | |
ll.declare('cons', ('car', IntSort()), ('cdr', ll)) | |
ll = ll.create() | |
list_sum = Function('list_sum', ll, IntSort(), BoolSort()) | |
a,e = Consts('a e', ll) | |
b,c,d = Ints('b c d') | |
fp = Fixedpoint() | |
fp.declare_var(a,b,c,d,e) | |
fp.register_relation(list_sum) | |
fp.rule(list_sum(a, 0), a == ll.empty) | |
fp.rule(list_sum(a, d), [a != ll.empty, b < 0, ll.cons(b, e) == a, list_sum(e, c), b + c == d]) | |
assert fp.query(And(list_sum(a, b), a != ll.empty, b < 0)) == sat | |
assert fp.query(And(list_sum(a, b), a != ll.empty, b >= 0)) == unsat |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment