1
0
This repository has been archived on 2025-03-06. You can view files and clone it, but cannot push or open issues or pull requests.

14 lines
395 B
MiniZinc

/** @group globals Constrains \a m to be the minimum of the values in \a x.
Assumptions: |\a x| > 0.
*/
predicate minimum(var float: m, array[int] of var float: x) =
array_float_minimum(m, x);
/** @group globals Constrains \a m to be the minimum of the values in \a x.
Assumptions: |\a x| > 0.
*/
predicate minimum(var int: m, array[int] of var int: x) =
array_int_minimum(m, x);