You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
192 B

  1. #!/usr/bin/python3
  2. from z3 import *
  3. # Prices: 215, 275, 335, 355, 420, 580
  4. # Sum: 1505
  5. s = Solver()
  6. a,b,c,d,e,f = Ints("a b c d e f")
  7. if s.check() == sat:
  8. m = s.model()
  9. print(m)