Stratum Retention Policies ========================== The following compares procedures for stratum pruning in hereditary stratigraphy. Read `here <./mechanism.html>`__ for a general introduction to the stratum deposition process. Note that here we use “algorithm” to connote general classes of stratum retention strategies and “policy” to connote a specific strategy within an algorithmic class. Put another way, a policy is a parametrized algorithm. Visualizing Policy Behavior --------------------------- ========== ================ =========== No History Retained History All History ========== ================ =========== |image0| |image1| |image2| ========== ================ =========== Because stratum retention policies unfold across space and time (i.e., the location of pruned strata and the generations at which they are pruned), the retention drip plot visualizations we use to depict them require a bit of explanation to get up to speed with. This section builds up the visualizations step-by-step in the table above. (Note that the animations loop at 256 generations; if you are impatient you can refresh the page to restart the animations.) The leftmost column animates the evolution of a single hereditary stratigraphic column over generations with no historical overlay. The column itself is shown “tipped over,” appearing as a horizontal blue rectangle. Upside-down triangles are stratum within the column. The position of strata in the ``x`` dimension correspond to the generation of their deposition; new strata are appended on the right. Retention status is depicted with color. Black strata are retained and red strata have been pruned. The center column uses the ``y`` dimension to introduce historical traces for retained strata. The line below each retained stratum spans from the generation it was deposited to the current generation. Note that the column itself is positioned at the current generation at the top of the diagram. Finally, the rightmost column further layers on historical traces of pruned strata. Instead of having their trace deleted when pruned, their trace is turned red and frozen in place. So, red traces span from the generation a pruned stratum was deposited to the generation it was pruned. Animated panels below situate this visualization alongside additional graphs depicting absolute and relative estimation error across possible MRCA generations as well as relative and absolute column size (i.e., number of strata retained). Two policy instantiations are visualized for each algorithm — one yielded from a sparse parameterization and the other from a dense parameterization (i.e., one configured to retain fewer strata and one configured to retain more). Choosing a Retention Algorithm ------------------------------ The space-vs-resolution and distribution-of-resolution trade-offs of library-provided stratum retention algorithms are summarized below. +--------------------------------------------------+------------------+------------------------------+ | Stratum Retention Algorithm | Space Complexity | MRCA Gen Uncertainty | +==================================================+==================+==============================+ | Fixed Resolution Algorithm | ``n/k`` | ``k`` | +--------------------------------------------------+------------------+------------------------------+ | Recency-proportional Resolution Algorithm | ``k * log(n)`` | ``m/k`` | +--------------------------------------------------+------------------+------------------------------+ | Depth-proportional Resolution Algorithm | ``k`` | ``n/k`` | +--------------------------------------------------+------------------+------------------------------+ | Geometric Sequence Nth Root Algorithm | ``k`` | ``m * n^(1/k)`` | +--------------------------------------------------+------------------+------------------------------+ | Curbed Recency-proportional Resolution Algorithm | ``k`` | ``m / k`` -> ``m * n^(1/k)`` | +--------------------------------------------------+------------------+------------------------------+ where ``n`` is generations elapsed, ``m`` is generations since MRCA, and ``k`` is an arbitrary user-determined constant. Note that distribution-of-resolution trade-offs are described via the definition of uncertainty bounds in terms of generations since MRCA ``m`` versus overall generations elapsed ``n``. The *hstrat* library includes a suite of variants for several of these stratum retention algorithms. These variants differ in terms of secondary considerations, for example whether column size exactly traces the asymptotic guarantee or fluctuates around it. Computational intensity to calculate the set of strata to be dropped at each generation may also differ between variants. The next sections tour available stratum retention algorithms in detail. Parameterizing a Retention Policy --------------------------------- Stratum retention algorithms can be automatically parameterized for desired properties. For example, you may want to produce a policy from a particular algorithm that retains at most 100 strata at generation 1 million. Two components are required to perform a parameterization. The first, an “evaluator” controls which policy property is being parameterized for. Available options are - ``MrcaUncertaintyAbsExactEvaluator`` - ``MrcaUncertaintyAbsUpperBoundEvaluator`` - ``MrcaUncertaintyRelExactEvaluator`` - ``MrcaUncertaintyRelUpperBoundEvaluator`` - ``NumStrataRetainedExactEvaluator`` - ``NumStrataRetainedUpperBoundEvaluator`` The second, a “parameterizer” controls whether the policy property should be paramaterized to be greater than, equal, or less than equal a target value. Available options are - ``PropertyAtMostParameterizer`` - ``PropertyAtLeastParameterizer`` - ``PropertyExactlyParameterizer`` The evaluator should be provided as an argument to parameterizer, which should in turn be provided as an argument to the algorithm’s ``Policy`` initializer. .. code:: python3 stratum_retention_policy = hstrat.geom_seq_nth_root_tapered_algo.Policy( parameterizer=hstrat.PropertyAtMostParameterizer( target_value=127, policy_evaluator \ =hstrat.MrcaUncertaintyAbsExactEvaluator( at_num_strata_deposited=256, at_rank=0, ), ), ) Depth Proportional Resolution Algorithm --------------------------------------- The depth proportional resolution algorithm drops half of retained strata when a threshold size cap is met in order to maintain ``O(1)`` space complexity. Retained strata are evenly spaced. ======================= ====================== Sparse Parameterization Dense Parameterization ======================= ====================== |image3| |image4| |image5| |image6| ======================= ====================== Dense Parameterization Detail ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +----------------------+---------------------------------------+---------------------------------------+ | Num Strata Retained | Absolute MRCA Uncertainty by Position | Relative MRCA Uncertainty by Position | +======================+=======================================+=======================================+ | |image7| | |image8| | |image9| | +----------------------+---------------------------------------+---------------------------------------+ Tapered Depth Proportional Resolution Algorithm ----------------------------------------------- The tapered depth proportional resolution algorithm drops strata gradually from the rear once the threshold size cap is met (instead of purging half of strata all at once). ======================= ====================== Sparse Parameterization Dense Parameterization ======================= ====================== |image10| |image11| |image12| |image13| ======================= ====================== .. _dense-parameterization-detail-1: Dense Parameterization Detail ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +----------------------+---------------------------------------+---------------------------------------+ | Num Strata Retained | Absolute MRCA Uncertainty by Position | Relative MRCA Uncertainty by Position | +======================+=======================================+=======================================+ | |image14| | |image15| | |image16| | +----------------------+---------------------------------------+---------------------------------------+ Fixed Resolution Algorithm -------------------------- The fixed resolution algorithm permanently retains every ``n``\ th stratum, giving it linear ``O(n)`` space complexity and uniform distribution of retained strata. ======================= ====================== Sparse Parameterization Dense Parameterization ======================= ====================== |image17| |image18| |image19| |image20| ======================= ====================== .. _dense-parameterization-detail-2: Dense Parameterization Detail ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +----------------------+---------------------------------------+---------------------------------------+ | Num Strata Retained | Absolute MRCA Uncertainty by Position | Relative MRCA Uncertainty by Position | +======================+=======================================+=======================================+ | |image21| | |image22| | |image23| | +----------------------+---------------------------------------+---------------------------------------+ Geometric Sequence Nth Root Algorithm ------------------------------------- The geometric sequence algorithm provides constant ``O(1)`` space complexity with recency-proportional distribution of retained strata. To accomplish this, a fixed number ``k`` of fixed-cardinality subcomponents track ``k`` waypoints exponentially spaced backward from the most-recent stratum (i.e., spaced corresponding to the roots ``0/k``, ``1/k``, ``2/k``, …, ``k/k``). ======================= ====================== Sparse Parameterization Dense Parameterization ======================= ====================== |image24| |image25| |image26| |image27| ======================= ====================== .. _dense-parameterization-detail-3: Dense Parameterization Detail ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +----------------------+---------------------------------------+---------------------------------------+ | Num Strata Retained | Absolute MRCA Uncertainty by Position | Relative MRCA Uncertainty by Position | +======================+=======================================+=======================================+ | |image28| | |image29| | |image30| | +----------------------+---------------------------------------+---------------------------------------+ Tapered Geometric Sequence Nth Root Algorithm --------------------------------------------- The tapered geometric sequence nth root algorithm maintains exactly-constant size at its vanilla counterpart’s upper bound instead of fluctuating below that bound. It is more computationally expensive than the vanilla geometric sequence nth root algorithm. ======================= ====================== Sparse Parameterization Dense Parameterization ======================= ====================== |image31| |image32| |image33| |image34| ======================= ====================== .. _dense-parameterization-detail-4: Dense Parameterization Detail ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +----------------------+---------------------------------------+---------------------------------------+ | Num Strata Retained | Absolute MRCA Uncertainty by Position | Relative MRCA Uncertainty by Position | +======================+=======================================+=======================================+ | |image35| | |image36| | |image37| | +----------------------+---------------------------------------+---------------------------------------+ Recency Proportional Resolution Algorithm ----------------------------------------- The recency proportional resolution algorithm maintains relative MRCA estimation error below a constant bound. It exhibits logarithmic ``O(log(n))`` space complexity. ======================= ====================== Sparse Parameterization Dense Parameterization ======================= ====================== |image38| |image39| |image40| |image41| ======================= ====================== .. _dense-parameterization-detail-5: Dense Parameterization Detail ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +----------------------+---------------------------------------+---------------------------------------+ | Num Strata Retained | Absolute MRCA Uncertainty by Position | Relative MRCA Uncertainty by Position | +======================+=======================================+=======================================+ | |image42| | |image43| | |image44| | +----------------------+---------------------------------------+---------------------------------------+ Curbed Recency Proportional Resolution Algorithm ------------------------------------------------ The curbed recency-proportional resolution algorithm eagerly utilize fixed stratum storage capacity to minimize recency-proportional MRCA uncertainty. This strategy provides the finest-possible recency-proportional granularity within parameterized space constraint. Resolution degrades gracefully as deposition history grows. This algorithm is similar to the geometric sequence nth root algorithm in guaranteeing constant space complexity with recency-proportional MRCA uncertainty. However, this curbed recency-proportional algorithm makes fuller (i.e., more aggressive) use of available space during early depositions. In this way, it is similar to the tapered geometric sequence nth root algorithm during early depositions. The tapered nth root algorithm makes fullest use of fixed available space. In fact, it perfectly fills available space. However, the curbed recency-proportional algorithm’s space use is more effective at early time points — it better minimizes recency-proportional MRCA uncertainty than the curbed algorithm. ======================= ====================== Sparse Parameterization Dense Parameterization ======================= ====================== |image45| |image46| |image47| |image48| ======================= ====================== .. _dense-parameterization-detail-6: Dense Parameterization Detail ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +----------------------+---------------------------------------+---------------------------------------+ | Num Strata Retained | Absolute MRCA Uncertainty by Position | Relative MRCA Uncertainty by Position | +======================+=======================================+=======================================+ | |image49| | |image50| | |image51| | +----------------------+---------------------------------------+---------------------------------------+ This policy works by splicing together successively-sparser ``recency_proportional_resolution_algo`` paramaterizations then a permanently fixed parameterization of the ``geometric_seq_nth root`` algorithm. Sparsification occurs when upper bound space use increases to exceed the fixed-size available capacity. For a very sparse paramaterization with a size cap of eight strata, shown below, the transition to ``geometric_seq_nth_root_ago`` can be seen at generation 129. ============================ ========= Very Sparse Parameterization ============================ ========= |image52| |image53| ============================ ========= *Note: minor changes have been made to the transition points of the curbed-recency proportional resolution algorithm, but these older graphics best convey the underlying concept behind the algorithm.* Very Sparse Parameterization Detail ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +----------------------+---------------------------------------+---------------------------------------+ | Num Strata Retained | Absolute MRCA Uncertainty by Position | Relative MRCA Uncertainty by Position | +======================+=======================================+=======================================+ | |image54| | |image55| | |image56| | +----------------------+---------------------------------------+---------------------------------------+ Other Algorithms ---------------- These stratum retention algorithms are less likely of interest to end users, included in the library primarily for testing and design validation, but are available nonetheless. See API listing for all available algorithms `here <./_autosummary/hstrat.stratum_retention_strategy.stratum_retention_algorithms.html>`__. - nominal resolution policy - perfect resolution policy - pseudostochastic policy - stochastic policy Custom Algorithm Design ----------------------- Custom stratum retention algorithms can easily be substituted for supplied algorithms without performing any modifications to library code. To start, you’ll most likely want to copy an existing algorithm from ``hstrat/stratum_retention_strategy/stratum_retention_algorithms`` to use as an API scaffold. If writing a custom stratum retention algorithm, you will need to consider 1. Prune sequencing. When you discard a stratum now, it won’t be available later. If you need a stratum at a particular time point, you must be able to guarantee it hasn’t already been discarded at any prior time point. 2. Column composition across intermediate generations. For many use cases, resolution and column size guarantees will need to hold at all generations because the number of generations elapsed at the end of an experiment is not known *a priori* or the option of continuing the experiment with evolved genomes is desired. 3. Tractability of computing the deposit generations of retained strata at an arbitrary generation. If this set of generations can be computed efficiently, then an efficient reverse mapping from column array index to deposition generation can be attained. Such a mapping enables deposition generation to be omitted from strata, potentially yielding a 50%+ space savings (depending on the differentia bit width used). .. |image0| image:: docs/assets/a=stratum_retention_dripplot+extant_history=False+extinct_history=False+extinct_placeholders=True+num_generations=256+policy=tapered-depth-proportional-resolution-stratum-retention-algorithm-resolution-4+ext=.gif :target: docs/assets/a=stratum_retention_dripplot+extant_history=False+extinct_history=False+extinct_placeholders=True+num_generations=256+policy=tapered-depth-proportional-resolution-stratum-retention-algorithm-resolution-4+ext=.gif .. |image1| image:: docs/assets/a=stratum_retention_dripplot+extant_history=True+extinct_history=False+extinct_placeholders=True+num_generations=256+policy=tapered-depth-proportional-resolution-stratum-retention-algorithm-resolution-4+ext=.gif :target: docs/assets/a=stratum_retention_dripplot+extant_history=True+extinct_history=False+extinct_placeholders=True+num_generations=256+policy=tapered-depth-proportional-resolution-stratum-retention-algorithm-resolution-4+ext=.gif .. |image2| image:: docs/assets/a=stratum_retention_dripplot+extant_history=True+extinct_history=True+extinct_placeholders=False+num_generations=256+policy=tapered-depth-proportional-resolution-stratum-retention-algorithm-resolution-4+ext=.gif :target: docs/assets/a=stratum_retention_dripplot+extant_history=True+extinct_history=True+extinct_placeholders=False+num_generations=256+policy=tapered-depth-proportional-resolution-stratum-retention-algorithm-resolution-4+ext=.gif .. |image3| image:: docs/assets/a=policy_panel_plot+num_generations=256+policy=depth-proportional-resolution-stratum-retention-algorithm-resolution-2+ext=.gif :target: docs/assets/a=policy_panel_plot+num_generations=256+policy=depth-proportional-resolution-stratum-retention-algorithm-resolution-2+ext=.gif .. |image4| image:: docs/assets/a=policy_panel_plot+num_generations=256+policy=depth-proportional-resolution-stratum-retention-algorithm-resolution-8+ext=.gif :target: docs/assets/a=policy_panel_plot+num_generations=256+policy=depth-proportional-resolution-stratum-retention-algorithm-resolution-8+ext=.gif .. |image5| image:: docs/assets/num_generations=256+policy=depth-proportional-resolution-stratum-retention-algorithm-resolution-2+viz=stratum-retention-dripplot+ext=.png :target: docs/assets/num_generations=256+policy=depth-proportional-resolution-stratum-retention-algorithm-resolution-2+viz=stratum-retention-dripplot+ext=.png .. |image6| image:: docs/assets/num_generations=256+policy=depth-proportional-resolution-stratum-retention-algorithm-resolution-8+viz=stratum-retention-dripplot+ext=.png :target: docs/assets/num_generations=256+policy=depth-proportional-resolution-stratum-retention-algorithm-resolution-8+viz=stratum-retention-dripplot+ext=.png .. |image7| image:: docs/assets/num_generations=256+policy=depth-proportional-resolution-stratum-retention-algorithm-resolution-8+viz=strata-retained-num-lineplot+ext=.png :target: docs/assets/num_generations=256+policy=depth-proportional-resolution-stratum-retention-algorithm-resolution-8+viz=strata-retained-num-lineplot+ext=.png .. |image8| image:: docs/assets/num_generations=256+policy=depth-proportional-resolution-stratum-retention-algorithm-resolution-8+viz=mrca-uncertainty-absolute-barplot+ext=.png :target: docs/assets/num_generations=256+policy=depth-proportional-resolution-stratum-retention-algorithm-resolution-8+viz=mrca-uncertainty-absolute-barplot+ext=.png .. |image9| image:: docs/assets/num_generations=256+policy=depth-proportional-resolution-stratum-retention-algorithm-resolution-8+viz=mrca-uncertainty-relative-barplot+ext=.png :target: docs/assets/num_generations=256+policy=depth-proportional-resolution-stratum-retention-algorithm-resolution-8+viz=mrca-uncertainty-relative-barplot+ext=.png .. |image10| image:: docs/assets/a=policy_panel_plot+num_generations=256+policy=tapered-depth-proportional-resolution-stratum-retention-algorithm-resolution-1+ext=.gif :target: docs/assets/a=policy_panel_plot+num_generations=256+policy=tapered-depth-proportional-resolution-stratum-retention-algorithm-resolution-1+ext=.gif .. |image11| image:: docs/assets/a=policy_panel_plot+num_generations=256+policy=tapered-depth-proportional-resolution-stratum-retention-algorithm-resolution-7+ext=.gif :target: docs/assets/a=policy_panel_plot+num_generations=256+policy=tapered-depth-proportional-resolution-stratum-retention-algorithm-resolution-7+ext=.gif .. |image12| image:: docs/assets/num_generations=256+policy=tapered-depth-proportional-resolution-stratum-retention-algorithm-resolution-1+viz=stratum-retention-dripplot+ext=.png :target: docs/assets/num_generations=256+policy=tapered-depth-proportional-resolution-stratum-retention-algorithm-resolution-1+viz=stratum-retention-dripplot+ext=.png .. |image13| image:: docs/assets/num_generations=256+policy=tapered-depth-proportional-resolution-stratum-retention-algorithm-resolution-7+viz=stratum-retention-dripplot+ext=.png :target: docs/assets/num_generations=256+policy=tapered-depth-proportional-resolution-stratum-retention-algorithm-resolution-7+viz=stratum-retention-dripplot+ext=.png .. |image14| image:: docs/assets/num_generations=256+policy=tapered-depth-proportional-resolution-stratum-retention-algorithm-resolution-7+viz=strata-retained-num-lineplot+ext=.png :target: docs/assets/num_generations=256+policy=tapered-depth-proportional-resolution-stratum-retention-algorithm-resolution-7+viz=strata-retained-num-lineplot+ext=.png .. |image15| image:: docs/assets/num_generations=256+policy=tapered-depth-proportional-resolution-stratum-retention-algorithm-resolution-7+viz=mrca-uncertainty-absolute-barplot+ext=.png :target: docs/assets/num_generations=256+policy=tapered-depth-proportional-resolution-stratum-retention-algorithm-resolution-7+viz=mrca-uncertainty-absolute-barplot+ext=.png .. |image16| image:: docs/assets/num_generations=256+policy=tapered-depth-proportional-resolution-stratum-retention-algorithm-resolution-7+viz=mrca-uncertainty-relative-barplot+ext=.png :target: docs/assets/num_generations=256+policy=tapered-depth-proportional-resolution-stratum-retention-algorithm-resolution-7+viz=mrca-uncertainty-relative-barplot+ext=.png .. |image17| image:: docs/assets/a=policy_panel_plot+num_generations=256+policy=fixed-resolution-stratum-retention-algorithm-resolution-128+ext=.gif :target: docs/assets/a=policy_panel_plot+num_generations=256+policy=fixed-resolution-stratum-retention-algorithm-resolution-128+ext=.gif .. |image18| image:: docs/assets/a=policy_panel_plot+num_generations=256+policy=fixed-resolution-stratum-retention-algorithm-resolution-32+ext=.gif :target: docs/assets/a=policy_panel_plot+num_generations=256+policy=fixed-resolution-stratum-retention-algorithm-resolution-32+ext=.gif .. |image19| image:: docs/assets/num_generations=256+policy=fixed-resolution-stratum-retention-algorithm-resolution-128+viz=stratum-retention-dripplot+ext=.png :target: docs/assets/num_generations=256+policy=fixed-resolution-stratum-retention-algorithm-resolution-128+viz=stratum-retention-dripplot+ext=.png .. |image20| image:: docs/assets/num_generations=256+policy=fixed-resolution-stratum-retention-algorithm-resolution-32+viz=stratum-retention-dripplot+ext=.png :target: docs/assets/num_generations=256+policy=fixed-resolution-stratum-retention-algorithm-resolution-32+viz=stratum-retention-dripplot+ext=.png .. |image21| image:: docs/assets/num_generations=256+policy=fixed-resolution-stratum-retention-algorithm-resolution-32+viz=strata-retained-num-lineplot+ext=.png :target: docs/assets/num_generations=256+policy=fixed-resolution-stratum-retention-algorithm-resolution-32+viz=strata-retained-num-lineplot+ext=.png .. |image22| image:: docs/assets/num_generations=256+policy=fixed-resolution-stratum-retention-algorithm-resolution-32+viz=mrca-uncertainty-absolute-barplot+ext=.png :target: docs/assets/num_generations=256+policy=fixed-resolution-stratum-retention-algorithm-resolution-32+viz=mrca-uncertainty-absolute-barplot+ext=.png .. |image23| image:: docs/assets/num_generations=256+policy=fixed-resolution-stratum-retention-algorithm-resolution-32+viz=mrca-uncertainty-relative-barplot+ext=.png :target: docs/assets/num_generations=256+policy=fixed-resolution-stratum-retention-algorithm-resolution-32+viz=mrca-uncertainty-relative-barplot+ext=.png .. |image24| image:: docs/assets/a=policy_panel_plot+num_generations=256+policy=nth-root-geometric-sequence-stratum-retention-algorithm-degree-6-interspersal-2+ext=.gif :target: docs/assets/a=policy_panel_plot+num_generations=256+policy=nth-root-geometric-sequence-stratum-retention-algorithm-degree-6-interspersal-2+ext=.gif .. |image25| image:: docs/assets/a=policy_panel_plot+num_generations=256+policy=nth-root-geometric-sequence-stratum-retention-algorithm-degree-1024-interspersal-2+ext=.gif :target: docs/assets/a=policy_panel_plot+num_generations=256+policy=nth-root-geometric-sequence-stratum-retention-algorithm-degree-1024-interspersal-2+ext=.gif .. |image26| image:: docs/assets/num_generations=256+policy=nth-root-geometric-sequence-stratum-retention-algorithm-degree-6-interspersal-2+viz=stratum-retention-dripplot+ext=.png :target: docs/assets/num_generations=256+policy=nth-root-geometric-sequence-stratum-retention-algorithm-degree-6-interspersal-2+viz=stratum-retention-dripplot+ext=.png .. |image27| image:: docs/assets/num_generations=256+policy=nth-root-geometric-sequence-stratum-retention-algorithm-degree-1024-interspersal-2+viz=stratum-retention-dripplot+ext=.png :target: docs/assets/num_generations=256+policy=nth-root-geometric-sequence-stratum-retention-algorithm-degree-1024-interspersal-2+viz=stratum-retention-dripplot+ext=.png .. |image28| image:: docs/assets/num_generations=256+policy=nth-root-geometric-sequence-stratum-retention-algorithm-degree-1024-interspersal-2+viz=strata-retained-num-lineplot+ext=.png :target: docs/assets/num_generations=256+policy=nth-root-geometric-sequence-stratum-retention-algorithm-degree-1024-interspersal-2+viz=strata-retained-num-lineplot+ext=.png .. |image29| image:: docs/assets/num_generations=256+policy=nth-root-geometric-sequence-stratum-retention-algorithm-degree-1024-interspersal-2+viz=mrca-uncertainty-absolute-barplot+ext=.png :target: docs/assets/num_generations=256+policy=nth-root-geometric-sequence-stratum-retention-algorithm-degree-1024-interspersal-2+viz=mrca-uncertainty-absolute-barplot+ext=.png .. |image30| image:: docs/assets/num_generations=256+policy=nth-root-geometric-sequence-stratum-retention-algorithm-degree-1024-interspersal-2+viz=mrca-uncertainty-relative-barplot+ext=.png :target: docs/assets/num_generations=256+policy=nth-root-geometric-sequence-stratum-retention-algorithm-degree-1024-interspersal-2+viz=mrca-uncertainty-relative-barplot+ext=.png .. |image31| image:: docs/assets/a=policy_panel_plot+num_generations=256+policy=tapered-nth-root-geometric-sequence-stratum-retention-algorithm-degree-1-interspersal-2+ext=.gif :target: docs/assets/a=policy_panel_plot+num_generations=256+policy=tapered-nth-root-geometric-sequence-stratum-retention-algorithm-degree-1-interspersal-2+ext=.gif .. |image32| image:: docs/assets/a=policy_panel_plot+num_generations=256+policy=tapered-nth-root-geometric-sequence-stratum-retention-algorithm-degree-4-interspersal-2+ext=.gif :target: docs/assets/a=policy_panel_plot+num_generations=256+policy=tapered-nth-root-geometric-sequence-stratum-retention-algorithm-degree-4-interspersal-2+ext=.gif .. |image33| image:: docs/assets/num_generations=256+policy=tapered-nth-root-geometric-sequence-stratum-retention-algorithm-degree-1-interspersal-2+viz=stratum-retention-dripplot+ext=.png :target: docs/assets/num_generations=256+policy=tapered-nth-root-geometric-sequence-stratum-retention-algorithm-degree-1-interspersal-2+viz=stratum-retention-dripplot+ext=.png .. |image34| image:: docs/assets/num_generations=256+policy=tapered-nth-root-geometric-sequence-stratum-retention-algorithm-degree-4-interspersal-2+viz=stratum-retention-dripplot+ext=.png :target: docs/assets/num_generations=256+policy=tapered-nth-root-geometric-sequence-stratum-retention-algorithm-degree-4-interspersal-2+viz=stratum-retention-dripplot+ext=.png .. |image35| image:: docs/assets/num_generations=256+policy=tapered-nth-root-geometric-sequence-stratum-retention-algorithm-degree-4-interspersal-2+viz=strata-retained-num-lineplot+ext=.png :target: docs/assets/num_generations=256+policy=tapered-nth-root-geometric-sequence-stratum-retention-algorithm-degree-4-interspersal-2+viz=strata-retained-num-lineplot+ext=.png .. |image36| image:: docs/assets/num_generations=256+policy=tapered-nth-root-geometric-sequence-stratum-retention-algorithm-degree-4-interspersal-2+viz=mrca-uncertainty-absolute-barplot+ext=.png :target: docs/assets/num_generations=256+policy=tapered-nth-root-geometric-sequence-stratum-retention-algorithm-degree-4-interspersal-2+viz=mrca-uncertainty-absolute-barplot+ext=.png .. |image37| image:: docs/assets/num_generations=256+policy=tapered-nth-root-geometric-sequence-stratum-retention-algorithm-degree-4-interspersal-2+viz=mrca-uncertainty-relative-barplot+ext=.png :target: docs/assets/num_generations=256+policy=tapered-nth-root-geometric-sequence-stratum-retention-algorithm-degree-4-interspersal-2+viz=mrca-uncertainty-relative-barplot+ext=.png .. |image38| image:: docs/assets/a=policy_panel_plot+num_generations=256+policy=recency-proportional-resolution-stratum-retention-algorithm-resolution-0+ext=.gif :target: docs/assets/a=policy_panel_plot+num_generations=256+policy=recency-proportional-resolution-stratum-retention-algorithm-resolution-0+ext=.gif .. |image39| image:: docs/assets/a=policy_panel_plot+num_generations=256+policy=recency-proportional-resolution-stratum-retention-algorithm-resolution-6+ext=.gif :target: docs/assets/a=policy_panel_plot+num_generations=256+policy=recency-proportional-resolution-stratum-retention-algorithm-resolution-6+ext=.gif .. |image40| image:: docs/assets/num_generations=256+policy=recency-proportional-resolution-stratum-retention-algorithm-resolution-0+viz=stratum-retention-dripplot+ext=.png :target: docs/assets/num_generations=256+policy=recency-proportional-resolution-stratum-retention-algorithm-resolution-0+viz=stratum-retention-dripplot+ext=.png .. |image41| image:: docs/assets/num_generations=256+policy=recency-proportional-resolution-stratum-retention-algorithm-resolution-6+viz=stratum-retention-dripplot+ext=.png :target: docs/assets/num_generations=256+policy=recency-proportional-resolution-stratum-retention-algorithm-resolution-6+viz=stratum-retention-dripplot+ext=.png .. |image42| image:: docs/assets/num_generations=256+policy=recency-proportional-resolution-stratum-retention-algorithm-resolution-6+viz=strata-retained-num-lineplot+ext=.png :target: docs/assets/num_generations=256+policy=recency-proportional-resolution-stratum-retention-algorithm-resolution-6+viz=strata-retained-num-lineplot+ext=.png .. |image43| image:: docs/assets/num_generations=256+policy=recency-proportional-resolution-stratum-retention-algorithm-resolution-6+viz=mrca-uncertainty-absolute-barplot+ext=.png :target: docs/assets/num_generations=256+policy=recency-proportional-resolution-stratum-retention-algorithm-resolution-6+viz=mrca-uncertainty-absolute-barplot+ext=.png .. |image44| image:: docs/assets/num_generations=256+policy=recency-proportional-resolution-stratum-retention-algorithm-resolution-6+viz=mrca-uncertainty-relative-barplot+ext=.png :target: docs/assets/num_generations=256+policy=recency-proportional-resolution-stratum-retention-algorithm-resolution-6+viz=mrca-uncertainty-relative-barplot+ext=.png .. |image45| image:: docs/assets/a=policy_panel_plot+num_generations=256+policy=curbed-recency-proportional-resolution-stratum-retention-algorithm-size-curb-19+ext=.gif :target: docs/assets/a=policy_panel_plot+num_generations=256+policy=curbed-recency-proportional-resolution-stratum-retention-algorithm-size-curb-19+ext=.gif .. |image46| image:: docs/assets/a=policy_panel_plot+num_generations=256+policy=curbed-recency-proportional-resolution-stratum-retention-algorithm-size-curb-79+ext=.gif :target: docs/assets/a=policy_panel_plot+num_generations=256+policy=curbed-recency-proportional-resolution-stratum-retention-algorithm-size-curb-79+ext=.gif .. |image47| image:: docs/assets/num_generations=256+policy=curbed-recency-proportional-resolution-stratum-retention-algorithm-size-curb-19+viz=stratum-retention-dripplot+ext=.png :target: docs/assets/num_generations=256+policy=curbed-recency-proportional-resolution-stratum-retention-algorithm-size-curb-19+viz=stratum-retention-dripplot+ext=.png .. |image48| image:: docs/assets/num_generations=256+policy=curbed-recency-proportional-resolution-stratum-retention-algorithm-size-curb-79+viz=stratum-retention-dripplot+ext=.png :target: docs/assets/num_generations=256+policy=curbed-recency-proportional-resolution-stratum-retention-algorithm-size-curb-79+viz=stratum-retention-dripplot+ext=.png .. |image49| image:: docs/assets/num_generations=256+policy=curbed-recency-proportional-resolution-stratum-retention-algorithm-size-curb-79+viz=strata-retained-num-lineplot+ext=.png :target: docs/assets/num_generations=256+policy=curbed-recency-proportional-resolution-stratum-retention-algorithm-size-curb-79+viz=strata-retained-num-lineplot+ext=.png .. |image50| image:: docs/assets/num_generations=256+policy=curbed-recency-proportional-resolution-stratum-retention-algorithm-size-curb-79+viz=mrca-uncertainty-absolute-barplot+ext=.png :target: docs/assets/num_generations=256+policy=curbed-recency-proportional-resolution-stratum-retention-algorithm-size-curb-79+viz=mrca-uncertainty-absolute-barplot+ext=.png .. |image51| image:: docs/assets/num_generations=256+policy=curbed-recency-proportional-resolution-stratum-retention-algorithm-size-curb-79+viz=mrca-uncertainty-relative-barplot+ext=.png :target: docs/assets/num_generations=256+policy=curbed-recency-proportional-resolution-stratum-retention-algorithm-size-curb-79+viz=mrca-uncertainty-relative-barplot+ext=.png .. |image52| image:: docs/assets/a=policy_panel_plot+num_generations=256+policy=curbed-recency-proportional-resolution-stratum-retention-algorithm-size-curb-8+ext=.gif :target: docs/assets/a=policy_panel_plot+num_generations=256+policy=curbed-recency-proportional-resolution-stratum-retention-algorithm-size-curb-8+ext=.gif .. |image53| image:: docs/assets/num_generations=256+policy=curbed-recency-proportional-resolution-stratum-retention-algorithm-size-curb-8+viz=stratum-retention-dripplot+ext=.png :target: docs/assets/num_generations=256+policy=curbed-recency-proportional-resolution-stratum-retention-algorithm-size-curb-8+viz=stratum-retention-dripplot+ext=.png .. |image54| image:: docs/assets/num_generations=256+policy=curbed-recency-proportional-resolution-stratum-retention-algorithm-size-curb-8+viz=strata-retained-num-lineplot+ext=.png :target: docs/assets/num_generations=256+policy=curbed-recency-proportional-resolution-stratum-retention-algorithm-size-curb-8+viz=strata-retained-num-lineplot+ext=.png .. |image55| image:: docs/assets/num_generations=256+policy=curbed-recency-proportional-resolution-stratum-retention-algorithm-size-curb-8+viz=mrca-uncertainty-absolute-barplot+ext=.png :target: docs/assets/num_generations=256+policy=curbed-recency-proportional-resolution-stratum-retention-algorithm-size-curb-8+viz=mrca-uncertainty-absolute-barplot+ext=.png .. |image56| image:: docs/assets/num_generations=256+policy=curbed-recency-proportional-resolution-stratum-retention-algorithm-size-curb-8+viz=mrca-uncertainty-relative-barplot+ext=.png :target: docs/assets/num_generations=256+policy=curbed-recency-proportional-resolution-stratum-retention-algorithm-size-curb-8+viz=mrca-uncertainty-relative-barplot+ext=.png