@return Triple representing the upper bound for the objective handle. See Handle#getUpperAsVector.
(int index)
| 315 | * <p>See {@link Handle#getUpperAsVector}. |
| 316 | */ |
| 317 | private Expr<?>[] GetUpperAsVector(int index) { |
| 318 | return unpackObjectiveValueVector( |
| 319 | Native.optimizeGetUpperAsVector( |
| 320 | getContext().nCtx(), getNativeObject(), index |
| 321 | ) |
| 322 | ); |
| 323 | } |
| 324 | |
| 325 | /** |
| 326 | * @return Triple representing the upper bound for the objective handle. |
no test coverage detected