| compose_systems.dist_structure | R Documentation |
Produce a new dist_structure by replacing each component of outer
with a sub-system (either a dist_structure or a plain dist). The
composed system's components are the flattened inner components; its
min_paths enumerate the Cartesian products of inner min_paths within
each outer min_path.
## S3 method for class 'dist_structure'
compose_systems(outer, inner_list)
compose_systems(outer, inner_list)
outer |
A dist_structure object. |
inner_list |
A list of length |
Computational note: the composed minimal-path enumeration takes the
Cartesian product of inner-path choices over each outer path. For an
outer system with p paths each of length q, where each inner has
r paths, the candidate count grows as O(p * r^q) before
deduplication. Bridge-of-bridges and similar deeply nested
compositions can produce hundreds of candidates; if you find the call
slow, build the composed coherent_dist directly with a hand-curated
min_paths list.
A coherent_dist representing the composed system.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.