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/mzn/6_state_access.mzn

6 lines
272 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);