「knapsack.smt2」というファイルに、ナップザックの問題に対する次のサンプル コードがあります。これは smt2 形式であると思われ、最新バージョンの Z3 を使用しています。
(declare-const s1 Int)
(declare-const o1 Int)
(declare-const b1 Bool)
(declare-const s2 Int)
(declare-const o2 Int)
(declare-const b2 Bool)
(declare-const s3 Int)
(declare-const o3 Int)
(declare-const b3 Bool)
(declare-const sack-size Int)
(declare-const filled Int)
(assert (< o1 sack-size))
(assert (< o2 sack-size))
(assert (< o3 sack-size))
(assert (>= o1 0))
(assert (>= o2 0))
(assert (>= o3 0))
(assert (=> (not b1)(= o1 o2)))
(assert (=> (not b2)(= o2 o3)))
(assert (=> b1 (= (+ o1 s1) o2)))
(assert (=> b2 (= (+ o2 s2) o3)))
(assert (=> b3 (= (+ o3 s3) filled)))
(assert (=> (not b3) (= o3 filled)))
(assert (<= filled sack-size))
(assert ( = o1 0))
(assert ( = s1 3))
(assert ( = s2 4))
(assert ( = s3 5))
(assert ( = sack-size 20))
(assert ( = filled 13))
(check-sat)
(get-model)
ただし、「z3 -m knapsack.smt2」を実行すると、次のエラー メッセージが表示されます。
>> z3 -m knapsack.smt2
unsat
(error "line 46 column 10: model is not available")
ここで、46 行目は最後の行「(get-model)」です。
これが機能しない理由を誰か教えてもらえますか?
ありがとう。