Structs§
- VarPartitioned
Expr - The result of partitioning an expression.
Functions§
- var_
partitions - Partition an expression by the variable identifiers.
- var_
partitions_ with_ map - Partition an expression using the partition function
fe.g. var(x) + var(y) + var(z), where f(x) = {x} and f(y | z) = {y} the partitioned expr will be root: var(x) + var(y).0 + var(y).1, { x: var(x), y: pack(0: var(y), 1: var(z) }