This repository was archived by the owner on Oct 19, 2023. It is now read-only.

Description
Examples
if x [
{a: 0, b: 0} -> 1,
{a: 0, b: 1} -> 2,
{a: 1} -> 3,
]
#> linear
execute if data storage mcx: {scrutinee: {a: 0, b: 0}} run 1
execute if data storage mcx: {scrutinee: {a: 0, b: 1}} run 2
execute if data storage mcx: {scrutinee: {a: 1}} run 3
#> decision tree
execute if data storage mcx: {scrutinee: {a: 0}} run
execute if data storage mcx: {scrutinee: {b: 0}} run 1
execute if data storage mcx: {scrutinee: {b: 1}} run 2
execute if data storage mcx: {scrutinee: {a: 1}} run 3
#> backtracking automaton
# todo