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.

12 lines
342 B

(set-info :smt-lib-version 2.6)
(set-logic QF_LIA)
(set-info :source | SMT-COMP'06 Organizers |)
(set-info :category "check")
(set-info :status unsat)
(set-info :notes |This benchmark is designed to check if the integer DP is complete.|)
(declare-fun x1 () Int)
(declare-fun x2 () Int)
(assert (= (+ (* 3 x1) (* 3 x2)) 1))
(check-sat)
(exit)