Declare an arithmetical maximization objective. Return a handle to the objective. The handle is used as to retrieve the values of objectives after calling Check.
(Expr<R> e)
| 280 | * to retrieve the values of objectives after calling Check. |
| 281 | **/ |
| 282 | public <R extends Sort> Handle<R> MkMaximize(Expr<R> e) |
| 283 | { |
| 284 | return new Handle<>(this, Native.optimizeMaximize(getContext().nCtx(), getNativeObject(), e.getNativeObject())); |
| 285 | } |
| 286 | |
| 287 | /** |
| 288 | * Declare an arithmetical minimization objective. |
no test coverage detected