git-subtree-dir: software/mza git-subtree-split: f970a59b177c13ca3dd8aaef8cc6681d83b7e813
12 lines
601 B
MiniZinc
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");
|