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.
dekker-phd-thesis/assets/listing/inc_state_access.mzn
2021-07-21 14:27:06 +10:00

7 lines
273 B
MiniZinc

% Report the status of the solver (before restarting).
enum STATUS = {START, UNKNOWN, UNSAT, SAT, OPT} @\label{ann:enum_status}@
function STATUS: status(); @\label{ann:status}@
% Provide access to the last assigned value of variable x.
function int: last_val(var int: x);