1

在为 Haskell运行Data.SBV 库中的优化函数示例时:

problem :: Goal
problem = optimize Lexicographic $  do [x1, x2] <- mapM sReal ["x1", "x2"]

         constrain $ x1 + x2 .<= 10
         constrain $ x1 - x2 .>= 3
         constrain $ 5*x1 + 4*x2 .<= 35
         constrain $ x1 .>= 0
         constrain $ x2 .>= 0

         maximize "goal" $ 5 * x1 + 6 * x2
main = optimize Lexicographic problem

我收到以下错误:

*** Exception: 
*** Data.SBV: Unexpected response from the solver.
***    Context : set-option
***    Sent    : (set-option :pp.decimal false)
***    Expected: success
***    Received: unsupported
***              success

CallStack (from HasCallStack):
  error, called at ./Data/SBV/Control/Utils.hs:590:9 in sbv-7.3-35rX062AGHeFmuyHxSBaTE:Data.SBV.Control.Utils

类似下面的代码:

test = optimize Lexicographic $ do
                  x <- sInteger "x"
                  y <- sInteger "y"
                  maximize "goal" $ x + 2 * y

产生错误:

*** Exception: 
*** Data.SBV: Unexpected response from the solver.
***    Context : getModel
***    Sent    : (get-value (s0))
***    Expected: a value binding for kind: SInteger
***    Received: unsupported
***              ((s0 0))

CallStack (from HasCallStack):
  error, called at ./Data/SBV/Control/Utils.hs:590:9 in sbv-7.3-35rX062AGHeFmuyHxSBaTE:Data.SBV.Control.Utils

minimize组合子作为最后一个表达式时也会发生此错误。

我使用 GHC 版本 8.0.2 和堆栈版本 1.5 和 SBV 版本 7.3 我使用 Z3 作为我的求解器,它是在 MacOS 上运行的 4.5.1 64 位版本。

打电话satprove按预期工作。有任何想法吗?谢谢!

4

1 回答 1

2

您很可能使用的是旧版本的 Z3。SBV 中的优化功能依赖于 Z3 的一些尚未正式发布的功能。你能从这里下载一个吗:

https://github.com/Z3Prover/bin/tree/master/nightly

试试看?

(Z3 有一张公开票,可以针对这个问题发布一个新版本,但不清楚他们何时会解决这个问题:https ://github.com/Z3Prover/z3/issues/1231 )

于 2017-09-20T04:09:07.520 回答