⋮ ⋮ ⋱ ⋮ ⋮ </code></pre><h2id="Functions"><aclass="docs-heading-anchor"href="#Functions">Functions</a><aid="Functions-1"></a><aclass="docs-heading-anchor-permalink"href="#Functions"title="Permalink"></a></h2><h3id="Data-structures"><aclass="docs-heading-anchor"href="#Data-structures">Data structures</a><aid="Data-structures-1"></a><aclass="docs-heading-anchor-permalink"href="#Data-structures"title="Permalink"></a></h3><articleclass="docstring"><header><aclass="docstring-binding"id="SBML.Model"href="#SBML.Model"><code>SBML.Model</code></a> — <spanclass="docstring-category">Type</span></header><section><div><p>Structure that collects the model-related data. Contains <code>units</code>, <code>compartments</code>, <code>species</code> and <code>reactions</code>. The contained dictionaries are indexed by identifiers of the corresponding objects.</p></div><aclass="docs-sourcelink"target="_blank"href="https://github.com/LCSB-BioCore/SBML.jl/blob/dea5cce3d343738e29403d508d4c8b3d0beb3030/src/structs.jl#L47-L51">source</a></section></article><articleclass="docstring"><header><aclass="docstring-binding"id="SBML.Reaction"href="#SBML.Reaction"><code>SBML.Reaction</code></a> — <spanclass="docstring-category">Type</span></header><section><div><p>Reaction with stoichiometry that assigns reactants and products their relative consumption/production rates (accessible in field <code>stoichiometry</code>), lower/upper bounds (in tuples <code>lb</code> and <code>ub</code>, with unit names), and objective coefficient (<code>oc</code>).</p></div><aclass="docs-sourcelink"target="_blank"href="https://github.com/LCSB-BioCore/SBML.jl/blob/dea5cce3d343738e29403d508d4c8b3d0beb3030/src/structs.jl#L23-L28">source</a></section></article><articleclass="docstring"><header><aclass="docstring-binding"id="SBML.Species"href="#SBML.Species"><code>SBML.Species</code></a> — <spanclass="docstring-category">Type</span></header><section><div><p>Species metadata – contains a human-readable <code>name</code>, and a <code>compartment</code> identifier</p></div><aclass="docs-sourcelink"target="_blank"href="https://github.com/LCSB-BioCore/SBML.jl/blob/dea5cce3d343738e29403d508d4c8b3d0beb3030/src/structs.jl#L37-L40">source</a></section></article><articleclass="docstring"><header><aclass="docstring-binding"id="SBML.UnitPart"href="#SBML.UnitPart"><code>SBML.UnitPart</code></a> — <spanclass="docstring-category">Type</span></header><section><div><p>Part of a measurement unit definition that corresponds to the SBML definition of <code>Unit</code>. For example, the unit "per square megahour", Mh^(-2), is written as:</p><pre><codeclass="language-none">UnitPart("second", # base SI unit, this says we are measuring time
⋮ ⋮ ⋱ ⋮ ⋮ </code></pre><h2id="Functions"><aclass="docs-heading-anchor"href="#Functions">Functions</a><aid="Functions-1"></a><aclass="docs-heading-anchor-permalink"href="#Functions"title="Permalink"></a></h2><h3id="Data-structures"><aclass="docs-heading-anchor"href="#Data-structures">Data structures</a><aid="Data-structures-1"></a><aclass="docs-heading-anchor-permalink"href="#Data-structures"title="Permalink"></a></h3><articleclass="docstring"><header><aclass="docstring-binding"id="SBML.Model"href="#SBML.Model"><code>SBML.Model</code></a> — <spanclass="docstring-category">Type</span></header><section><div><p>Structure that collects the model-related data. Contains <code>units</code>, <code>compartments</code>, <code>species</code> and <code>reactions</code>. The contained dictionaries are indexed by identifiers of the corresponding objects.</p></div><aclass="docs-sourcelink"target="_blank"href="https://github.com/LCSB-BioCore/SBML.jl/blob/83412adb82355e0444606a6003e9583a5e1d76d2/src/structs.jl#L47-L51">source</a></section></article><articleclass="docstring"><header><aclass="docstring-binding"id="SBML.Reaction"href="#SBML.Reaction"><code>SBML.Reaction</code></a> — <spanclass="docstring-category">Type</span></header><section><div><p>Reaction with stoichiometry that assigns reactants and products their relative consumption/production rates (accessible in field <code>stoichiometry</code>), lower/upper bounds (in tuples <code>lb</code> and <code>ub</code>, with unit names), and objective coefficient (<code>oc</code>).</p></div><aclass="docs-sourcelink"target="_blank"href="https://github.com/LCSB-BioCore/SBML.jl/blob/83412adb82355e0444606a6003e9583a5e1d76d2/src/structs.jl#L23-L28">source</a></section></article><articleclass="docstring"><header><aclass="docstring-binding"id="SBML.Species"href="#SBML.Species"><code>SBML.Species</code></a> — <spanclass="docstring-category">Type</span></header><section><div><p>Species metadata – contains a human-readable <code>name</code>, and a <code>compartment</code> identifier</p></div><aclass="docs-sourcelink"target="_blank"href="https://github.com/LCSB-BioCore/SBML.jl/blob/83412adb82355e0444606a6003e9583a5e1d76d2/src/structs.jl#L37-L40">source</a></section></article><articleclass="docstring"><header><aclass="docstring-binding"id="SBML.UnitPart"href="#SBML.UnitPart"><code>SBML.UnitPart</code></a> — <spanclass="docstring-category">Type</span></header><section><div><p>Part of a measurement unit definition that corresponds to the SBML definition of <code>Unit</code>. For example, the unit "per square megahour", Mh^(-2), is written as:</p><pre><codeclass="language-none">UnitPart("second", # base SI unit, this says we are measuring time
-2, # exponent, says "per square"
6, # log-10 scale of the unit, says "mega"
1/3600) # second-to-hour multiplier</code></pre><p>Compound units (such as "volt-amperes" and "dozens of yards per ounce") are built from multiple <code>UnitPart</code>s; see the definition of field <code>units</code> in <ahref="#SBML.Model"><code>Model</code></a>.</p></div><aclass="docs-sourcelink"target="_blank"href="https://github.com/LCSB-BioCore/SBML.jl/blob/dea5cce3d343738e29403d508d4c8b3d0beb3030/src/structs.jl#L2-L14">source</a></section></article><h3id="Base-functions"><aclass="docs-heading-anchor"href="#Base-functions">Base functions</a><aid="Base-functions-1"></a><aclass="docs-heading-anchor-permalink"href="#Base-functions"title="Permalink"></a></h3><articleclass="docstring"><header><aclass="docstring-binding"id="SBML.SBMLVersion-Tuple{}"href="#SBML.SBMLVersion-Tuple{}"><code>SBML.SBMLVersion</code></a> — <spanclass="docstring-category">Method</span></header><section><div><pre><codeclass="language-julia">function SBMLVersion()</code></pre><p>Get the version of the used SBML library in Julia version format.</p></div><aclass="docs-sourcelink"target="_blank"href="https://github.com/LCSB-BioCore/SBML.jl/blob/dea5cce3d343738e29403d508d4c8b3d0beb3030/src/version.jl#L2-L6">source</a></section></article><articleclass="docstring"><header><aclass="docstring-binding"id="SBML.readSBML-Tuple{String}"href="#SBML.readSBML-Tuple{String}"><code>SBML.readSBML</code></a> — <spanclass="docstring-category">Method</span></header><section><div><pre><codeclass="language-julia">function readSBML(fn::String)::Model</code></pre><p>Read the SBML from a XML file in <code>fn</code> and return the contained <code>Model</code>.</p></div><aclass="docs-sourcelink"target="_blank"href="https://github.com/LCSB-BioCore/SBML.jl/blob/dea5cce3d343738e29403d508d4c8b3d0beb3030/src/readsbml.jl#L4-L8">source</a></section></article><h2id="Data-helpers"><aclass="docs-heading-anchor"href="#Data-helpers">Data helpers</a><aid="Data-helpers-1"></a><aclass="docs-heading-anchor-permalink"href="#Data-helpers"title="Permalink"></a></h2><articleclass="docstring"><header><aclass="docstring-binding"id="SBML.getLBs-Tuple{Model}"href="#SBML.getLBs-Tuple{Model}"><code>SBML.getLBs</code></a> — <spanclass="docstring-category">Method</span></header><section><div><pre><codeclass="language-julia">function getLBs(m::Model)::Vector{Tuple{Float64,String}}</code></pre><p>Extract a vector of lower bounds of reaction rates from the model. All bounds are accompanied with the unit of the corresponding value (this behavior is based on SBML specification).</p></div><aclass="docs-sourcelink"target="_blank"href="https://github.com/LCSB-BioCore/SBML.jl/blob/dea5cce3d343738e29403d508d4c8b3d0beb3030/src/utils.jl#L20-L26">source</a></section></article><articleclass="docstring"><header><aclass="docstring-binding"id="SBML.getOCs-Tuple{Model}"href="#SBML.getOCs-Tuple{Model}"><code>SBML.getOCs</code></a> — <spanclass="docstring-category">Method</span></header><section><div><pre><codeclass="language-julia">function getOCs(m::Model)::Vector{Float64}</code></pre><p>Extract the vector of objective coefficients of each reaction.</p></div><aclass="docs-sourcelink"target="_blank"href="https://github.com/LCSB-BioCore/SBML.jl/blob/dea5cce3d343738e29403d508d4c8b3d0beb3030/src/utils.jl#L40-L44">source</a></section></article><articleclass="docstring"><header><aclass="docstring-binding"id="SBML.getS-Tuple{Model}"href="#SBML.getS-Tuple{Model}"><code>SBML.getS</code></a> — <spanclass="docstring-category">Method</span></header><section><div><pre><codeclass="language-julia">function getS(m::Model)::Tuple{Vector{String},Vector{String},Matrix{Float64}}</code></pre><p>Extract the vector of species (aka metabolite) identifiers, vector of reaction identifiers, and the (dense) stoichiometry matrix from an existing <code>Model</code>. Returns a tuple with these values.</p></div><aclass="docs-sourcelink"target="_blank"href="https://github.com/LCSB-BioCore/SBML.jl/blob/dea5cce3d343738e29403d508d4c8b3d0beb3030/src/utils.jl#L1-L7">source</a></section></article><articleclass="docstring"><header><aclass="docstring-binding"id="SBML.getUBs-Tuple{Model}"href="#SBML.getUBs-Tuple{Model}"><code>SBML.getUBs</code></a> — <spanclass="docstring-category">Method</span></header><section><div><pre><codeclass="language-julia">function getUBs(m::Model)::Vector{Tuple{Float64,String}}</code></pre><p>Likewise to <code>getLBs</code>, extract the upper bounds.</p></div><aclass="docs-sourcelink"target="_blank"href="https://github.com/LCSB-BioCore/SBML.jl/blob/dea5cce3d343738e29403d508d4c8b3d0beb3030/src/utils.jl#L31-L35">source</a></section></article></article><navclass="docs-footer"><pclass="footer-message">Powered by <ahref="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> and the <ahref="https://julialang.org/">Julia Programming Language</a>.</p></nav></div><divclass="modal"id="documenter-settings"><divclass="modal-background"></div><divclass="modal-card"><headerclass="modal-card-head"><pclass="modal-card-title">Settings</p><buttonclass="delete"></button></header><sectionclass="modal-card-body"><p><labelclass="label">Theme</label><divclass="select"><selectid="documenter-themepicker"><optionvalue="documenter-light">documenter-light</option><optionvalue="documenter-dark">documenter-dark</option></select></div></p><hr/><p>This document was generated with <ahref="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> on <spanclass="colophon-date"title="Monday 15 February 2021 07:10">Monday 15 February 2021</span>. Using Julia version 1.5.3.</p></section><footerclass="modal-card-foot"></footer></div></div></div></body></html>
1/3600) # second-to-hour multiplier</code></pre><p>Compound units (such as "volt-amperes" and "dozens of yards per ounce") are built from multiple <code>UnitPart</code>s; see the definition of field <code>units</code> in <ahref="#SBML.Model"><code>Model</code></a>.</p></div><aclass="docs-sourcelink"target="_blank"href="https://github.com/LCSB-BioCore/SBML.jl/blob/83412adb82355e0444606a6003e9583a5e1d76d2/src/structs.jl#L2-L14">source</a></section></article><h3id="Base-functions"><aclass="docs-heading-anchor"href="#Base-functions">Base functions</a><aid="Base-functions-1"></a><aclass="docs-heading-anchor-permalink"href="#Base-functions"title="Permalink"></a></h3><articleclass="docstring"><header><aclass="docstring-binding"id="SBML.SBMLVersion-Tuple{}"href="#SBML.SBMLVersion-Tuple{}"><code>SBML.SBMLVersion</code></a> — <spanclass="docstring-category">Method</span></header><section><div><pre><codeclass="language-julia">function SBMLVersion()</code></pre><p>Get the version of the used SBML library in Julia version format.</p></div><aclass="docs-sourcelink"target="_blank"href="https://github.com/LCSB-BioCore/SBML.jl/blob/83412adb82355e0444606a6003e9583a5e1d76d2/src/version.jl#L2-L6">source</a></section></article><articleclass="docstring"><header><aclass="docstring-binding"id="SBML.readSBML-Tuple{String}"href="#SBML.readSBML-Tuple{String}"><code>SBML.readSBML</code></a> — <spanclass="docstring-category">Method</span></header><section><div><pre><codeclass="language-julia">function readSBML(fn::String)::Model</code></pre><p>Read the SBML from a XML file in <code>fn</code> and return the contained <code>Model</code>.</p></div><aclass="docs-sourcelink"target="_blank"href="https://github.com/LCSB-BioCore/SBML.jl/blob/83412adb82355e0444606a6003e9583a5e1d76d2/src/readsbml.jl#L4-L8">source</a></section></article><h2id="Data-helpers"><aclass="docs-heading-anchor"href="#Data-helpers">Data helpers</a><aid="Data-helpers-1"></a><aclass="docs-heading-anchor-permalink"href="#Data-helpers"title="Permalink"></a></h2><articleclass="docstring"><header><aclass="docstring-binding"id="SBML.getLBs-Tuple{Model}"href="#SBML.getLBs-Tuple{Model}"><code>SBML.getLBs</code></a> — <spanclass="docstring-category">Method</span></header><section><div><pre><codeclass="language-julia">function getLBs(m::Model)::Vector{Tuple{Float64,String}}</code></pre><p>Extract a vector of lower bounds of reaction rates from the model. All bounds are accompanied with the unit of the corresponding value (this behavior is based on SBML specification).</p></div><aclass="docs-sourcelink"target="_blank"href="https://github.com/LCSB-BioCore/SBML.jl/blob/83412adb82355e0444606a6003e9583a5e1d76d2/src/utils.jl#L20-L26">source</a></section></article><articleclass="docstring"><header><aclass="docstring-binding"id="SBML.getOCs-Tuple{Model}"href="#SBML.getOCs-Tuple{Model}"><code>SBML.getOCs</code></a> — <spanclass="docstring-category">Method</span></header><section><div><pre><codeclass="language-julia">function getOCs(m::Model)::Vector{Float64}</code></pre><p>Extract the vector of objective coefficients of each reaction.</p></div><aclass="docs-sourcelink"target="_blank"href="https://github.com/LCSB-BioCore/SBML.jl/blob/83412adb82355e0444606a6003e9583a5e1d76d2/src/utils.jl#L40-L44">source</a></section></article><articleclass="docstring"><header><aclass="docstring-binding"id="SBML.getS-Tuple{Model}"href="#SBML.getS-Tuple{Model}"><code>SBML.getS</code></a> — <spanclass="docstring-category">Method</span></header><section><div><pre><codeclass="language-julia">function getS(m::Model)::Tuple{Vector{String},Vector{String},Matrix{Float64}}</code></pre><p>Extract the vector of species (aka metabolite) identifiers, vector of reaction identifiers, and the (dense) stoichiometry matrix from an existing <code>Model</code>. Returns a tuple with these values.</p></div><aclass="docs-sourcelink"target="_blank"href="https://github.com/LCSB-BioCore/SBML.jl/blob/83412adb82355e0444606a6003e9583a5e1d76d2/src/utils.jl#L1-L7">source</a></section></article><articleclass="docstring"><header><aclass="docstring-binding"id="SBML.getUBs-Tuple{Model}"href="#SBML.getUBs-Tuple{Model}"><code>SBML.getUBs</code></a> — <spanclass="docstring-category">Method</span></header><section><div><pre><codeclass="language-julia">function getUBs(m::Model)::Vector{Tuple{Float64,String}}</code></pre><p>Likewise to <code>getLBs</code>, extract the upper bounds.</p></div><aclass="docs-sourcelink"target="_blank"href="https://github.com/LCSB-BioCore/SBML.jl/blob/83412adb82355e0444606a6003e9583a5e1d76d2/src/utils.jl#L31-L35">source</a></section></article></article><navclass="docs-footer"><pclass="footer-message">Powered by <ahref="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> and the <ahref="https://julialang.org/">Julia Programming Language</a>.</p></nav></div><divclass="modal"id="documenter-settings"><divclass="modal-background"></div><divclass="modal-card"><headerclass="modal-card-head"><pclass="modal-card-title">Settings</p><buttonclass="delete"></button></header><sectionclass="modal-card-body"><p><labelclass="label">Theme</label><divclass="select"><selectid="documenter-themepicker"><optionvalue="documenter-light">documenter-light</option><optionvalue="documenter-dark">documenter-dark</option></select></div></p><hr/><p>This document was generated with <ahref="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> on <spanclass="colophon-date"title="Monday 15 February 2021 07:55">Monday 15 February 2021</span>. Using Julia version 1.5.3.</p></section><footerclass="modal-card-foot"></footer></div></div></div></body></html>
<htmllang="en"><head><metacharset="UTF-8"/><metaname="viewport"content="width=device-width, initial-scale=1.0"/><title>Search · SBML.jl</title><linkrel="canonical"href="https://lcsb-biocore.github.io/DistributedData.jl/stable/search/"/><linkhref="https://fonts.googleapis.com/css?family=Lato|Roboto+Mono"rel="stylesheet"type="text/css"/><linkhref="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.0/css/fontawesome.min.css"rel="stylesheet"type="text/css"/><linkhref="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.0/css/solid.min.css"rel="stylesheet"type="text/css"/><linkhref="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.0/css/brands.min.css"rel="stylesheet"type="text/css"/><linkhref="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.11.1/katex.min.css"rel="stylesheet"type="text/css"/><script>documenterBaseURL=".."</script><script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.6/require.min.js"data-main="../assets/documenter.js"></script><script src="../siteinfo.js"></script><script src="../../versions.js"></script><linkclass="docs-theme-link"rel="stylesheet"type="text/css"href="../assets/themes/documenter-dark.css"data-theme-name="documenter-dark"data-theme-primary-dark/><linkclass="docs-theme-link"rel="stylesheet"type="text/css"href="../assets/themes/documenter-light.css"data-theme-name="documenter-light"data-theme-primary/><script src="../assets/themeswap.js"></script></head><body><divid="documenter"><navclass="docs-sidebar"><aclass="docs-logo"href="../"><imgsrc="../assets/logo.svg"alt="SBML.jl logo"/></a><divclass="docs-package-name"><spanclass="docs-autofit">SBML.jl</span></div><formclass="docs-search"action><inputclass="docs-search-query"id="documenter-search-query"name="q"type="text"placeholder="Search docs"/></form><ulclass="docs-menu"><li><aclass="tocitem"href="../">Documentation</a></li></ul><divclass="docs-version-selector field has-addons"><divclass="control"><spanclass="docs-label button is-static is-size-7">Version</span></div><divclass="docs-selector control is-expanded"><divclass="select is-fullwidth is-size-7"><selectid="documenter-version-selector"></select></div></div></div></nav><divclass="docs-main"><headerclass="docs-navbar"><navclass="breadcrumb"><ulclass="is-hidden-mobile"><liclass="is-active"><ahref>Search</a></li></ul><ulclass="is-hidden-tablet"><liclass="is-active"><ahref>Search</a></li></ul></nav><divclass="docs-right"><aclass="docs-settings-button fas fa-cog"id="documenter-settings-button"href="#"title="Settings"></a><aclass="docs-sidebar-button fa fa-bars is-hidden-desktop"id="documenter-sidebar-button"href="#"></a></div></header><article><pid="documenter-search-info">Loading search...</p><ulid="documenter-search-results"></ul></article><navclass="docs-footer"><pclass="footer-message">Powered by <ahref="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> and the <ahref="https://julialang.org/">Julia Programming Language</a>.</p></nav></div><divclass="modal"id="documenter-settings"><divclass="modal-background"></div><divclass="modal-card"><headerclass="modal-card-head"><pclass="modal-card-title">Settings</p><buttonclass="delete"></button></header><sectionclass="modal-card-body"><p><labelclass="label">Theme</label><divclass="select"><selectid="documenter-themepicker"><optionvalue="documenter-light">documenter-light</option><optionvalue="documenter-dark">documenter-dark</option></select></div></p><hr/><p>This document was generated with <ahref="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> on <spanclass="colophon-date"title="Monday 15 February 2021 07:10">Monday 15 February 2021</span>. Using Julia version 1.5.3.</p></section><footerclass="modal-card-foot"></footer></div></div></div></body><script src="../search_index.js"></script><script src="../assets/search.js"></script></html>
<htmllang="en"><head><metacharset="UTF-8"/><metaname="viewport"content="width=device-width, initial-scale=1.0"/><title>Search · SBML.jl</title><linkrel="canonical"href="https://lcsb-biocore.github.io/DistributedData.jl/stable/search/"/><linkhref="https://fonts.googleapis.com/css?family=Lato|Roboto+Mono"rel="stylesheet"type="text/css"/><linkhref="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.0/css/fontawesome.min.css"rel="stylesheet"type="text/css"/><linkhref="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.0/css/solid.min.css"rel="stylesheet"type="text/css"/><linkhref="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.0/css/brands.min.css"rel="stylesheet"type="text/css"/><linkhref="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.11.1/katex.min.css"rel="stylesheet"type="text/css"/><script>documenterBaseURL=".."</script><script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.6/require.min.js"data-main="../assets/documenter.js"></script><script src="../siteinfo.js"></script><script src="../../versions.js"></script><linkclass="docs-theme-link"rel="stylesheet"type="text/css"href="../assets/themes/documenter-dark.css"data-theme-name="documenter-dark"data-theme-primary-dark/><linkclass="docs-theme-link"rel="stylesheet"type="text/css"href="../assets/themes/documenter-light.css"data-theme-name="documenter-light"data-theme-primary/><script src="../assets/themeswap.js"></script></head><body><divid="documenter"><navclass="docs-sidebar"><aclass="docs-logo"href="../"><imgsrc="../assets/logo.svg"alt="SBML.jl logo"/></a><divclass="docs-package-name"><spanclass="docs-autofit">SBML.jl</span></div><formclass="docs-search"action><inputclass="docs-search-query"id="documenter-search-query"name="q"type="text"placeholder="Search docs"/></form><ulclass="docs-menu"><li><aclass="tocitem"href="../">Documentation</a></li></ul><divclass="docs-version-selector field has-addons"><divclass="control"><spanclass="docs-label button is-static is-size-7">Version</span></div><divclass="docs-selector control is-expanded"><divclass="select is-fullwidth is-size-7"><selectid="documenter-version-selector"></select></div></div></div></nav><divclass="docs-main"><headerclass="docs-navbar"><navclass="breadcrumb"><ulclass="is-hidden-mobile"><liclass="is-active"><ahref>Search</a></li></ul><ulclass="is-hidden-tablet"><liclass="is-active"><ahref>Search</a></li></ul></nav><divclass="docs-right"><aclass="docs-settings-button fas fa-cog"id="documenter-settings-button"href="#"title="Settings"></a><aclass="docs-sidebar-button fa fa-bars is-hidden-desktop"id="documenter-sidebar-button"href="#"></a></div></header><article><pid="documenter-search-info">Loading search...</p><ulid="documenter-search-results"></ul></article><navclass="docs-footer"><pclass="footer-message">Powered by <ahref="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> and the <ahref="https://julialang.org/">Julia Programming Language</a>.</p></nav></div><divclass="modal"id="documenter-settings"><divclass="modal-background"></div><divclass="modal-card"><headerclass="modal-card-head"><pclass="modal-card-title">Settings</p><buttonclass="delete"></button></header><sectionclass="modal-card-body"><p><labelclass="label">Theme</label><divclass="select"><selectid="documenter-themepicker"><optionvalue="documenter-light">documenter-light</option><optionvalue="documenter-dark">documenter-dark</option></select></div></p><hr/><p>This document was generated with <ahref="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> on <spanclass="colophon-date"title="Monday 15 February 2021 07:55">Monday 15 February 2021</span>. Using Julia version 1.5.3.</p></section><footerclass="modal-card-foot"></footer></div></div></div></body><script src="../search_index.js"></script><script src="../assets/search.js"></script></html>