pymor.algorithms.simplify¶
Module Contents¶
- class pymor.algorithms.simplify.ContractRules[source]¶
- class pymor.algorithms.simplify.ExpandRules[source]¶
- pymor.algorithms.simplify.contract(obj)[source]¶
Contract linear combinations and concatenations of
Operators.To any given
OperatororModel, the following transformations are applied recursively:Concatenationsof non-parametric linearOperatorsare contracted into a singleOperatorwhen possible. Products of sparse matrices are not computed, however.Non-parametric
linear combinationsof non-parametric operators are merged.
Parameters
Returns
The transformed object.
- pymor.algorithms.simplify.expand(obj)[source]¶
Expand concatenations of LincombOperators.
To any given
OperatororModel, the following transformations are applied recursively:ConcatenationsofLincombOperatorsare expanded. E.g.(O1 + O2) @ (O3 + O4)
becomes:
O1 @ O3 + O1 @ O4 + O2 @ O3 + O2 @ O4
LincombOperatorsinsideLincombOperatorsare merged into a singleLincombOperatorConcatenationOperatorsinsideConcatenationOperatorsare merged into a singleConcatenationOperator.
Parameters
Returns
The transformed object.