Sets the solver parameters. @throws Z3Exception
(Params value)
| 42 | * @throws Z3Exception |
| 43 | **/ |
| 44 | public void setParameters(Params value) |
| 45 | { |
| 46 | getContext().checkContextMatch(value); |
| 47 | Native.solverSetParams(getContext().nCtx(), getNativeObject(), |
| 48 | value.getNativeObject()); |
| 49 | } |
| 50 | |
| 51 | /** |
| 52 | * Retrieves parameter descriptions for solver. |
no test coverage detected