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.

12 lines
601 B
MiniZinc

predicate fzn_neural_net_reif(array[int] of var float: inputs,
array[int] of int: input_ids,
array[int] of var float: outputs,
array[int] of int: output_ids,
array[int] of float: bias,
array[int] of float: edge_weight,
array[int] of int: edge_parent,
array[int] of int: first_edge,
NEURON_TYPE: neuron_type,
var bool: b) =
abort("Reification of neural_net constraint is not supported");