Merge pull request #9 from tboudreaux/feature/neutrionoLoss

Neutrino Output from GridFire Solvers
This commit is contained in:
2025-11-27 15:10:26 -05:00
committed by GitHub
1560 changed files with 91028 additions and 48101 deletions

106
README.md
View File

@@ -15,53 +15,6 @@
--- ---
# Table of Contents
- [Introduction](#introduction)
- [Design Philosophy and Workflow](#design-philosophy-and-workflow)
- [Funding](#funding)
- [Usage](#usage)
- [Python installation](#python-installation)
- [pypi](#pypi)
- [source](#source)
- [source for developers](#source-for-developers)
- [patching shared object files](#patching-shared-object-files)
- [Automatic Build and Installation](#automatic-build-and-installation)
- [Script Build and Installation Instructions](#script-build-and-installation-instructions)
- [Currently, known good platforms](#currently-known-good-platforms)
- [Manual Build Instructions](#manual-build-instructions)
- [Prerequisites](#prerequisites)
- [Install Scripts](#install-scripts)
- [Dependency Installation on Common Platforms](#dependency-installation-on-common-platforms)
- [Building the C++ Library](#building-the-c-library)
- [Installing the Library](#installing-the-library)
- [Minimum compiler versions](#minimum-compiler-versions)
- [Code Architecture and Logical Flow](#code-architecture-and-logical-flow)
- [Engines](#engines)
- [GraphEngine](#graphengine)
- [GraphEngine Configuration Options](#graphengine-configuration-options)
- [Available Partition Functions](#available-partition-functions)
- [AutoDiff](#autodiff)
- [Reaclib in GridFire](#reaclib-in-gridfire)
- [Engine Views](#engine-views)
- [A Note about composability](#a-note-about-composability)
- [Numerical Solver Strategies](#numerical-solver-strategies)
- [NetworkSolverStrategy<EngineT>](#networksolverstrategyenginet)
- [NetIn and NetOut](#netin-and-netout)
- [DirectNetworkSolver (Implicit Rosenbrock Method)](#directnetworksolver-implicit-rosenbrock-method)
- [Algorithmic Workflow in DirectNetworkSolver](#algorithmic-workflow-in-directnetworksolver)
- [Future Solver Implementations](#future-solver-implementations)
- [Python Extensibility](#python-extensibility)
- [Usage Examples](#usage-examples)
- [C++](#c)
- [GraphEngine Initialization](#graphengine-initialization)
- [Adaptive Network View](#adaptive-network-view)
- [Composition Initialization](#composition-initialization)
- [Common Workflow Example](#common-workflow-example)
- [Callback Example](#callback-example)
- [Python](#python)
- [Common Workflow Example](#common-workflow-example-1)
- [Python callbacks](#python-callbacks)
- [Related Projects](#related-projects)
# Introduction # Introduction
GridFire is a C++ library designed to perform general nuclear network GridFire is a C++ library designed to perform general nuclear network
@@ -119,7 +72,7 @@ These wheels have been compiled on many systems
| Version | Platform | Architecture | CPython Versions | PyPy Versions | | Version | Platform | Architecture | CPython Versions | PyPy Versions |
|-----------|----------|--------------|------------------------------------------------------------|---------------| |-----------|----------|--------------|------------------------------------------------------------|---------------|
| 0.7.0_rc1 | macOS | arm64 | 3.8, 3.9, 3.10, 3.11, 3.12, 3.13 (std & t), 3.14 (std & t) | 3.10, 3.11 | | 0.7.0_rc1 | macOS | arm64 | 3.8, 3.9, 3.10, 3.11, 3.12, 3.13 (std & t), 3.14 (std & t) | 3.10, 3.11 |
| 0.7.0_rc1 | Linux | aarch64 | 3.8, 3.9, 3.10, 3.11, 3.12, 3.13 (std & t), 3.14 (std & t) | 3.10, 3.11 | | 0.7.0_rc1 | Linux | aarch64 | 3.8, 3.9, 3.10, 3.11, 3.12, 3.13 (std & t), 3.14 (std & t) | 3.10, 3.11 |
| 0.7.0_rc1 | Linux | x86\_64 | 3.8, 3.9, 3.10, 3.11, 3.12, 3.13 (std & t), 3.14 (std & t) | 3.10, 3.11 | | 0.7.0_rc1 | Linux | x86\_64 | 3.8, 3.9, 3.10, 3.11, 3.12, 3.13 (std & t), 3.14 (std & t) | 3.10, 3.11 |
| 0.5.0 | macOS | arm64 | 3.8, 3.9, 3.10, 3.11, 3.12, 3.13 (std & t), 3.14 (std & t) | 3.10, 3.11 | | 0.5.0 | macOS | arm64 | 3.8, 3.9, 3.10, 3.11, 3.12, 3.13 (std & t), 3.14 (std & t) | 3.10, 3.11 |
@@ -387,8 +340,8 @@ include:
- **io Module:** Defines shared interface for parsing network data from files - **io Module:** Defines shared interface for parsing network data from files
- **trigger Module:** Defines interface for complex trigger logic so that repartitioning can be followed. - **trigger Module:** Defines interface for complex trigger logic so that repartitioning can be followed.
- **Policy Module:** Contains "policies" which are small modular units of code that enforce certain contracts. - **Policy Module:** Contains "policies" which are small modular units of code that enforce certain contracts.
For example the `ProtonProtonReactionChainPolicy` enforces than an engine must include at least all the reactions For example the `ProtonProtonReactionChainPolicy` enforces than an engine must include at least all the reactions
in the proton-proton chain. This module exposes the primary construction interface for users. I.e. select a policy (such as `MainSequencePolicy`), provide a composition, and get back an engine which satisfies that policy. in the proton-proton chain. This module exposes the primary construction interface for users. I.e. select a policy (such as `MainSequencePolicy`), provide a composition, and get back an engine which satisfies that policy.
- **Python Interface:** Exposes *almost* all C++ functionality to Python, - **Python Interface:** Exposes *almost* all C++ functionality to Python,
allowing users to define compositions, configure engines, and run simulations allowing users to define compositions, configure engines, and run simulations
directly from Python scripts. directly from Python scripts.
@@ -434,25 +387,25 @@ GraphEngine exposes runtime configuration methods to tailor network
construction and rate evaluations: construction and rate evaluations:
- **Constructor Parameters:** - **Constructor Parameters:**
- `composition`: The initial seed composition to start network construction from. - `composition`: The initial seed composition to start network construction from.
- `BuildDepthType` (`Full`, `Shallow`, `SecondOrder`, etc...): controls - `BuildDepthType` (`Full`, `Shallow`, `SecondOrder`, etc...): controls
number of recursions used to construct the network topology. Can either be a number of recursions used to construct the network topology. Can either be a
member of the `NetworkBuildDepth` enum or an integer. member of the `NetworkBuildDepth` enum or an integer.
- `partition::PartitionFunction`: Partition function used when evaluating - `partition::PartitionFunction`: Partition function used when evaluating
detailed balance for inverse rates. detailed balance for inverse rates.
- `NetworkConstructionFlags`: A bitwise flag telling the network how to construct itself. That is, what reaction types should be used in construction. For example one might use `NetworkConstructionFlags::STRONG | NetworkConstructionFlags::BETA_PLUS` to use all strong reactions and β+ decay. By Default this is set to use reaclib strong and reaclib weak (no WRL included by default due to current pathological stiffness issues). - `NetworkConstructionFlags`: A bitwise flag telling the network how to construct itself. That is, what reaction types should be used in construction. For example one might use `NetworkConstructionFlags::STRONG | NetworkConstructionFlags::BETA_PLUS` to use all strong reactions and β+ decay. By Default this is set to use reaclib strong and reaclib weak (no WRL included by default due to current pathological stiffness issues).
- **setPrecomputation(bool precompute):** - **setPrecomputation(bool precompute):**
- Enable/disable caching of reaction rates and stoichiometric data at initialization. - Enable/disable caching of reaction rates and stoichiometric data at initialization.
- *Effect:* Reduces per-step overhead; increases memory and setup time. - *Effect:* Reduces per-step overhead; increases memory and setup time.
- **setScreeningModel(ScreeningType type):** - **setScreeningModel(ScreeningType type):**
- Choose plasma screening (models: `BARE`, `WEAK`). - Choose plasma screening (models: `BARE`, `WEAK`).
- *Effect:* Alters rate enhancement under dense/low-T conditions, impacting stiffness. - *Effect:* Alters rate enhancement under dense/low-T conditions, impacting stiffness.
- **setUseReverseReactions(bool useReverse):** - **setUseReverseReactions(bool useReverse):**
- Toggle inclusion of reverse (detailed balance) reactions. - Toggle inclusion of reverse (detailed balance) reactions.
- *Effect:* Improves equilibrium fidelity; increases network size and stiffness. - *Effect:* Improves equilibrium fidelity; increases network size and stiffness.
### Available Partition Functions ### Available Partition Functions
@@ -564,11 +517,11 @@ A `NetIn` struct contains
A `NetOut` struct contains A `NetOut` struct contains
- The final composition after evolving to `tMax` (`NetOut::composition`) - The final composition after evolving to `tMax` (`NetOut::composition`)
- The number of steps the solver took to evolve to `tmax` (`NetOut::num_steps`) - The number of steps the solver took to evolve to `tmax` (`NetOut::num_steps`)
- The final energy generated by the network while evolving to `tMax` - The final specific energy generated by the network while evolving to `tMax` (`NetOut::energy`) [erg/g]
(`NetOut::energy`) - The derivative of energy with respect to temperature at the end of the evolution (`NetOut::dEps_dT`)
- The derivative of energy with respect to density at the end of the evolution (`NetOut::dEps_dRho`)
>**Note:** Currently `GraphEngine` only considers energy due to nuclear mass - The total specific energy lost to neutrinos while evolving to `tMax` (`NetOut::total_neutrino_loss`) [erg/g]
>defect and not neutrino loss. - The total flux of neutrinos while evolving to `tMax` (`NetOut::total_neutrino_flux`)
### CVODESolverStrategy ### CVODESolverStrategy
@@ -793,9 +746,9 @@ All GridFire C++ types have been bound and can be passed around as one would exp
The syntax for registration is very similar to C++. There are a few things to note about this more robust example The syntax for registration is very similar to C++. There are a few things to note about this more robust example
1. Note how I use a callback and a log object to store the state of the simulation at each timestep. 1. Note how I use a callback and a log object to store the state of the simulation at each timestep.
2. If you have tools such as mypy installed you will see that the python bindings are strongly typed. This is 2. If you have tools such as mypy installed you will see that the python bindings are strongly typed. This is
intentional to help users avoid mistakes when writing code. intentional to help users avoid mistakes when writing code.
```python ```python
from fourdst.composition import Composition from fourdst.composition import Composition
from gridfire.type import NetIn from gridfire.type import NetIn
@@ -962,6 +915,8 @@ int main() {
double energy_out; double energy_out;
double dEps_dT; double dEps_dT;
double dEps_dRho; double dEps_dRho;
double neutrino_energy_loss;
double neutrino_flux;
double mass_lost; double mass_lost;
ret = gf_evolve( ret = gf_evolve(
@@ -975,7 +930,10 @@ int main() {
Y_out, Y_out,
&energy_out, &energy_out,
&dEps_dT, &dEps_dT,
&dEps_dRho, &mass_lost &dEps_dRho,
&neutrino_energy_loss,
&neutrino_flux,
&mass_lost
); );
GF_CHECK_RET_CODE(ret, gf_context, "Evolution"); GF_CHECK_RET_CODE(ret, gf_context, "Evolution");
@@ -1058,7 +1016,7 @@ program main
! Output buffers ! Output buffers
real(c_double), dimension(8) :: Y_out real(c_double), dimension(8) :: Y_out
real(c_double) :: energy_out, dedt, dedrho, dmass real(c_double) :: energy_out, dedt, dedrho, nu_E_loss, nu_flux, dmass
! Thermodynamic Conditions (Solar Core-ish) ! Thermodynamic Conditions (Solar Core-ish)
real(c_double) :: T = 1.5e7 ! 15 Million K real(c_double) :: T = 1.5e7 ! 15 Million K
@@ -1082,7 +1040,7 @@ program main
! --- 5. Evolve --- ! --- 5. Evolve ---
print *, "Evolving system (dt =", dt, "s)..." print *, "Evolving system (dt =", dt, "s)..."
call net%evolve(Y_in, T, rho, dt, Y_out, energy_out, dedt, dedrho, dmass, ierr) call net%evolve(Y_in, T, rho, dt, Y_out, energy_out, dedt, dedrho, nu_E_loss, nu_flux, dmass, ierr)
if (ierr /= 0) then if (ierr /= 0) then
print *, "Evolution Failed with error code: ", ierr print *, "Evolution Failed with error code: ", ierr

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -1,33 +1,40 @@
<map id="src/include/gridfire/solver/strategies/CVODE_solver_strategy.h" name="src/include/gridfire/solver/strategies/CVODE_solver_strategy.h"> <map id="src/include/gridfire/solver/strategies/CVODE_solver_strategy.h" name="src/include/gridfire/solver/strategies/CVODE_solver_strategy.h">
<area shape="rect" id="Node000001" title=" " alt="" coords="86,5,260,61"/> <area shape="rect" id="Node000001" title=" " alt="" coords="114,5,287,61"/>
<area shape="rect" id="Node000002" href="$strategies_8h.html" title=" " alt="" coords="358,316,551,357"/> <area shape="rect" id="Node000002" href="$strategies_8h.html" title=" " alt="" coords="414,316,608,357"/>
<area shape="poly" id="edge1_Node000001_Node000002" title=" " alt="" coords="161,77,152,120,147,171,153,222,162,245,175,267,186,277,202,286,247,301,302,313,357,322,357,328,301,319,246,306,200,290,183,281,171,270,157,248,148,223,142,171,146,120,156,75"/> <area shape="poly" id="edge1_Node000001_Node000002" title=" " alt="" coords="189,77,179,121,174,171,180,222,189,245,202,267,215,278,235,288,287,304,351,317,414,325,414,330,350,322,286,310,233,293,212,282,198,270,184,248,175,223,169,171,173,120,184,76"/>
<area shape="rect" id="Node000005" href="$priming_8cpp.html" title=" " alt="" coords="44,494,211,534"/> <area shape="rect" id="Node000008" href="$priming_8cpp.html" title=" " alt="" coords="43,494,209,534"/>
<area shape="poly" id="edge15_Node000001_Node000005" title=" " alt="" coords="151,75,133,110,117,150,104,194,100,239,100,338,102,382,109,425,125,493,119,494,103,426,97,382,94,338,94,239,99,193,112,148,129,107,146,73"/> <area shape="poly" id="edge19_Node000001_Node000008" title=" " alt="" coords="178,75,161,110,144,150,132,194,127,239,127,338,128,493,123,493,122,338,122,239,127,193,139,148,156,107,174,73"/>
<area shape="rect" id="Node000009" href="$solver_2bindings_8cpp.html" title=" " alt="" coords="182,590,380,616"/> <area shape="rect" id="Node000012" href="$solver_2bindings_8cpp.html" title=" " alt="" coords="32,597,230,623"/>
<area shape="poly" id="edge18_Node000001_Node000009" title=" " alt="" coords="120,72,83,104,47,143,21,189,13,213,10,239,10,427,10,485,17,508,35,532,66,558,103,576,143,588,182,595,181,600,141,593,101,581,64,562,31,536,12,511,5,486,5,427,5,239,8,212,16,186,43,140,79,100,117,68"/> <area shape="poly" id="edge22_Node000001_Node000012" title=" " alt="" coords="135,71,92,102,51,140,34,163,20,186,12,212,8,239,8,427,11,483,18,506,33,533,49,552,69,569,108,595,105,599,65,574,46,556,29,536,13,508,6,484,3,427,3,239,6,211,15,184,29,160,47,137,88,98,132,67"/>
<area shape="rect" id="Node000010" href="$engine__partitioning__trigger_8h.html" title="CVODE&#45;specific triggers that decide when to (re)partition the reaction network engine." alt="" coords="334,109,521,165"/> <area shape="rect" id="Node000013" href="$engine__partitioning__trigger_8h.html" title="CVODE&#45;specific triggers that decide when to (re)partition the reaction network engine." alt="" coords="362,109,548,165"/>
<area shape="poly" id="edge10_Node000001_Node000010" title=" " alt="" coords="256,65,360,106,358,111,254,70"/> <area shape="poly" id="edge14_Node000001_Node000013" title=" " alt="" coords="284,65,388,106,386,111,282,70"/>
<area shape="rect" id="Node000012" href="$_c_v_o_d_e__solver__strategy_8cpp.html" title=" " alt="" coords="185,220,377,261"/> <area shape="rect" id="Node000015" href="$_c_v_o_d_e__solver__strategy_8cpp.html" title=" " alt="" coords="212,220,405,261"/>
<area shape="poly" id="edge16_Node000001_Node000012" title=" " alt="" coords="196,73,273,219,268,221,192,76"/> <area shape="poly" id="edge20_Node000001_Node000015" title=" " alt="" coords="224,73,301,219,296,221,219,76"/>
<area shape="rect" id="Node000013" href="$engine__partitioning__trigger_8cpp.html" title=" " alt="" coords="593,213,774,268"/> <area shape="rect" id="Node000016" href="$engine__partitioning__trigger_8cpp.html" title=" " alt="" coords="621,213,801,268"/>
<area shape="poly" id="edge17_Node000001_Node000013" title=" " alt="" coords="276,39,336,48,402,61,470,80,534,107,572,129,608,157,662,210,658,214,604,161,569,134,532,111,468,85,401,66,335,53,275,44"/> <area shape="poly" id="edge21_Node000001_Node000016" title=" " alt="" coords="303,39,363,48,430,61,497,80,562,107,600,129,635,157,690,210,686,214,632,161,597,134,559,111,495,85,428,66,363,53,302,44"/>
<area shape="rect" id="Node000003" href="$solver_8h.html" title=" " alt="" coords="391,405,518,446"/> <area shape="rect" id="Node000003" href="$solver_8h.html" title=" " alt="" coords="447,405,575,446"/>
<area shape="poly" id="edge2_Node000002_Node000003" title=" " alt="" coords="457,373,457,405,452,405,452,373"/> <area shape="poly" id="edge2_Node000002_Node000003" title=" " alt="" coords="514,373,514,405,508,405,508,373"/>
<area shape="rect" id="Node000004" href="$gridfire_8h.html" title=" " alt="" coords="235,494,362,534"/> <area shape="rect" id="Node000004" href="$gridfire_8h.html" title=" " alt="" coords="655,494,783,534"/>
<area shape="poly" id="edge3_Node000003_Node000004" title=" " alt="" coords="407,456,335,496,332,491,404,451"/> <area shape="poly" id="edge3_Node000003_Node000004" title=" " alt="" coords="573,450,673,491,671,496,571,454"/>
<area shape="poly" id="edge4_Node000003_Node000005" title=" " alt="" coords="376,450,203,496,201,491,375,445"/> <area shape="poly" id="edge8_Node000003_Node000008" title=" " alt="" coords="433,447,210,497,209,491,432,442"/>
<area shape="rect" id="Node000006" href="$engine__priming_8cpp.html" title=" " alt="" coords="386,494,523,534"/> <area shape="rect" id="Node000009" href="$engine__priming_8cpp.html" title=" " alt="" coords="442,494,580,534"/>
<area shape="poly" id="edge5_Node000003_Node000006" title=" " alt="" coords="457,461,457,493,452,493,452,461"/> <area shape="poly" id="edge9_Node000003_Node000009" title=" " alt="" coords="514,461,514,493,508,493,508,461"/>
<area shape="rect" id="Node000007" href="$py__solver_8cpp.html" title=" " alt="" coords="612,582,798,623"/> <area shape="rect" id="Node000010" href="$py__solver_8cpp.html" title=" " alt="" coords="306,590,492,630"/>
<area shape="poly" id="edge6_Node000003_Node000007" title=" " alt="" coords="534,431,595,440,659,452,713,469,733,480,747,492,756,515,751,540,739,564,725,584,720,580,735,561,746,538,750,516,743,495,730,484,711,474,657,457,595,445,533,437"/> <area shape="poly" id="edge10_Node000003_Node000010" title=" " alt="" coords="558,453,578,471,594,491,601,513,595,536,574,559,549,576,521,589,493,599,491,594,519,584,546,572,571,555,590,533,596,513,589,494,574,474,554,457"/>
<area shape="rect" id="Node000008" href="$py__solver_8h.html" title=" " alt="" coords="547,494,732,534"/> <area shape="rect" id="Node000011" href="$py__solver_8h.html" title=" " alt="" coords="233,494,418,534"/>
<area shape="poly" id="edge7_Node000003_Node000008" title=" " alt="" coords="511,450,599,491,597,496,509,455"/> <area shape="poly" id="edge11_Node000003_Node000011" title=" " alt="" coords="456,455,369,496,367,491,454,450"/>
<area shape="poly" id="edge9_Node000008_Node000007" title=" " alt="" coords="666,545,692,580,688,584,661,549"/> <area shape="rect" id="Node000005" href="$gridfire__context_8h.html" title=" " alt="" coords="589,582,737,638"/>
<area shape="poly" id="edge8_Node000008_Node000009" title=" " alt="" coords="544,541,332,592,331,587,542,536"/> <area shape="poly" id="edge4_Node000004_Node000005" title=" " alt="" coords="702,549,682,583,677,580,697,546"/>
<area shape="rect" id="Node000011" href="$triggers_8h.html" title=" " alt="" coords="401,213,569,268"/> <area shape="rect" id="Node000007" href="$gridfire__extern_8cpp.html" title=" " alt="" coords="704,686,843,727"/>
<area shape="poly" id="edge11_Node000010_Node000011" title=" " alt="" coords="453,177,472,211,467,213,448,180"/> <area shape="poly" id="edge7_Node000004_Node000007" title=" " alt="" coords="738,548,751,582,765,638,774,685,768,686,760,639,746,583,733,550"/>
<area shape="poly" id="edge13_Node000010_Node000012" title=" " alt="" coords="378,176,311,222,308,218,375,171"/> <area shape="rect" id="Node000006" href="$gridfire__context_8cpp.html" title=" " alt="" coords="540,686,679,727"/>
<area shape="poly" id="edge14_Node000010_Node000013" title=" " alt="" coords="511,168,616,210,614,215,509,173"/> <area shape="poly" id="edge5_Node000005_Node000006" title=" " alt="" coords="643,653,623,687,618,684,638,650"/>
<area shape="poly" id="edge12_Node000011_Node000002" title=" " alt="" coords="474,284,463,317,458,315,469,283"/> <area shape="poly" id="edge6_Node000005_Node000007" title=" " alt="" coords="708,646,752,683,749,687,705,650"/>
<area shape="poly" id="edge13_Node000011_Node000010" title=" " alt="" coords="352,545,386,588,382,591,348,548"/>
<area shape="poly" id="edge12_Node000011_Node000012" title=" " alt="" coords="272,544,158,599,155,594,270,539"/>
<area shape="rect" id="Node000014" href="$triggers_8h.html" title=" " alt="" coords="428,213,597,268"/>
<area shape="poly" id="edge15_Node000013_Node000014" title=" " alt="" coords="480,177,499,211,495,213,476,180"/>
<area shape="poly" id="edge17_Node000013_Node000015" title=" " alt="" coords="405,176,338,222,335,218,402,171"/>
<area shape="poly" id="edge18_Node000013_Node000016" title=" " alt="" coords="539,168,643,210,641,215,537,173"/>
<area shape="poly" id="edge16_Node000014_Node000002" title=" " alt="" coords="514,284,514,316,509,316,509,284"/>
</map> </map>

View File

@@ -1 +1 @@
b11a58a62e75dce340ddb3206c5a22c2 aecff70121c443a2aef76b004e2af200

View File

@@ -4,7 +4,7 @@
<!-- Generated by graphviz version 13.0.1 (20250615.1724) <!-- Generated by graphviz version 13.0.1 (20250615.1724)
--> -->
<!-- Title: src/include/gridfire/solver/strategies/CVODE_solver_strategy.h Pages: 1 --> <!-- Title: src/include/gridfire/solver/strategies/CVODE_solver_strategy.h Pages: 1 -->
<!--zoomable 471 --> <!--zoomable 549 -->
<svg id="main" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" onload="init(evt)"> <svg id="main" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" onload="init(evt)">
@@ -47,8 +47,8 @@
</g> </g>
</defs> </defs>
<script type="application/ecmascript"> <script type="application/ecmascript">
var viewWidth = 602; var viewWidth = 637;
var viewHeight = 471; var viewHeight = 549;
var sectionId = 'dynsection-1'; var sectionId = 'dynsection-1';
</script> </script>
<script type="application/ecmascript" xlink:href="svg.min.js"/> <script type="application/ecmascript" xlink:href="svg.min.js"/>
@@ -59,10 +59,10 @@ var sectionId = 'dynsection-1';
<g id="Node000001" class="node"> <g id="Node000001" class="node">
<title>Node1</title> <title>Node1</title>
<g id="a_Node000001"><a xlink:title=" "> <g id="a_Node000001"><a xlink:title=" ">
<polygon fill="#999999" stroke="#666666" points="190.66,-463.25 60.66,-463.25 60.66,-421.5 190.66,-421.5 190.66,-463.25"/> <polygon fill="#999999" stroke="#666666" points="211.31,-541 81.31,-541 81.31,-499.25 211.31,-499.25 211.31,-541"/>
<text xml:space="preserve" text-anchor="start" x="68.66" y="-449.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="89.31" y="-527.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="start" x="68.66" y="-438.5" font-family="Helvetica,sans-Serif" font-size="10.00">/solver/strategies/CVODE</text> <text xml:space="preserve" text-anchor="start" x="89.31" y="-516.25" font-family="Helvetica,sans-Serif" font-size="10.00">/solver/strategies/CVODE</text>
<text xml:space="preserve" text-anchor="middle" x="125.66" y="-427.25" font-family="Helvetica,sans-Serif" font-size="10.00">_solver_strategy.h</text> <text xml:space="preserve" text-anchor="middle" x="146.31" y="-505" font-family="Helvetica,sans-Serif" font-size="10.00">_solver_strategy.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -70,9 +70,9 @@ var sectionId = 'dynsection-1';
<g id="Node000002" class="node"> <g id="Node000002" class="node">
<title>Node2</title> <title>Node2</title>
<g id="a_Node000002"><a xlink:href="strategies_8h.html" target="_top" xlink:title=" "> <g id="a_Node000002"><a xlink:href="strategies_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="409.16,-230 264.16,-230 264.16,-199.5 409.16,-199.5 409.16,-230"/> <polygon fill="white" stroke="#666666" points="451.81,-307.75 306.81,-307.75 306.81,-277.25 451.81,-277.25 451.81,-307.75"/>
<text xml:space="preserve" text-anchor="start" x="272.16" y="-216.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="314.81" y="-294.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="336.66" y="-205.25" font-family="Helvetica,sans-Serif" font-size="10.00">/solver/strategies/strategies.h</text> <text xml:space="preserve" text-anchor="middle" x="379.31" y="-283" font-family="Helvetica,sans-Serif" font-size="10.00">/solver/strategies/strategies.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -80,104 +80,104 @@ var sectionId = 'dynsection-1';
<g id="edge1_Node000001_Node000002" class="edge"> <g id="edge1_Node000001_Node000002" class="edge">
<title>Node1&#45;&gt;Node2</title> <title>Node1&#45;&gt;Node2</title>
<g id="a_edge1_Node000001_Node000002"><a xlink:title=" "> <g id="a_edge1_Node000001_Node000002"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M115.13,-410.22C104.32,-371.94 93.25,-307.03 125.66,-266 142.81,-244.28 209.84,-230.94 263.81,-223.51"/> <path fill="none" stroke="#63b8ff" d="M135.63,-487.85C124.68,-449.46 113.46,-384.43 146.31,-343.75 166.23,-319.08 245.79,-305.94 306.46,-299.36"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="111.76,-411.17 117.99,-419.74 118.46,-409.15 111.76,-411.17"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="132.28,-488.86 138.53,-497.41 138.98,-486.83 132.28,-488.86"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node5 --> <!-- Node8 -->
<g id="Node000005" class="node"> <g id="Node000008" class="node">
<title>Node5</title> <title>Node8</title>
<g id="a_Node000005"><a xlink:href="priming_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000008"><a xlink:href="priming_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="154.03,-97 29.28,-97 29.28,-66.5 154.03,-66.5 154.03,-97"/> <polygon fill="white" stroke="#666666" points="152.68,-174.75 27.93,-174.75 27.93,-144.25 152.68,-144.25 152.68,-174.75"/>
<text xml:space="preserve" text-anchor="start" x="37.28" y="-83.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/engine/procedures</text> <text xml:space="preserve" text-anchor="start" x="35.93" y="-161.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/engine/procedures</text>
<text xml:space="preserve" text-anchor="middle" x="91.66" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">/priming.cpp</text> <text xml:space="preserve" text-anchor="middle" x="90.31" y="-150" font-family="Helvetica,sans-Serif" font-size="10.00">/priming.cpp</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node1&#45;&gt;Node5 --> <!-- Node1&#45;&gt;Node8 -->
<g id="edge15_Node000001_Node000005" class="edge"> <g id="edge19_Node000001_Node000008" class="edge">
<title>Node1&#45;&gt;Node5</title> <title>Node1&#45;&gt;Node8</title>
<g id="a_edge15_Node000001_Node000005"><a xlink:title=" "> <g id="a_edge19_Node000001_Node000008"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M107.38,-411.56C90.71,-381.48 68.66,-333.14 68.66,-287.88 68.66,-287.88 68.66,-287.88 68.66,-213.75 68.66,-170.8 80.8,-121.11 87.44,-97.14"/> <path fill="none" stroke="#63b8ff" d="M128.03,-489.31C111.36,-459.23 89.31,-410.89 89.31,-365.62 89.31,-365.62 89.31,-365.62 89.31,-291.5 89.31,-249.2 89.84,-199.21 90.12,-175.04"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="104.26,-413.14 112.26,-420.09 110.33,-409.67 104.26,-413.14"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="124.9,-490.89 132.91,-497.84 130.98,-487.42 124.9,-490.89"/>
</a>
</g>
</g>
<!-- Node9 -->
<g id="Node000009" class="node">
<title>Node9</title>
<g id="a_Node000009"><a xlink:href="solver_2bindings_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="281.03,-24.88 132.28,-24.88 132.28,-5.63 281.03,-5.63 281.03,-24.88"/>
<text xml:space="preserve" text-anchor="middle" x="206.66" y="-11.38" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/solver/bindings.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node9 -->
<g id="edge18_Node000001_Node000009" class="edge">
<title>Node1&#45;&gt;Node9</title>
<g id="a_edge18_Node000001_Node000009"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M84.81,-414.72C48.68,-387.58 1.66,-341.88 1.66,-287.88 1.66,-287.88 1.66,-287.88 1.66,-147.25 1.66,-110.38 -4.98,-92.99 20.66,-66.5 49.39,-36.81 93.69,-24.08 131.85,-18.84"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="82.36,-417.27 92.5,-420.33 86.48,-411.61 82.36,-417.27"/>
</a>
</g>
</g>
<!-- Node10 -->
<g id="Node000010" class="node">
<title>Node10</title>
<g id="a_Node000010"><a xlink:href="engine__partitioning__trigger_8h.html" target="_top" xlink:title="CVODE&#45;specific triggers that decide when to (re)partition the reaction network engine.">
<polygon fill="white" stroke="#666666" points="386.53,-385.5 246.78,-385.5 246.78,-343.75 386.53,-343.75 386.53,-385.5"/>
<text xml:space="preserve" text-anchor="start" x="254.78" y="-372" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="start" x="254.78" y="-360.75" font-family="Helvetica,sans-Serif" font-size="10.00">/solver/strategies/triggers</text>
<text xml:space="preserve" text-anchor="middle" x="316.66" y="-349.5" font-family="Helvetica,sans-Serif" font-size="10.00">/engine_partitioning_trigger.h</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node10 -->
<g id="edge10_Node000001_Node000010" class="edge">
<title>Node1&#45;&gt;Node10</title>
<g id="a_edge10_Node000001_Node000010"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M187.39,-416.89C212.57,-406.91 241.34,-395.5 265.33,-385.98"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="186.26,-413.58 178.25,-420.52 188.84,-420.08 186.26,-413.58"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node12 --> <!-- Node12 -->
<g id="Node000012" class="node"> <g id="Node000012" class="node">
<title>Node12</title> <title>Node12</title>
<g id="a_Node000012"><a xlink:href="_c_v_o_d_e__solver__strategy_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000012"><a xlink:href="solver_2bindings_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="278.78,-302.12 134.53,-302.12 134.53,-271.62 278.78,-271.62 278.78,-302.12"/> <polygon fill="white" stroke="#666666" points="168.68,-97 19.93,-97 19.93,-77.75 168.68,-77.75 168.68,-97"/>
<text xml:space="preserve" text-anchor="start" x="142.53" y="-288.62" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/solver/strategies</text> <text xml:space="preserve" text-anchor="middle" x="94.31" y="-83.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/solver/bindings.cpp</text>
<text xml:space="preserve" text-anchor="middle" x="206.66" y="-277.38" font-family="Helvetica,sans-Serif" font-size="10.00">/CVODE_solver_strategy.cpp</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node1&#45;&gt;Node12 --> <!-- Node1&#45;&gt;Node12 -->
<g id="edge16_Node000001_Node000012" class="edge"> <g id="edge22_Node000001_Node000012" class="edge">
<title>Node1&#45;&gt;Node12</title> <title>Node1&#45;&gt;Node12</title>
<g id="a_edge16_Node000001_Node000012"><a xlink:title=" "> <g id="a_edge22_Node000001_Node000012"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M141.5,-411.36C158.81,-378.55 185.84,-327.33 198.97,-302.44"/> <path fill="none" stroke="#63b8ff" d="M96.39,-493.12C54.1,-467.1 0.31,-422.78 0.31,-365.62 0.31,-365.62 0.31,-365.62 0.31,-225 0.31,-188.13 -0.92,-175.07 19.31,-144.25 33.29,-122.94 58.33,-106.75 75.61,-97.42"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="138.53,-409.49 136.96,-419.97 144.72,-412.76 138.53,-409.49"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="94.34,-495.98 104.73,-498.09 97.93,-489.96 94.34,-495.98"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node13 --> <!-- Node13 -->
<g id="Node000013" class="node"> <g id="Node000013" class="node">
<title>Node13</title> <title>Node13</title>
<g id="a_Node000013"><a xlink:href="engine__partitioning__trigger_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000013"><a xlink:href="engine__partitioning__trigger_8h.html" target="_top" xlink:title="CVODE&#45;specific triggers that decide when to (re)partition the reaction network engine.">
<polygon fill="white" stroke="#666666" points="576.28,-307.75 441.03,-307.75 441.03,-266 576.28,-266 576.28,-307.75"/> <polygon fill="white" stroke="#666666" points="407.18,-463.25 267.43,-463.25 267.43,-421.5 407.18,-421.5 407.18,-463.25"/>
<text xml:space="preserve" text-anchor="start" x="449.03" y="-294.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/solver/strategies</text> <text xml:space="preserve" text-anchor="start" x="275.43" y="-449.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="start" x="449.03" y="-283" font-family="Helvetica,sans-Serif" font-size="10.00">/triggers/engine_partitioning</text> <text xml:space="preserve" text-anchor="start" x="275.43" y="-438.5" font-family="Helvetica,sans-Serif" font-size="10.00">/solver/strategies/triggers</text>
<text xml:space="preserve" text-anchor="middle" x="508.66" y="-271.75" font-family="Helvetica,sans-Serif" font-size="10.00">_trigger.cpp</text> <text xml:space="preserve" text-anchor="middle" x="337.31" y="-427.25" font-family="Helvetica,sans-Serif" font-size="10.00">/engine_partitioning_trigger.h</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node1&#45;&gt;Node13 --> <!-- Node1&#45;&gt;Node13 -->
<g id="edge17_Node000001_Node000013" class="edge"> <g id="edge14_Node000001_Node000013" class="edge">
<title>Node1&#45;&gt;Node13</title> <title>Node1&#45;&gt;Node13</title>
<g id="a_edge17_Node000001_Node000013"><a xlink:title=" "> <g id="a_edge14_Node000001_Node000013"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M202.37,-435.89C258.33,-429.47 334.71,-415.57 395.66,-385.5 434.49,-366.35 470.74,-330.64 491.26,-308.12"/> <path fill="none" stroke="#63b8ff" d="M208.04,-494.64C233.21,-484.66 261.98,-473.25 285.98,-463.73"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="202.18,-432.39 192.61,-436.95 202.93,-439.35 202.18,-432.39"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="206.9,-491.33 198.9,-498.27 209.48,-497.83 206.9,-491.33"/>
</a>
</g>
</g>
<!-- Node15 -->
<g id="Node000015" class="node">
<title>Node15</title>
<g id="a_Node000015"><a xlink:href="_c_v_o_d_e__solver__strategy_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="299.43,-379.88 155.18,-379.88 155.18,-349.38 299.43,-349.38 299.43,-379.88"/>
<text xml:space="preserve" text-anchor="start" x="163.18" y="-366.38" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/solver/strategies</text>
<text xml:space="preserve" text-anchor="middle" x="227.31" y="-355.12" font-family="Helvetica,sans-Serif" font-size="10.00">/CVODE_solver_strategy.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node15 -->
<g id="edge20_Node000001_Node000015" class="edge">
<title>Node1&#45;&gt;Node15</title>
<g id="a_edge20_Node000001_Node000015"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M162.15,-489.11C179.46,-456.3 206.49,-405.08 219.62,-380.19"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="159.17,-487.24 157.6,-497.72 165.37,-490.51 159.17,-487.24"/>
</a>
</g>
</g>
<!-- Node16 -->
<g id="Node000016" class="node">
<title>Node16</title>
<g id="a_Node000016"><a xlink:href="engine__partitioning__trigger_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="596.93,-385.5 461.68,-385.5 461.68,-343.75 596.93,-343.75 596.93,-385.5"/>
<text xml:space="preserve" text-anchor="start" x="469.68" y="-372" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/solver/strategies</text>
<text xml:space="preserve" text-anchor="start" x="469.68" y="-360.75" font-family="Helvetica,sans-Serif" font-size="10.00">/triggers/engine_partitioning</text>
<text xml:space="preserve" text-anchor="middle" x="529.31" y="-349.5" font-family="Helvetica,sans-Serif" font-size="10.00">_trigger.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node16 -->
<g id="edge21_Node000001_Node000016" class="edge">
<title>Node1&#45;&gt;Node16</title>
<g id="a_edge21_Node000001_Node000016"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M223.02,-513.64C278.98,-507.22 355.36,-493.32 416.31,-463.25 455.14,-444.1 491.39,-408.39 511.91,-385.87"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="222.82,-510.14 213.26,-514.7 223.58,-517.1 222.82,-510.14"/>
</a> </a>
</g> </g>
</g> </g>
@@ -185,9 +185,9 @@ var sectionId = 'dynsection-1';
<g id="Node000003" class="node"> <g id="Node000003" class="node">
<title>Node3</title> <title>Node3</title>
<g id="a_Node000003"><a xlink:href="solver_8h.html" target="_top" xlink:title=" "> <g id="a_Node000003"><a xlink:href="solver_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="384.41,-163.5 288.91,-163.5 288.91,-133 384.41,-133 384.41,-163.5"/> <polygon fill="white" stroke="#666666" points="427.06,-241.25 331.56,-241.25 331.56,-210.75 427.06,-210.75 427.06,-241.25"/>
<text xml:space="preserve" text-anchor="start" x="296.91" y="-150" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="339.56" y="-227.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="336.66" y="-138.75" font-family="Helvetica,sans-Serif" font-size="10.00">/solver/solver.h</text> <text xml:space="preserve" text-anchor="middle" x="379.31" y="-216.5" font-family="Helvetica,sans-Serif" font-size="10.00">/solver/solver.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -195,8 +195,8 @@ var sectionId = 'dynsection-1';
<g id="edge2_Node000002_Node000003" class="edge"> <g id="edge2_Node000002_Node000003" class="edge">
<title>Node2&#45;&gt;Node3</title> <title>Node2&#45;&gt;Node3</title>
<g id="a_edge2_Node000002_Node000003"><a xlink:title=" "> <g id="a_edge2_Node000002_Node000003"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M336.66,-187.81C336.66,-179.64 336.66,-170.91 336.66,-163.83"/> <path fill="none" stroke="#63b8ff" d="M379.31,-265.56C379.31,-257.39 379.31,-248.66 379.31,-241.58"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="333.16,-187.6 336.66,-197.6 340.16,-187.6 333.16,-187.6"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="375.81,-265.35 379.31,-275.35 382.81,-265.35 375.81,-265.35"/>
</a> </a>
</g> </g>
</g> </g>
@@ -204,9 +204,9 @@ var sectionId = 'dynsection-1';
<g id="Node000004" class="node"> <g id="Node000004" class="node">
<title>Node4</title> <title>Node4</title>
<g id="a_Node000004"><a xlink:href="gridfire_8h.html" target="_top" xlink:title=" "> <g id="a_Node000004"><a xlink:href="gridfire_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="267.41,-97 171.91,-97 171.91,-66.5 267.41,-66.5 267.41,-97"/> <polygon fill="white" stroke="#666666" points="583.06,-174.75 487.56,-174.75 487.56,-144.25 583.06,-144.25 583.06,-174.75"/>
<text xml:space="preserve" text-anchor="start" x="179.91" y="-83.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="495.56" y="-161.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="219.66" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">/gridfire.h</text> <text xml:space="preserve" text-anchor="middle" x="535.31" y="-150" font-family="Helvetica,sans-Serif" font-size="10.00">/gridfire.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -214,139 +214,206 @@ var sectionId = 'dynsection-1';
<g id="edge3_Node000003_Node000004" class="edge"> <g id="edge3_Node000003_Node000004" class="edge">
<title>Node3&#45;&gt;Node4</title> <title>Node3&#45;&gt;Node4</title>
<g id="a_edge3_Node000003_Node000004"><a xlink:title=" "> <g id="a_edge3_Node000003_Node000004"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M300.21,-127.16C282.7,-117.5 262.09,-106.14 246.1,-97.33"/> <path fill="none" stroke="#63b8ff" d="M425.26,-206C449.07,-196.16 477.69,-184.32 499.78,-175.19"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="298.34,-130.12 308.79,-131.88 301.72,-123.99 298.34,-130.12"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="424.01,-202.73 416.1,-209.79 426.68,-209.2 424.01,-202.73"/>
</a>
</g>
</g>
<!-- Node3&#45;&gt;Node5 -->
<g id="edge4_Node000003_Node000005" class="edge">
<title>Node3&#45;&gt;Node5</title>
<g id="a_edge4_Node000003_Node000005"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M277.47,-131.67C237.91,-121.25 186.2,-107.64 147.37,-97.42"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="276.52,-135.04 287.08,-134.2 278.31,-128.27 276.52,-135.04"/>
</a>
</g>
</g>
<!-- Node6 -->
<g id="Node000006" class="node">
<title>Node6</title>
<g id="a_Node000006"><a xlink:href="engine__priming_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="388.16,-97 285.16,-97 285.16,-66.5 388.16,-66.5 388.16,-97"/>
<text xml:space="preserve" text-anchor="start" x="293.16" y="-83.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/engine/views</text>
<text xml:space="preserve" text-anchor="middle" x="336.66" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">/engine_priming.cpp</text>
</a>
</g>
</g>
<!-- Node3&#45;&gt;Node6 -->
<g id="edge5_Node000003_Node000006" class="edge">
<title>Node3&#45;&gt;Node6</title>
<g id="a_edge5_Node000003_Node000006"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M336.66,-121.31C336.66,-113.14 336.66,-104.41 336.66,-97.33"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="333.16,-121.1 336.66,-131.1 340.16,-121.1 333.16,-121.1"/>
</a>
</g>
</g>
<!-- Node7 -->
<g id="Node000007" class="node">
<title>Node7</title>
<g id="a_Node000007"><a xlink:href="py__solver_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="594.16,-30.5 455.16,-30.5 455.16,0 594.16,0 594.16,-30.5"/>
<text xml:space="preserve" text-anchor="start" x="463.16" y="-17" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/solver/trampoline</text>
<text xml:space="preserve" text-anchor="middle" x="524.66" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">/py_solver.cpp</text>
</a>
</g>
</g>
<!-- Node3&#45;&gt;Node7 -->
<g id="edge6_Node000003_Node000007" class="edge">
<title>Node3&#45;&gt;Node7</title>
<g id="a_edge6_Node000003_Node000007"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M395.88,-141.79C453.5,-135.11 535.13,-121.54 554.66,-97 570.49,-77.11 552.07,-48.02 537.9,-30.73"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="395.76,-138.29 386.21,-142.87 396.53,-145.24 395.76,-138.29"/>
</a>
</g>
</g>
<!-- Node8 -->
<g id="Node000008" class="node">
<title>Node8</title>
<g id="a_Node000008"><a xlink:href="py__solver_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="545.16,-97 406.16,-97 406.16,-66.5 545.16,-66.5 545.16,-97"/>
<text xml:space="preserve" text-anchor="start" x="414.16" y="-83.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/solver/trampoline</text>
<text xml:space="preserve" text-anchor="middle" x="475.66" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">/py_solver.h</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node3&#45;&gt;Node8 --> <!-- Node3&#45;&gt;Node8 -->
<g id="edge7_Node000003_Node000008" class="edge"> <g id="edge8_Node000003_Node000008" class="edge">
<title>Node3&#45;&gt;Node8</title> <title>Node3&#45;&gt;Node8</title>
<g id="a_edge7_Node000003_Node000008"><a xlink:title=" "> <g id="a_edge8_Node000003_Node000008"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M378.51,-127.83C399.62,-118.03 424.81,-106.35 444.24,-97.33"/> <path fill="none" stroke="#63b8ff" d="M320.28,-211.83C271.63,-200.97 202.8,-185.61 153.14,-174.52"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="377.17,-124.59 369.57,-131.98 380.12,-130.94 377.17,-124.59"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="319.26,-215.18 329.78,-213.95 320.79,-208.35 319.26,-215.18"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node8&#45;&gt;Node7 --> <!-- Node9 -->
<g id="edge9_Node000008_Node000007" class="edge"> <g id="Node000009" class="node">
<title>Node8&#45;&gt;Node7</title> <title>Node9</title>
<g id="a_edge9_Node000008_Node000007"><a xlink:title=" "> <g id="a_Node000009"><a xlink:href="engine__priming_8cpp.html" target="_top" xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M493.65,-57.07C500.33,-48.28 507.7,-38.57 513.59,-30.83"/> <polygon fill="white" stroke="#666666" points="430.81,-174.75 327.81,-174.75 327.81,-144.25 430.81,-144.25 430.81,-174.75"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="490.96,-54.83 487.69,-64.91 496.53,-59.06 490.96,-54.83"/> <text xml:space="preserve" text-anchor="start" x="335.81" y="-161.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/engine/views</text>
<text xml:space="preserve" text-anchor="middle" x="379.31" y="-150" font-family="Helvetica,sans-Serif" font-size="10.00">/engine_priming.cpp</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node8&#45;&gt;Node9 --> <!-- Node3&#45;&gt;Node9 -->
<g id="edge8_Node000008_Node000009" class="edge"> <g id="edge9_Node000003_Node000009" class="edge">
<title>Node8&#45;&gt;Node9</title> <title>Node3&#45;&gt;Node9</title>
<g id="a_edge8_Node000008_Node000009"><a xlink:title=" "> <g id="a_edge9_Node000003_Node000009"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M403.29,-63.4C352.13,-51.13 285.6,-35.18 244.53,-25.33"/> <path fill="none" stroke="#63b8ff" d="M379.31,-199.06C379.31,-190.89 379.31,-182.16 379.31,-175.08"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="402.27,-66.75 412.81,-65.68 403.9,-59.95 402.27,-66.75"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="375.81,-198.85 379.31,-208.85 382.81,-198.85 375.81,-198.85"/>
</a>
</g>
</g>
<!-- Node10 -->
<g id="Node000010" class="node">
<title>Node10</title>
<g id="a_Node000010"><a xlink:href="py__solver_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="364.81,-102.62 225.81,-102.62 225.81,-72.12 364.81,-72.12 364.81,-102.62"/>
<text xml:space="preserve" text-anchor="start" x="233.81" y="-89.12" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/solver/trampoline</text>
<text xml:space="preserve" text-anchor="middle" x="295.31" y="-77.88" font-family="Helvetica,sans-Serif" font-size="10.00">/py_solver.cpp</text>
</a>
</g>
</g>
<!-- Node3&#45;&gt;Node10 -->
<g id="edge10_Node000003_Node000010" class="edge">
<title>Node3&#45;&gt;Node10</title>
<g id="a_edge10_Node000003_Node000010"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M412.84,-203.75C433.87,-187.69 454.51,-164.94 440.31,-144.25 423.21,-119.34 393.32,-105.53 365.1,-97.88"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="410.89,-200.84 404.82,-209.53 414.98,-206.52 410.89,-200.84"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node11 --> <!-- Node11 -->
<g id="Node000011" class="node"> <g id="Node000011" class="node">
<title>Node11</title> <title>Node11</title>
<g id="a_Node000011"><a xlink:href="triggers_8h.html" target="_top" xlink:title=" "> <g id="a_Node000011"><a xlink:href="py__solver_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="422.78,-307.75 296.53,-307.75 296.53,-266 422.78,-266 422.78,-307.75"/> <polygon fill="white" stroke="#666666" points="309.81,-174.75 170.81,-174.75 170.81,-144.25 309.81,-144.25 309.81,-174.75"/>
<text xml:space="preserve" text-anchor="start" x="304.53" y="-294.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="178.81" y="-161.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/solver/trampoline</text>
<text xml:space="preserve" text-anchor="start" x="304.53" y="-283" font-family="Helvetica,sans-Serif" font-size="10.00">/solver/strategies/triggers</text> <text xml:space="preserve" text-anchor="middle" x="240.31" y="-150" font-family="Helvetica,sans-Serif" font-size="10.00">/py_solver.h</text>
<text xml:space="preserve" text-anchor="middle" x="359.66" y="-271.75" font-family="Helvetica,sans-Serif" font-size="10.00">/triggers.h</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node10&#45;&gt;Node11 --> <!-- Node3&#45;&gt;Node11 -->
<g id="edge11_Node000010_Node000011" class="edge"> <g id="edge11_Node000003_Node000011" class="edge">
<title>Node10&#45;&gt;Node11</title> <title>Node3&#45;&gt;Node11</title>
<g id="a_edge11_Node000010_Node000011"><a xlink:title=" "> <g id="a_edge11_Node000003_Node000011"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M333.82,-333.4C338.62,-324.95 343.72,-315.96 348.1,-308.23"/> <path fill="none" stroke="#63b8ff" d="M337.46,-205.58C316.34,-195.78 291.16,-184.1 271.72,-175.08"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="330.82,-331.58 328.93,-342.01 336.91,-335.04 330.82,-331.58"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="335.85,-208.69 346.39,-209.73 338.8,-202.34 335.85,-208.69"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node10&#45;&gt;Node12 --> <!-- Node5 -->
<g id="edge13_Node000010_Node000012" class="edge"> <g id="Node000005" class="node">
<title>Node10&#45;&gt;Node12</title> <title>Node5</title>
<g id="a_edge13_Node000010_Node000012"><a xlink:title=" "> <g id="a_Node000005"><a xlink:href="gridfire__context_8h.html" target="_top" xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M278.09,-337.06C261.21,-325.44 242.07,-312.26 227.85,-302.46"/> <polygon fill="white" stroke="#666666" points="548.56,-108.25 438.06,-108.25 438.06,-66.5 548.56,-66.5 548.56,-108.25"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="275.71,-339.68 285.94,-342.47 279.68,-333.91 275.71,-339.68"/> <text xml:space="preserve" text-anchor="start" x="446.06" y="-94.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/extern/include</text>
<text xml:space="preserve" text-anchor="start" x="446.06" y="-83.5" font-family="Helvetica,sans-Serif" font-size="10.00">/gridfire/extern/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="493.31" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">_context.h</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node10&#45;&gt;Node13 --> <!-- Node4&#45;&gt;Node5 -->
<g id="edge14_Node000010_Node000013" class="edge"> <g id="edge4_Node000004_Node000005" class="edge">
<title>Node10&#45;&gt;Node13</title> <title>Node4&#45;&gt;Node5</title>
<g id="a_edge14_Node000010_Node000013"><a xlink:title=" "> <g id="a_edge4_Node000004_Node000005"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M378.71,-339.14C404.02,-329.16 432.94,-317.75 457.07,-308.23"/> <path fill="none" stroke="#63b8ff" d="M520.7,-134.11C515.74,-125.83 510.25,-116.67 505.5,-108.74"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="377.54,-335.84 369.52,-342.77 380.11,-342.36 377.54,-335.84"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="517.69,-135.89 525.83,-142.67 523.69,-132.29 517.69,-135.89"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node11&#45;&gt;Node2 --> <!-- Node7 -->
<g id="edge12_Node000011_Node000002" class="edge"> <g id="Node000007" class="node">
<title>Node11&#45;&gt;Node2</title> <title>Node7</title>
<g id="a_edge12_Node000011_Node000002"><a xlink:title=" "> <g id="a_Node000007"><a xlink:href="gridfire__extern_8cpp.html" target="_top" xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M349.44,-254.71C346.64,-246.17 343.73,-237.31 341.4,-230.2"/> <polygon fill="white" stroke="#666666" points="628.56,-30.5 524.06,-30.5 524.06,0 628.56,0 628.56,-30.5"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="346.09,-255.74 352.54,-264.15 352.74,-253.56 346.09,-255.74"/> <text xml:space="preserve" text-anchor="start" x="532.06" y="-17" font-family="Helvetica,sans-Serif" font-size="10.00">src/extern/lib/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="576.31" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">_extern.cpp</text>
</a>
</g>
</g>
<!-- Node4&#45;&gt;Node7 -->
<g id="edge7_Node000004_Node000007" class="edge">
<title>Node4&#45;&gt;Node7</title>
<g id="a_edge7_Node000004_Node000007"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M547.5,-133.45C551.03,-125.52 554.64,-116.64 557.31,-108.25 565.82,-81.52 571.47,-49.18 574.26,-30.83"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="544.34,-131.94 543.32,-142.49 550.7,-134.88 544.34,-131.94"/>
</a>
</g>
</g>
<!-- Node6 -->
<g id="Node000006" class="node">
<title>Node6</title>
<g id="a_Node000006"><a xlink:href="gridfire__context_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="505.56,-30.5 401.06,-30.5 401.06,0 505.56,0 505.56,-30.5"/>
<text xml:space="preserve" text-anchor="start" x="409.06" y="-17" font-family="Helvetica,sans-Serif" font-size="10.00">src/extern/lib/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="453.31" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">_context.cpp</text>
</a>
</g>
</g>
<!-- Node5&#45;&gt;Node6 -->
<g id="edge5_Node000005_Node000006" class="edge">
<title>Node5&#45;&gt;Node6</title>
<g id="a_edge5_Node000005_Node000006"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M476.19,-56.36C471.11,-47.47 465.79,-38.13 461.55,-30.7"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="472.99,-57.83 480.99,-64.78 479.07,-54.36 472.99,-57.83"/>
</a>
</g>
</g>
<!-- Node5&#45;&gt;Node7 -->
<g id="edge6_Node000005_Node000007" class="edge">
<title>Node5&#45;&gt;Node7</title>
<g id="a_edge6_Node000005_Node000007"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M526.06,-58.7C537.29,-49.21 549.42,-38.97 558.94,-30.92"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="523.85,-55.99 518.47,-65.12 528.37,-61.33 523.85,-55.99"/>
</a>
</g>
</g>
<!-- Node11&#45;&gt;Node10 -->
<g id="edge13_Node000011_Node000010" class="edge">
<title>Node11&#45;&gt;Node10</title>
<g id="a_edge13_Node000011_Node000010"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M258.63,-135.14C266.99,-124.48 276.63,-112.19 283.93,-102.89"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="256.05,-132.75 252.64,-142.78 261.56,-137.07 256.05,-132.75"/>
</a>
</g>
</g>
<!-- Node11&#45;&gt;Node12 -->
<g id="edge12_Node000011_Node000012" class="edge">
<title>Node11&#45;&gt;Node12</title>
<g id="a_edge12_Node000011_Node000012"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M199.33,-138.82C171.13,-125.27 134.98,-107.91 113.28,-97.49"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="197.81,-141.97 208.34,-143.14 200.84,-135.66 197.81,-141.97"/>
</a>
</g>
</g>
<!-- Node14 -->
<g id="Node000014" class="node">
<title>Node14</title>
<g id="a_Node000014"><a xlink:href="triggers_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="443.43,-385.5 317.18,-385.5 317.18,-343.75 443.43,-343.75 443.43,-385.5"/>
<text xml:space="preserve" text-anchor="start" x="325.18" y="-372" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="start" x="325.18" y="-360.75" font-family="Helvetica,sans-Serif" font-size="10.00">/solver/strategies/triggers</text>
<text xml:space="preserve" text-anchor="middle" x="380.31" y="-349.5" font-family="Helvetica,sans-Serif" font-size="10.00">/triggers.h</text>
</a>
</g>
</g>
<!-- Node13&#45;&gt;Node14 -->
<g id="edge15_Node000013_Node000014" class="edge">
<title>Node13&#45;&gt;Node14</title>
<g id="a_edge15_Node000013_Node000014"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M354.47,-411.15C359.26,-402.7 364.36,-393.71 368.75,-385.98"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="351.47,-409.33 349.58,-419.76 357.56,-412.79 351.47,-409.33"/>
</a>
</g>
</g>
<!-- Node13&#45;&gt;Node15 -->
<g id="edge17_Node000013_Node000015" class="edge">
<title>Node13&#45;&gt;Node15</title>
<g id="a_edge17_Node000013_Node000015"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M298.73,-414.81C281.86,-403.19 262.71,-390.01 248.49,-380.21"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="296.36,-417.43 306.58,-420.22 300.33,-411.66 296.36,-417.43"/>
</a>
</g>
</g>
<!-- Node13&#45;&gt;Node16 -->
<g id="edge18_Node000013_Node000016" class="edge">
<title>Node13&#45;&gt;Node16</title>
<g id="a_edge18_Node000013_Node000016"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M399.36,-416.89C424.67,-406.91 453.59,-395.5 477.71,-385.98"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="398.19,-413.59 390.17,-420.52 400.75,-420.11 398.19,-413.59"/>
</a>
</g>
</g>
<!-- Node14&#45;&gt;Node2 -->
<g id="edge16_Node000014_Node000002" class="edge">
<title>Node14&#45;&gt;Node2</title>
<g id="a_edge16_Node000014_Node000002"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M379.85,-331.88C379.74,-323.52 379.61,-314.9 379.51,-307.95"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="376.35,-331.88 380,-341.83 383.35,-331.78 376.35,-331.88"/>
</a> </a>
</g> </g>
</g> </g>

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 23 KiB

View File

@@ -4,18 +4,18 @@
<!-- Generated by graphviz version 13.0.1 (20250615.1724) <!-- Generated by graphviz version 13.0.1 (20250615.1724)
--> -->
<!-- Title: src/include/gridfire/solver/strategies/CVODE_solver_strategy.h Pages: 1 --> <!-- Title: src/include/gridfire/solver/strategies/CVODE_solver_strategy.h Pages: 1 -->
<svg width="602pt" height="471pt" <svg width="637pt" height="549pt"
viewBox="0.00 0.00 602.00 471.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> viewBox="0.00 0.00 637.00 549.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 467.25)"> <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 545)">
<title>src/include/gridfire/solver/strategies/CVODE_solver_strategy.h</title> <title>src/include/gridfire/solver/strategies/CVODE_solver_strategy.h</title>
<!-- Node1 --> <!-- Node1 -->
<g id="Node000001" class="node"> <g id="Node000001" class="node">
<title>Node1</title> <title>Node1</title>
<g id="a_Node000001"><a xlink:title=" "> <g id="a_Node000001"><a xlink:title=" ">
<polygon fill="#999999" stroke="#666666" points="190.66,-463.25 60.66,-463.25 60.66,-421.5 190.66,-421.5 190.66,-463.25"/> <polygon fill="#999999" stroke="#666666" points="211.31,-541 81.31,-541 81.31,-499.25 211.31,-499.25 211.31,-541"/>
<text xml:space="preserve" text-anchor="start" x="68.66" y="-449.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="89.31" y="-527.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="start" x="68.66" y="-438.5" font-family="Helvetica,sans-Serif" font-size="10.00">/solver/strategies/CVODE</text> <text xml:space="preserve" text-anchor="start" x="89.31" y="-516.25" font-family="Helvetica,sans-Serif" font-size="10.00">/solver/strategies/CVODE</text>
<text xml:space="preserve" text-anchor="middle" x="125.66" y="-427.25" font-family="Helvetica,sans-Serif" font-size="10.00">_solver_strategy.h</text> <text xml:space="preserve" text-anchor="middle" x="146.31" y="-505" font-family="Helvetica,sans-Serif" font-size="10.00">_solver_strategy.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -23,9 +23,9 @@
<g id="Node000002" class="node"> <g id="Node000002" class="node">
<title>Node2</title> <title>Node2</title>
<g id="a_Node000002"><a xlink:href="strategies_8h.html" target="_top" xlink:title=" "> <g id="a_Node000002"><a xlink:href="strategies_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="409.16,-230 264.16,-230 264.16,-199.5 409.16,-199.5 409.16,-230"/> <polygon fill="white" stroke="#666666" points="451.81,-307.75 306.81,-307.75 306.81,-277.25 451.81,-277.25 451.81,-307.75"/>
<text xml:space="preserve" text-anchor="start" x="272.16" y="-216.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="314.81" y="-294.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="336.66" y="-205.25" font-family="Helvetica,sans-Serif" font-size="10.00">/solver/strategies/strategies.h</text> <text xml:space="preserve" text-anchor="middle" x="379.31" y="-283" font-family="Helvetica,sans-Serif" font-size="10.00">/solver/strategies/strategies.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -33,104 +33,104 @@
<g id="edge1_Node000001_Node000002" class="edge"> <g id="edge1_Node000001_Node000002" class="edge">
<title>Node1&#45;&gt;Node2</title> <title>Node1&#45;&gt;Node2</title>
<g id="a_edge1_Node000001_Node000002"><a xlink:title=" "> <g id="a_edge1_Node000001_Node000002"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M115.13,-410.22C104.32,-371.94 93.25,-307.03 125.66,-266 142.81,-244.28 209.84,-230.94 263.81,-223.51"/> <path fill="none" stroke="#63b8ff" d="M135.63,-487.85C124.68,-449.46 113.46,-384.43 146.31,-343.75 166.23,-319.08 245.79,-305.94 306.46,-299.36"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="111.76,-411.17 117.99,-419.74 118.46,-409.15 111.76,-411.17"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="132.28,-488.86 138.53,-497.41 138.98,-486.83 132.28,-488.86"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node5 --> <!-- Node8 -->
<g id="Node000005" class="node"> <g id="Node000008" class="node">
<title>Node5</title> <title>Node8</title>
<g id="a_Node000005"><a xlink:href="priming_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000008"><a xlink:href="priming_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="154.03,-97 29.28,-97 29.28,-66.5 154.03,-66.5 154.03,-97"/> <polygon fill="white" stroke="#666666" points="152.68,-174.75 27.93,-174.75 27.93,-144.25 152.68,-144.25 152.68,-174.75"/>
<text xml:space="preserve" text-anchor="start" x="37.28" y="-83.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/engine/procedures</text> <text xml:space="preserve" text-anchor="start" x="35.93" y="-161.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/engine/procedures</text>
<text xml:space="preserve" text-anchor="middle" x="91.66" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">/priming.cpp</text> <text xml:space="preserve" text-anchor="middle" x="90.31" y="-150" font-family="Helvetica,sans-Serif" font-size="10.00">/priming.cpp</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node1&#45;&gt;Node5 --> <!-- Node1&#45;&gt;Node8 -->
<g id="edge15_Node000001_Node000005" class="edge"> <g id="edge19_Node000001_Node000008" class="edge">
<title>Node1&#45;&gt;Node5</title> <title>Node1&#45;&gt;Node8</title>
<g id="a_edge15_Node000001_Node000005"><a xlink:title=" "> <g id="a_edge19_Node000001_Node000008"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M107.38,-411.56C90.71,-381.48 68.66,-333.14 68.66,-287.88 68.66,-287.88 68.66,-287.88 68.66,-213.75 68.66,-170.8 80.8,-121.11 87.44,-97.14"/> <path fill="none" stroke="#63b8ff" d="M128.03,-489.31C111.36,-459.23 89.31,-410.89 89.31,-365.62 89.31,-365.62 89.31,-365.62 89.31,-291.5 89.31,-249.2 89.84,-199.21 90.12,-175.04"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="104.26,-413.14 112.26,-420.09 110.33,-409.67 104.26,-413.14"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="124.9,-490.89 132.91,-497.84 130.98,-487.42 124.9,-490.89"/>
</a>
</g>
</g>
<!-- Node9 -->
<g id="Node000009" class="node">
<title>Node9</title>
<g id="a_Node000009"><a xlink:href="solver_2bindings_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="281.03,-24.88 132.28,-24.88 132.28,-5.63 281.03,-5.63 281.03,-24.88"/>
<text xml:space="preserve" text-anchor="middle" x="206.66" y="-11.38" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/solver/bindings.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node9 -->
<g id="edge18_Node000001_Node000009" class="edge">
<title>Node1&#45;&gt;Node9</title>
<g id="a_edge18_Node000001_Node000009"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M84.81,-414.72C48.68,-387.58 1.66,-341.88 1.66,-287.88 1.66,-287.88 1.66,-287.88 1.66,-147.25 1.66,-110.38 -4.98,-92.99 20.66,-66.5 49.39,-36.81 93.69,-24.08 131.85,-18.84"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="82.36,-417.27 92.5,-420.33 86.48,-411.61 82.36,-417.27"/>
</a>
</g>
</g>
<!-- Node10 -->
<g id="Node000010" class="node">
<title>Node10</title>
<g id="a_Node000010"><a xlink:href="engine__partitioning__trigger_8h.html" target="_top" xlink:title="CVODE&#45;specific triggers that decide when to (re)partition the reaction network engine.">
<polygon fill="white" stroke="#666666" points="386.53,-385.5 246.78,-385.5 246.78,-343.75 386.53,-343.75 386.53,-385.5"/>
<text xml:space="preserve" text-anchor="start" x="254.78" y="-372" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="start" x="254.78" y="-360.75" font-family="Helvetica,sans-Serif" font-size="10.00">/solver/strategies/triggers</text>
<text xml:space="preserve" text-anchor="middle" x="316.66" y="-349.5" font-family="Helvetica,sans-Serif" font-size="10.00">/engine_partitioning_trigger.h</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node10 -->
<g id="edge10_Node000001_Node000010" class="edge">
<title>Node1&#45;&gt;Node10</title>
<g id="a_edge10_Node000001_Node000010"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M187.39,-416.89C212.57,-406.91 241.34,-395.5 265.33,-385.98"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="186.26,-413.58 178.25,-420.52 188.84,-420.08 186.26,-413.58"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node12 --> <!-- Node12 -->
<g id="Node000012" class="node"> <g id="Node000012" class="node">
<title>Node12</title> <title>Node12</title>
<g id="a_Node000012"><a xlink:href="_c_v_o_d_e__solver__strategy_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000012"><a xlink:href="solver_2bindings_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="278.78,-302.12 134.53,-302.12 134.53,-271.62 278.78,-271.62 278.78,-302.12"/> <polygon fill="white" stroke="#666666" points="168.68,-97 19.93,-97 19.93,-77.75 168.68,-77.75 168.68,-97"/>
<text xml:space="preserve" text-anchor="start" x="142.53" y="-288.62" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/solver/strategies</text> <text xml:space="preserve" text-anchor="middle" x="94.31" y="-83.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/solver/bindings.cpp</text>
<text xml:space="preserve" text-anchor="middle" x="206.66" y="-277.38" font-family="Helvetica,sans-Serif" font-size="10.00">/CVODE_solver_strategy.cpp</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node1&#45;&gt;Node12 --> <!-- Node1&#45;&gt;Node12 -->
<g id="edge16_Node000001_Node000012" class="edge"> <g id="edge22_Node000001_Node000012" class="edge">
<title>Node1&#45;&gt;Node12</title> <title>Node1&#45;&gt;Node12</title>
<g id="a_edge16_Node000001_Node000012"><a xlink:title=" "> <g id="a_edge22_Node000001_Node000012"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M141.5,-411.36C158.81,-378.55 185.84,-327.33 198.97,-302.44"/> <path fill="none" stroke="#63b8ff" d="M96.39,-493.12C54.1,-467.1 0.31,-422.78 0.31,-365.62 0.31,-365.62 0.31,-365.62 0.31,-225 0.31,-188.13 -0.92,-175.07 19.31,-144.25 33.29,-122.94 58.33,-106.75 75.61,-97.42"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="138.53,-409.49 136.96,-419.97 144.72,-412.76 138.53,-409.49"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="94.34,-495.98 104.73,-498.09 97.93,-489.96 94.34,-495.98"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node13 --> <!-- Node13 -->
<g id="Node000013" class="node"> <g id="Node000013" class="node">
<title>Node13</title> <title>Node13</title>
<g id="a_Node000013"><a xlink:href="engine__partitioning__trigger_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000013"><a xlink:href="engine__partitioning__trigger_8h.html" target="_top" xlink:title="CVODE&#45;specific triggers that decide when to (re)partition the reaction network engine.">
<polygon fill="white" stroke="#666666" points="576.28,-307.75 441.03,-307.75 441.03,-266 576.28,-266 576.28,-307.75"/> <polygon fill="white" stroke="#666666" points="407.18,-463.25 267.43,-463.25 267.43,-421.5 407.18,-421.5 407.18,-463.25"/>
<text xml:space="preserve" text-anchor="start" x="449.03" y="-294.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/solver/strategies</text> <text xml:space="preserve" text-anchor="start" x="275.43" y="-449.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="start" x="449.03" y="-283" font-family="Helvetica,sans-Serif" font-size="10.00">/triggers/engine_partitioning</text> <text xml:space="preserve" text-anchor="start" x="275.43" y="-438.5" font-family="Helvetica,sans-Serif" font-size="10.00">/solver/strategies/triggers</text>
<text xml:space="preserve" text-anchor="middle" x="508.66" y="-271.75" font-family="Helvetica,sans-Serif" font-size="10.00">_trigger.cpp</text> <text xml:space="preserve" text-anchor="middle" x="337.31" y="-427.25" font-family="Helvetica,sans-Serif" font-size="10.00">/engine_partitioning_trigger.h</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node1&#45;&gt;Node13 --> <!-- Node1&#45;&gt;Node13 -->
<g id="edge17_Node000001_Node000013" class="edge"> <g id="edge14_Node000001_Node000013" class="edge">
<title>Node1&#45;&gt;Node13</title> <title>Node1&#45;&gt;Node13</title>
<g id="a_edge17_Node000001_Node000013"><a xlink:title=" "> <g id="a_edge14_Node000001_Node000013"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M202.37,-435.89C258.33,-429.47 334.71,-415.57 395.66,-385.5 434.49,-366.35 470.74,-330.64 491.26,-308.12"/> <path fill="none" stroke="#63b8ff" d="M208.04,-494.64C233.21,-484.66 261.98,-473.25 285.98,-463.73"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="202.18,-432.39 192.61,-436.95 202.93,-439.35 202.18,-432.39"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="206.9,-491.33 198.9,-498.27 209.48,-497.83 206.9,-491.33"/>
</a>
</g>
</g>
<!-- Node15 -->
<g id="Node000015" class="node">
<title>Node15</title>
<g id="a_Node000015"><a xlink:href="_c_v_o_d_e__solver__strategy_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="299.43,-379.88 155.18,-379.88 155.18,-349.38 299.43,-349.38 299.43,-379.88"/>
<text xml:space="preserve" text-anchor="start" x="163.18" y="-366.38" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/solver/strategies</text>
<text xml:space="preserve" text-anchor="middle" x="227.31" y="-355.12" font-family="Helvetica,sans-Serif" font-size="10.00">/CVODE_solver_strategy.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node15 -->
<g id="edge20_Node000001_Node000015" class="edge">
<title>Node1&#45;&gt;Node15</title>
<g id="a_edge20_Node000001_Node000015"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M162.15,-489.11C179.46,-456.3 206.49,-405.08 219.62,-380.19"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="159.17,-487.24 157.6,-497.72 165.37,-490.51 159.17,-487.24"/>
</a>
</g>
</g>
<!-- Node16 -->
<g id="Node000016" class="node">
<title>Node16</title>
<g id="a_Node000016"><a xlink:href="engine__partitioning__trigger_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="596.93,-385.5 461.68,-385.5 461.68,-343.75 596.93,-343.75 596.93,-385.5"/>
<text xml:space="preserve" text-anchor="start" x="469.68" y="-372" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/solver/strategies</text>
<text xml:space="preserve" text-anchor="start" x="469.68" y="-360.75" font-family="Helvetica,sans-Serif" font-size="10.00">/triggers/engine_partitioning</text>
<text xml:space="preserve" text-anchor="middle" x="529.31" y="-349.5" font-family="Helvetica,sans-Serif" font-size="10.00">_trigger.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node16 -->
<g id="edge21_Node000001_Node000016" class="edge">
<title>Node1&#45;&gt;Node16</title>
<g id="a_edge21_Node000001_Node000016"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M223.02,-513.64C278.98,-507.22 355.36,-493.32 416.31,-463.25 455.14,-444.1 491.39,-408.39 511.91,-385.87"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="222.82,-510.14 213.26,-514.7 223.58,-517.1 222.82,-510.14"/>
</a> </a>
</g> </g>
</g> </g>
@@ -138,9 +138,9 @@
<g id="Node000003" class="node"> <g id="Node000003" class="node">
<title>Node3</title> <title>Node3</title>
<g id="a_Node000003"><a xlink:href="solver_8h.html" target="_top" xlink:title=" "> <g id="a_Node000003"><a xlink:href="solver_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="384.41,-163.5 288.91,-163.5 288.91,-133 384.41,-133 384.41,-163.5"/> <polygon fill="white" stroke="#666666" points="427.06,-241.25 331.56,-241.25 331.56,-210.75 427.06,-210.75 427.06,-241.25"/>
<text xml:space="preserve" text-anchor="start" x="296.91" y="-150" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="339.56" y="-227.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="336.66" y="-138.75" font-family="Helvetica,sans-Serif" font-size="10.00">/solver/solver.h</text> <text xml:space="preserve" text-anchor="middle" x="379.31" y="-216.5" font-family="Helvetica,sans-Serif" font-size="10.00">/solver/solver.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -148,8 +148,8 @@
<g id="edge2_Node000002_Node000003" class="edge"> <g id="edge2_Node000002_Node000003" class="edge">
<title>Node2&#45;&gt;Node3</title> <title>Node2&#45;&gt;Node3</title>
<g id="a_edge2_Node000002_Node000003"><a xlink:title=" "> <g id="a_edge2_Node000002_Node000003"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M336.66,-187.81C336.66,-179.64 336.66,-170.91 336.66,-163.83"/> <path fill="none" stroke="#63b8ff" d="M379.31,-265.56C379.31,-257.39 379.31,-248.66 379.31,-241.58"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="333.16,-187.6 336.66,-197.6 340.16,-187.6 333.16,-187.6"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="375.81,-265.35 379.31,-275.35 382.81,-265.35 375.81,-265.35"/>
</a> </a>
</g> </g>
</g> </g>
@@ -157,9 +157,9 @@
<g id="Node000004" class="node"> <g id="Node000004" class="node">
<title>Node4</title> <title>Node4</title>
<g id="a_Node000004"><a xlink:href="gridfire_8h.html" target="_top" xlink:title=" "> <g id="a_Node000004"><a xlink:href="gridfire_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="267.41,-97 171.91,-97 171.91,-66.5 267.41,-66.5 267.41,-97"/> <polygon fill="white" stroke="#666666" points="583.06,-174.75 487.56,-174.75 487.56,-144.25 583.06,-144.25 583.06,-174.75"/>
<text xml:space="preserve" text-anchor="start" x="179.91" y="-83.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="495.56" y="-161.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="219.66" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">/gridfire.h</text> <text xml:space="preserve" text-anchor="middle" x="535.31" y="-150" font-family="Helvetica,sans-Serif" font-size="10.00">/gridfire.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -167,139 +167,206 @@
<g id="edge3_Node000003_Node000004" class="edge"> <g id="edge3_Node000003_Node000004" class="edge">
<title>Node3&#45;&gt;Node4</title> <title>Node3&#45;&gt;Node4</title>
<g id="a_edge3_Node000003_Node000004"><a xlink:title=" "> <g id="a_edge3_Node000003_Node000004"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M300.21,-127.16C282.7,-117.5 262.09,-106.14 246.1,-97.33"/> <path fill="none" stroke="#63b8ff" d="M425.26,-206C449.07,-196.16 477.69,-184.32 499.78,-175.19"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="298.34,-130.12 308.79,-131.88 301.72,-123.99 298.34,-130.12"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="424.01,-202.73 416.1,-209.79 426.68,-209.2 424.01,-202.73"/>
</a>
</g>
</g>
<!-- Node3&#45;&gt;Node5 -->
<g id="edge4_Node000003_Node000005" class="edge">
<title>Node3&#45;&gt;Node5</title>
<g id="a_edge4_Node000003_Node000005"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M277.47,-131.67C237.91,-121.25 186.2,-107.64 147.37,-97.42"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="276.52,-135.04 287.08,-134.2 278.31,-128.27 276.52,-135.04"/>
</a>
</g>
</g>
<!-- Node6 -->
<g id="Node000006" class="node">
<title>Node6</title>
<g id="a_Node000006"><a xlink:href="engine__priming_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="388.16,-97 285.16,-97 285.16,-66.5 388.16,-66.5 388.16,-97"/>
<text xml:space="preserve" text-anchor="start" x="293.16" y="-83.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/engine/views</text>
<text xml:space="preserve" text-anchor="middle" x="336.66" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">/engine_priming.cpp</text>
</a>
</g>
</g>
<!-- Node3&#45;&gt;Node6 -->
<g id="edge5_Node000003_Node000006" class="edge">
<title>Node3&#45;&gt;Node6</title>
<g id="a_edge5_Node000003_Node000006"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M336.66,-121.31C336.66,-113.14 336.66,-104.41 336.66,-97.33"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="333.16,-121.1 336.66,-131.1 340.16,-121.1 333.16,-121.1"/>
</a>
</g>
</g>
<!-- Node7 -->
<g id="Node000007" class="node">
<title>Node7</title>
<g id="a_Node000007"><a xlink:href="py__solver_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="594.16,-30.5 455.16,-30.5 455.16,0 594.16,0 594.16,-30.5"/>
<text xml:space="preserve" text-anchor="start" x="463.16" y="-17" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/solver/trampoline</text>
<text xml:space="preserve" text-anchor="middle" x="524.66" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">/py_solver.cpp</text>
</a>
</g>
</g>
<!-- Node3&#45;&gt;Node7 -->
<g id="edge6_Node000003_Node000007" class="edge">
<title>Node3&#45;&gt;Node7</title>
<g id="a_edge6_Node000003_Node000007"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M395.88,-141.79C453.5,-135.11 535.13,-121.54 554.66,-97 570.49,-77.11 552.07,-48.02 537.9,-30.73"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="395.76,-138.29 386.21,-142.87 396.53,-145.24 395.76,-138.29"/>
</a>
</g>
</g>
<!-- Node8 -->
<g id="Node000008" class="node">
<title>Node8</title>
<g id="a_Node000008"><a xlink:href="py__solver_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="545.16,-97 406.16,-97 406.16,-66.5 545.16,-66.5 545.16,-97"/>
<text xml:space="preserve" text-anchor="start" x="414.16" y="-83.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/solver/trampoline</text>
<text xml:space="preserve" text-anchor="middle" x="475.66" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">/py_solver.h</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node3&#45;&gt;Node8 --> <!-- Node3&#45;&gt;Node8 -->
<g id="edge7_Node000003_Node000008" class="edge"> <g id="edge8_Node000003_Node000008" class="edge">
<title>Node3&#45;&gt;Node8</title> <title>Node3&#45;&gt;Node8</title>
<g id="a_edge7_Node000003_Node000008"><a xlink:title=" "> <g id="a_edge8_Node000003_Node000008"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M378.51,-127.83C399.62,-118.03 424.81,-106.35 444.24,-97.33"/> <path fill="none" stroke="#63b8ff" d="M320.28,-211.83C271.63,-200.97 202.8,-185.61 153.14,-174.52"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="377.17,-124.59 369.57,-131.98 380.12,-130.94 377.17,-124.59"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="319.26,-215.18 329.78,-213.95 320.79,-208.35 319.26,-215.18"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node8&#45;&gt;Node7 --> <!-- Node9 -->
<g id="edge9_Node000008_Node000007" class="edge"> <g id="Node000009" class="node">
<title>Node8&#45;&gt;Node7</title> <title>Node9</title>
<g id="a_edge9_Node000008_Node000007"><a xlink:title=" "> <g id="a_Node000009"><a xlink:href="engine__priming_8cpp.html" target="_top" xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M493.65,-57.07C500.33,-48.28 507.7,-38.57 513.59,-30.83"/> <polygon fill="white" stroke="#666666" points="430.81,-174.75 327.81,-174.75 327.81,-144.25 430.81,-144.25 430.81,-174.75"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="490.96,-54.83 487.69,-64.91 496.53,-59.06 490.96,-54.83"/> <text xml:space="preserve" text-anchor="start" x="335.81" y="-161.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/engine/views</text>
<text xml:space="preserve" text-anchor="middle" x="379.31" y="-150" font-family="Helvetica,sans-Serif" font-size="10.00">/engine_priming.cpp</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node8&#45;&gt;Node9 --> <!-- Node3&#45;&gt;Node9 -->
<g id="edge8_Node000008_Node000009" class="edge"> <g id="edge9_Node000003_Node000009" class="edge">
<title>Node8&#45;&gt;Node9</title> <title>Node3&#45;&gt;Node9</title>
<g id="a_edge8_Node000008_Node000009"><a xlink:title=" "> <g id="a_edge9_Node000003_Node000009"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M403.29,-63.4C352.13,-51.13 285.6,-35.18 244.53,-25.33"/> <path fill="none" stroke="#63b8ff" d="M379.31,-199.06C379.31,-190.89 379.31,-182.16 379.31,-175.08"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="402.27,-66.75 412.81,-65.68 403.9,-59.95 402.27,-66.75"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="375.81,-198.85 379.31,-208.85 382.81,-198.85 375.81,-198.85"/>
</a>
</g>
</g>
<!-- Node10 -->
<g id="Node000010" class="node">
<title>Node10</title>
<g id="a_Node000010"><a xlink:href="py__solver_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="364.81,-102.62 225.81,-102.62 225.81,-72.12 364.81,-72.12 364.81,-102.62"/>
<text xml:space="preserve" text-anchor="start" x="233.81" y="-89.12" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/solver/trampoline</text>
<text xml:space="preserve" text-anchor="middle" x="295.31" y="-77.88" font-family="Helvetica,sans-Serif" font-size="10.00">/py_solver.cpp</text>
</a>
</g>
</g>
<!-- Node3&#45;&gt;Node10 -->
<g id="edge10_Node000003_Node000010" class="edge">
<title>Node3&#45;&gt;Node10</title>
<g id="a_edge10_Node000003_Node000010"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M412.84,-203.75C433.87,-187.69 454.51,-164.94 440.31,-144.25 423.21,-119.34 393.32,-105.53 365.1,-97.88"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="410.89,-200.84 404.82,-209.53 414.98,-206.52 410.89,-200.84"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node11 --> <!-- Node11 -->
<g id="Node000011" class="node"> <g id="Node000011" class="node">
<title>Node11</title> <title>Node11</title>
<g id="a_Node000011"><a xlink:href="triggers_8h.html" target="_top" xlink:title=" "> <g id="a_Node000011"><a xlink:href="py__solver_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="422.78,-307.75 296.53,-307.75 296.53,-266 422.78,-266 422.78,-307.75"/> <polygon fill="white" stroke="#666666" points="309.81,-174.75 170.81,-174.75 170.81,-144.25 309.81,-144.25 309.81,-174.75"/>
<text xml:space="preserve" text-anchor="start" x="304.53" y="-294.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="178.81" y="-161.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/solver/trampoline</text>
<text xml:space="preserve" text-anchor="start" x="304.53" y="-283" font-family="Helvetica,sans-Serif" font-size="10.00">/solver/strategies/triggers</text> <text xml:space="preserve" text-anchor="middle" x="240.31" y="-150" font-family="Helvetica,sans-Serif" font-size="10.00">/py_solver.h</text>
<text xml:space="preserve" text-anchor="middle" x="359.66" y="-271.75" font-family="Helvetica,sans-Serif" font-size="10.00">/triggers.h</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node10&#45;&gt;Node11 --> <!-- Node3&#45;&gt;Node11 -->
<g id="edge11_Node000010_Node000011" class="edge"> <g id="edge11_Node000003_Node000011" class="edge">
<title>Node10&#45;&gt;Node11</title> <title>Node3&#45;&gt;Node11</title>
<g id="a_edge11_Node000010_Node000011"><a xlink:title=" "> <g id="a_edge11_Node000003_Node000011"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M333.82,-333.4C338.62,-324.95 343.72,-315.96 348.1,-308.23"/> <path fill="none" stroke="#63b8ff" d="M337.46,-205.58C316.34,-195.78 291.16,-184.1 271.72,-175.08"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="330.82,-331.58 328.93,-342.01 336.91,-335.04 330.82,-331.58"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="335.85,-208.69 346.39,-209.73 338.8,-202.34 335.85,-208.69"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node10&#45;&gt;Node12 --> <!-- Node5 -->
<g id="edge13_Node000010_Node000012" class="edge"> <g id="Node000005" class="node">
<title>Node10&#45;&gt;Node12</title> <title>Node5</title>
<g id="a_edge13_Node000010_Node000012"><a xlink:title=" "> <g id="a_Node000005"><a xlink:href="gridfire__context_8h.html" target="_top" xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M278.09,-337.06C261.21,-325.44 242.07,-312.26 227.85,-302.46"/> <polygon fill="white" stroke="#666666" points="548.56,-108.25 438.06,-108.25 438.06,-66.5 548.56,-66.5 548.56,-108.25"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="275.71,-339.68 285.94,-342.47 279.68,-333.91 275.71,-339.68"/> <text xml:space="preserve" text-anchor="start" x="446.06" y="-94.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/extern/include</text>
<text xml:space="preserve" text-anchor="start" x="446.06" y="-83.5" font-family="Helvetica,sans-Serif" font-size="10.00">/gridfire/extern/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="493.31" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">_context.h</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node10&#45;&gt;Node13 --> <!-- Node4&#45;&gt;Node5 -->
<g id="edge14_Node000010_Node000013" class="edge"> <g id="edge4_Node000004_Node000005" class="edge">
<title>Node10&#45;&gt;Node13</title> <title>Node4&#45;&gt;Node5</title>
<g id="a_edge14_Node000010_Node000013"><a xlink:title=" "> <g id="a_edge4_Node000004_Node000005"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M378.71,-339.14C404.02,-329.16 432.94,-317.75 457.07,-308.23"/> <path fill="none" stroke="#63b8ff" d="M520.7,-134.11C515.74,-125.83 510.25,-116.67 505.5,-108.74"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="377.54,-335.84 369.52,-342.77 380.11,-342.36 377.54,-335.84"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="517.69,-135.89 525.83,-142.67 523.69,-132.29 517.69,-135.89"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node11&#45;&gt;Node2 --> <!-- Node7 -->
<g id="edge12_Node000011_Node000002" class="edge"> <g id="Node000007" class="node">
<title>Node11&#45;&gt;Node2</title> <title>Node7</title>
<g id="a_edge12_Node000011_Node000002"><a xlink:title=" "> <g id="a_Node000007"><a xlink:href="gridfire__extern_8cpp.html" target="_top" xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M349.44,-254.71C346.64,-246.17 343.73,-237.31 341.4,-230.2"/> <polygon fill="white" stroke="#666666" points="628.56,-30.5 524.06,-30.5 524.06,0 628.56,0 628.56,-30.5"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="346.09,-255.74 352.54,-264.15 352.74,-253.56 346.09,-255.74"/> <text xml:space="preserve" text-anchor="start" x="532.06" y="-17" font-family="Helvetica,sans-Serif" font-size="10.00">src/extern/lib/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="576.31" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">_extern.cpp</text>
</a>
</g>
</g>
<!-- Node4&#45;&gt;Node7 -->
<g id="edge7_Node000004_Node000007" class="edge">
<title>Node4&#45;&gt;Node7</title>
<g id="a_edge7_Node000004_Node000007"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M547.5,-133.45C551.03,-125.52 554.64,-116.64 557.31,-108.25 565.82,-81.52 571.47,-49.18 574.26,-30.83"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="544.34,-131.94 543.32,-142.49 550.7,-134.88 544.34,-131.94"/>
</a>
</g>
</g>
<!-- Node6 -->
<g id="Node000006" class="node">
<title>Node6</title>
<g id="a_Node000006"><a xlink:href="gridfire__context_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="505.56,-30.5 401.06,-30.5 401.06,0 505.56,0 505.56,-30.5"/>
<text xml:space="preserve" text-anchor="start" x="409.06" y="-17" font-family="Helvetica,sans-Serif" font-size="10.00">src/extern/lib/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="453.31" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">_context.cpp</text>
</a>
</g>
</g>
<!-- Node5&#45;&gt;Node6 -->
<g id="edge5_Node000005_Node000006" class="edge">
<title>Node5&#45;&gt;Node6</title>
<g id="a_edge5_Node000005_Node000006"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M476.19,-56.36C471.11,-47.47 465.79,-38.13 461.55,-30.7"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="472.99,-57.83 480.99,-64.78 479.07,-54.36 472.99,-57.83"/>
</a>
</g>
</g>
<!-- Node5&#45;&gt;Node7 -->
<g id="edge6_Node000005_Node000007" class="edge">
<title>Node5&#45;&gt;Node7</title>
<g id="a_edge6_Node000005_Node000007"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M526.06,-58.7C537.29,-49.21 549.42,-38.97 558.94,-30.92"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="523.85,-55.99 518.47,-65.12 528.37,-61.33 523.85,-55.99"/>
</a>
</g>
</g>
<!-- Node11&#45;&gt;Node10 -->
<g id="edge13_Node000011_Node000010" class="edge">
<title>Node11&#45;&gt;Node10</title>
<g id="a_edge13_Node000011_Node000010"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M258.63,-135.14C266.99,-124.48 276.63,-112.19 283.93,-102.89"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="256.05,-132.75 252.64,-142.78 261.56,-137.07 256.05,-132.75"/>
</a>
</g>
</g>
<!-- Node11&#45;&gt;Node12 -->
<g id="edge12_Node000011_Node000012" class="edge">
<title>Node11&#45;&gt;Node12</title>
<g id="a_edge12_Node000011_Node000012"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M199.33,-138.82C171.13,-125.27 134.98,-107.91 113.28,-97.49"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="197.81,-141.97 208.34,-143.14 200.84,-135.66 197.81,-141.97"/>
</a>
</g>
</g>
<!-- Node14 -->
<g id="Node000014" class="node">
<title>Node14</title>
<g id="a_Node000014"><a xlink:href="triggers_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="443.43,-385.5 317.18,-385.5 317.18,-343.75 443.43,-343.75 443.43,-385.5"/>
<text xml:space="preserve" text-anchor="start" x="325.18" y="-372" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="start" x="325.18" y="-360.75" font-family="Helvetica,sans-Serif" font-size="10.00">/solver/strategies/triggers</text>
<text xml:space="preserve" text-anchor="middle" x="380.31" y="-349.5" font-family="Helvetica,sans-Serif" font-size="10.00">/triggers.h</text>
</a>
</g>
</g>
<!-- Node13&#45;&gt;Node14 -->
<g id="edge15_Node000013_Node000014" class="edge">
<title>Node13&#45;&gt;Node14</title>
<g id="a_edge15_Node000013_Node000014"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M354.47,-411.15C359.26,-402.7 364.36,-393.71 368.75,-385.98"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="351.47,-409.33 349.58,-419.76 357.56,-412.79 351.47,-409.33"/>
</a>
</g>
</g>
<!-- Node13&#45;&gt;Node15 -->
<g id="edge17_Node000013_Node000015" class="edge">
<title>Node13&#45;&gt;Node15</title>
<g id="a_edge17_Node000013_Node000015"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M298.73,-414.81C281.86,-403.19 262.71,-390.01 248.49,-380.21"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="296.36,-417.43 306.58,-420.22 300.33,-411.66 296.36,-417.43"/>
</a>
</g>
</g>
<!-- Node13&#45;&gt;Node16 -->
<g id="edge18_Node000013_Node000016" class="edge">
<title>Node13&#45;&gt;Node16</title>
<g id="a_edge18_Node000013_Node000016"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M399.36,-416.89C424.67,-406.91 453.59,-395.5 477.71,-385.98"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="398.19,-413.59 390.17,-420.52 400.75,-420.11 398.19,-413.59"/>
</a>
</g>
</g>
<!-- Node14&#45;&gt;Node2 -->
<g id="edge16_Node000014_Node000002" class="edge">
<title>Node14&#45;&gt;Node2</title>
<g id="a_edge16_Node000014_Node000002"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M379.85,-331.88C379.74,-323.52 379.61,-314.9 379.51,-307.95"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="376.35,-331.88 380,-341.83 383.35,-331.78 376.35,-331.88"/>
</a> </a>
</g> </g>
</g> </g>

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 20 KiB

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>
@@ -217,6 +217,7 @@ $(function(){initNavTree('annotated.html',''); initResizable(true); });
<tr id="row_0_7_2_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classgridfire_1_1reaction_1_1_reaclib_reaction.html" target="_self">ReaclibReaction</a></td><td class="desc"></td></tr> <tr id="row_0_7_2_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classgridfire_1_1reaction_1_1_reaclib_reaction.html" target="_self">ReaclibReaction</a></td><td class="desc"></td></tr>
<tr id="row_0_7_3_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classgridfire_1_1reaction_1_1_reaction.html" target="_self">Reaction</a></td><td class="desc">Represents a single nuclear reaction from a specific data source </td></tr> <tr id="row_0_7_3_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classgridfire_1_1reaction_1_1_reaction.html" target="_self">Reaction</a></td><td class="desc">Represents a single nuclear reaction from a specific data source </td></tr>
<tr id="row_0_7_4_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classgridfire_1_1reaction_1_1_reaction_set.html" target="_self">ReactionSet</a></td><td class="desc"></td></tr> <tr id="row_0_7_4_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classgridfire_1_1reaction_1_1_reaction_set.html" target="_self">ReactionSet</a></td><td class="desc"></td></tr>
<tr id="row_0_7_5_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classgridfire_1_1reaction_1_1_weak_reaclib_reaction.html" target="_self">WeakReaclibReaction</a></td><td class="desc"></td></tr>
<tr id="row_0_8_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_0_8_" class="arrow" onclick="dynsection.toggleFolder('0_8_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespacegridfire_1_1screening.html" target="_self">screening</a></td><td class="desc"></td></tr> <tr id="row_0_8_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_0_8_" class="arrow" onclick="dynsection.toggleFolder('0_8_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespacegridfire_1_1screening.html" target="_self">screening</a></td><td class="desc"></td></tr>
<tr id="row_0_8_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classgridfire_1_1screening_1_1_bare_screening_model.html" target="_self">BareScreeningModel</a></td><td class="desc">A screening model that applies no screening effect </td></tr> <tr id="row_0_8_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classgridfire_1_1screening_1_1_bare_screening_model.html" target="_self">BareScreeningModel</a></td><td class="desc">A screening model that applies no screening effect </td></tr>
<tr id="row_0_8_1_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classgridfire_1_1screening_1_1_intermediate_screening_model.html" target="_self">IntermediateScreeningModel</a></td><td class="desc"></td></tr> <tr id="row_0_8_1_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classgridfire_1_1screening_1_1_intermediate_screening_model.html" target="_self">IntermediateScreeningModel</a></td><td class="desc"></td></tr>
@@ -250,23 +251,33 @@ $(function(){initNavTree('annotated.html',''); initResizable(true); });
<tr id="row_0_11_3_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classgridfire_1_1utils_1_1_table_base.html" target="_self">TableBase</a></td><td class="desc"></td></tr> <tr id="row_0_11_3_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classgridfire_1_1utils_1_1_table_base.html" target="_self">TableBase</a></td><td class="desc"></td></tr>
<tr id="row_0_12_" class="odd"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structgridfire_1_1_net_in.html" target="_self">NetIn</a></td><td class="desc"></td></tr> <tr id="row_0_12_" class="odd"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structgridfire_1_1_net_in.html" target="_self">NetIn</a></td><td class="desc"></td></tr>
<tr id="row_0_13_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structgridfire_1_1_net_out.html" target="_self">NetOut</a></td><td class="desc"></td></tr> <tr id="row_0_13_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structgridfire_1_1_net_out.html" target="_self">NetOut</a></td><td class="desc"></td></tr>
<tr id="row_1_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;">&#160;</span><span id="arr_1_" class="arrow" onclick="dynsection.toggleFolder('1_')">&#9660;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespacestd.html" target="_self">std</a></td><td class="desc">STL namespace </td></tr> <tr id="row_1_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;">&#160;</span><span id="arr_1_" class="arrow" onclick="dynsection.toggleFolder('1_')">&#9660;</span><span class="icona"><span class="icon">M</span></span><a class="el" href="namespacegridfire__mod.html" target="_self">gridfire_mod</a></td><td class="desc"></td></tr>
<tr id="row_1_0_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structstd_1_1formatter_3_01gridfire_1_1engine_1_1_network_jacobian_01_4.html" target="_self">formatter&lt; gridfire::engine::NetworkJacobian &gt;</a></td><td class="desc"></td></tr> <tr id="row_1_0_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="interfacegridfire__mod_1_1gf__construct__engine__from__policy.html" target="_self">gf_construct_engine_from_policy</a></td><td class="desc"></td></tr>
<tr id="row_1_1_" class="odd"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structstd_1_1hash_3_01gridfire_1_1rates_1_1weak_1_1_table_axes_01_4.html" target="_self">hash&lt; gridfire::rates::weak::TableAxes &gt;</a></td><td class="desc"></td></tr> <tr id="row_1_1_" class="odd"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="interfacegridfire__mod_1_1gf__construct__solver__from__engine.html" target="_self">gf_construct_solver_from_engine</a></td><td class="desc"></td></tr>
<tr id="row_1_2_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structstd_1_1hash_3_01gridfire_1_1reaction_1_1_reaction_01_4.html" target="_self">hash&lt; gridfire::reaction::Reaction &gt;</a></td><td class="desc"></td></tr> <tr id="row_1_2_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="interfacegridfire__mod_1_1gf__evolve.html" target="_self">gf_evolve</a></td><td class="desc"></td></tr>
<tr id="row_1_3_" class="odd"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structstd_1_1hash_3_01gridfire_1_1reaction_1_1_reaction_set_01_4.html" target="_self">hash&lt; gridfire::reaction::ReactionSet &gt;</a></td><td class="desc"></td></tr> <tr id="row_1_3_" class="odd"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="interfacegridfire__mod_1_1gf__free.html" target="_self">gf_free</a></td><td class="desc"></td></tr>
<tr id="row_2_" class="even"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_py_dynamic_engine.html" target="_self">PyDynamicEngine</a></td><td class="desc"></td></tr> <tr id="row_1_4_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="interfacegridfire__mod_1_1gf__get__last__error__message.html" target="_self">gf_get_last_error_message</a></td><td class="desc"></td></tr>
<tr id="row_3_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_py_dynamic_engine_view.html" target="_self">PyDynamicEngineView</a></td><td class="desc"></td></tr> <tr id="row_1_5_" class="odd"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="interfacegridfire__mod_1_1gf__init.html" target="_self">gf_init</a></td><td class="desc"></td></tr>
<tr id="row_4_" class="even"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_py_dynamic_network_solver_strategy.html" target="_self">PyDynamicNetworkSolverStrategy</a></td><td class="desc"></td></tr> <tr id="row_1_6_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="interfacegridfire__mod_1_1gf__register__species.html" target="_self">gf_register_species</a></td><td class="desc"></td></tr>
<tr id="row_5_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_py_engine.html" target="_self">PyEngine</a></td><td class="desc"></td></tr> <tr id="row_1_7_" class="odd"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structgridfire__mod_1_1gridfire.html" target="_self">gridfire</a></td><td class="desc"></td></tr>
<tr id="row_6_" class="even"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_py_engine_view.html" target="_self">PyEngineView</a></td><td class="desc"></td></tr> <tr id="row_2_" class="even"><td class="entry"><span style="width:0px;display:inline-block;">&#160;</span><span id="arr_2_" class="arrow" onclick="dynsection.toggleFolder('2_')">&#9660;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespacestd.html" target="_self">std</a></td><td class="desc">STL namespace </td></tr>
<tr id="row_7_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_py_network_file_parser.html" target="_self">PyNetworkFileParser</a></td><td class="desc"></td></tr> <tr id="row_2_0_" class="odd"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structstd_1_1formatter_3_01gridfire_1_1engine_1_1_network_jacobian_01_4.html" target="_self">formatter&lt; gridfire::engine::NetworkJacobian &gt;</a></td><td class="desc"></td></tr>
<tr id="row_8_" class="even"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_py_network_policy.html" target="_self">PyNetworkPolicy</a></td><td class="desc"></td></tr> <tr id="row_2_1_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structstd_1_1hash_3_01gridfire_1_1rates_1_1weak_1_1_table_axes_01_4.html" target="_self">hash&lt; gridfire::rates::weak::TableAxes &gt;</a></td><td class="desc"></td></tr>
<tr id="row_9_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_py_partition_function.html" target="_self">PyPartitionFunction</a></td><td class="desc"></td></tr> <tr id="row_2_2_" class="odd"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structstd_1_1hash_3_01gridfire_1_1reaction_1_1_reaction_01_4.html" target="_self">hash&lt; gridfire::reaction::Reaction &gt;</a></td><td class="desc"></td></tr>
<tr id="row_10_" class="even"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_py_reaction_chain_policy.html" target="_self">PyReactionChainPolicy</a></td><td class="desc"></td></tr> <tr id="row_2_3_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structstd_1_1hash_3_01gridfire_1_1reaction_1_1_reaction_set_01_4.html" target="_self">hash&lt; gridfire::reaction::ReactionSet &gt;</a></td><td class="desc"></td></tr>
<tr id="row_11_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_py_screening.html" target="_self">PyScreening</a></td><td class="desc"></td></tr> <tr id="row_3_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="struct_grid_fire_context.html" target="_self">GridFireContext</a></td><td class="desc"></td></tr>
<tr id="row_12_" class="even"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_py_solver_context_base.html" target="_self">PySolverContextBase</a></td><td class="desc"></td></tr> <tr id="row_4_" class="even"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_py_dynamic_engine.html" target="_self">PyDynamicEngine</a></td><td class="desc"></td></tr>
<tr id="row_13_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_solver_plugin_interface.html" target="_self">SolverPluginInterface</a></td><td class="desc"></td></tr> <tr id="row_5_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_py_dynamic_engine_view.html" target="_self">PyDynamicEngineView</a></td><td class="desc"></td></tr>
<tr id="row_6_" class="even"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_py_dynamic_network_solver_strategy.html" target="_self">PyDynamicNetworkSolverStrategy</a></td><td class="desc"></td></tr>
<tr id="row_7_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_py_engine.html" target="_self">PyEngine</a></td><td class="desc"></td></tr>
<tr id="row_8_" class="even"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_py_engine_view.html" target="_self">PyEngineView</a></td><td class="desc"></td></tr>
<tr id="row_9_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_py_network_file_parser.html" target="_self">PyNetworkFileParser</a></td><td class="desc"></td></tr>
<tr id="row_10_" class="even"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_py_network_policy.html" target="_self">PyNetworkPolicy</a></td><td class="desc"></td></tr>
<tr id="row_11_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_py_partition_function.html" target="_self">PyPartitionFunction</a></td><td class="desc"></td></tr>
<tr id="row_12_" class="even"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_py_reaction_chain_policy.html" target="_self">PyReactionChainPolicy</a></td><td class="desc"></td></tr>
<tr id="row_13_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_py_screening.html" target="_self">PyScreening</a></td><td class="desc"></td></tr>
<tr id="row_14_" class="even"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_py_solver_context_base.html" target="_self">PySolverContextBase</a></td><td class="desc"></td></tr>
<tr id="row_15_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="class_solver_plugin_interface.html" target="_self">SolverPluginInterface</a></td><td class="desc"></td></tr>
</table> </table>
</div><!-- directory --> </div><!-- directory -->
</div><!-- contents --> </div><!-- contents -->

View File

@@ -108,7 +108,8 @@ var annotated_dup =
[ "RateCoefficientSet", "structgridfire_1_1reaction_1_1_rate_coefficient_set.html", "structgridfire_1_1reaction_1_1_rate_coefficient_set" ], [ "RateCoefficientSet", "structgridfire_1_1reaction_1_1_rate_coefficient_set.html", "structgridfire_1_1reaction_1_1_rate_coefficient_set" ],
[ "ReaclibReaction", "classgridfire_1_1reaction_1_1_reaclib_reaction.html", "classgridfire_1_1reaction_1_1_reaclib_reaction" ], [ "ReaclibReaction", "classgridfire_1_1reaction_1_1_reaclib_reaction.html", "classgridfire_1_1reaction_1_1_reaclib_reaction" ],
[ "Reaction", "classgridfire_1_1reaction_1_1_reaction.html", "classgridfire_1_1reaction_1_1_reaction" ], [ "Reaction", "classgridfire_1_1reaction_1_1_reaction.html", "classgridfire_1_1reaction_1_1_reaction" ],
[ "ReactionSet", "classgridfire_1_1reaction_1_1_reaction_set.html", "classgridfire_1_1reaction_1_1_reaction_set" ] [ "ReactionSet", "classgridfire_1_1reaction_1_1_reaction_set.html", "classgridfire_1_1reaction_1_1_reaction_set" ],
[ "WeakReaclibReaction", "classgridfire_1_1reaction_1_1_weak_reaclib_reaction.html", "classgridfire_1_1reaction_1_1_weak_reaclib_reaction" ]
] ], ] ],
[ "screening", "namespacegridfire_1_1screening.html", [ [ "screening", "namespacegridfire_1_1screening.html", [
[ "BareScreeningModel", "classgridfire_1_1screening_1_1_bare_screening_model.html", "classgridfire_1_1screening_1_1_bare_screening_model" ], [ "BareScreeningModel", "classgridfire_1_1screening_1_1_bare_screening_model.html", "classgridfire_1_1screening_1_1_bare_screening_model" ],
@@ -147,12 +148,23 @@ var annotated_dup =
[ "NetIn", "structgridfire_1_1_net_in.html", "structgridfire_1_1_net_in" ], [ "NetIn", "structgridfire_1_1_net_in.html", "structgridfire_1_1_net_in" ],
[ "NetOut", "structgridfire_1_1_net_out.html", "structgridfire_1_1_net_out" ] [ "NetOut", "structgridfire_1_1_net_out.html", "structgridfire_1_1_net_out" ]
] ], ] ],
[ "gridfire_mod", "namespacegridfire__mod.html", [
[ "gf_construct_engine_from_policy", "interfacegridfire__mod_1_1gf__construct__engine__from__policy.html", "interfacegridfire__mod_1_1gf__construct__engine__from__policy" ],
[ "gf_construct_solver_from_engine", "interfacegridfire__mod_1_1gf__construct__solver__from__engine.html", "interfacegridfire__mod_1_1gf__construct__solver__from__engine" ],
[ "gf_evolve", "interfacegridfire__mod_1_1gf__evolve.html", "interfacegridfire__mod_1_1gf__evolve" ],
[ "gf_free", "interfacegridfire__mod_1_1gf__free.html", "interfacegridfire__mod_1_1gf__free" ],
[ "gf_get_last_error_message", "interfacegridfire__mod_1_1gf__get__last__error__message.html", "interfacegridfire__mod_1_1gf__get__last__error__message" ],
[ "gf_init", "interfacegridfire__mod_1_1gf__init.html", "interfacegridfire__mod_1_1gf__init" ],
[ "gf_register_species", "interfacegridfire__mod_1_1gf__register__species.html", "interfacegridfire__mod_1_1gf__register__species" ],
[ "gridfire", "structgridfire__mod_1_1gridfire.html", "structgridfire__mod_1_1gridfire" ]
] ],
[ "std", "namespacestd.html", [ [ "std", "namespacestd.html", [
[ "formatter< gridfire::engine::NetworkJacobian >", "structstd_1_1formatter_3_01gridfire_1_1engine_1_1_network_jacobian_01_4.html", "structstd_1_1formatter_3_01gridfire_1_1engine_1_1_network_jacobian_01_4" ], [ "formatter< gridfire::engine::NetworkJacobian >", "structstd_1_1formatter_3_01gridfire_1_1engine_1_1_network_jacobian_01_4.html", "structstd_1_1formatter_3_01gridfire_1_1engine_1_1_network_jacobian_01_4" ],
[ "hash< gridfire::rates::weak::TableAxes >", "structstd_1_1hash_3_01gridfire_1_1rates_1_1weak_1_1_table_axes_01_4.html", "structstd_1_1hash_3_01gridfire_1_1rates_1_1weak_1_1_table_axes_01_4" ], [ "hash< gridfire::rates::weak::TableAxes >", "structstd_1_1hash_3_01gridfire_1_1rates_1_1weak_1_1_table_axes_01_4.html", "structstd_1_1hash_3_01gridfire_1_1rates_1_1weak_1_1_table_axes_01_4" ],
[ "hash< gridfire::reaction::Reaction >", "structstd_1_1hash_3_01gridfire_1_1reaction_1_1_reaction_01_4.html", "structstd_1_1hash_3_01gridfire_1_1reaction_1_1_reaction_01_4" ], [ "hash< gridfire::reaction::Reaction >", "structstd_1_1hash_3_01gridfire_1_1reaction_1_1_reaction_01_4.html", "structstd_1_1hash_3_01gridfire_1_1reaction_1_1_reaction_01_4" ],
[ "hash< gridfire::reaction::ReactionSet >", "structstd_1_1hash_3_01gridfire_1_1reaction_1_1_reaction_set_01_4.html", "structstd_1_1hash_3_01gridfire_1_1reaction_1_1_reaction_set_01_4" ] [ "hash< gridfire::reaction::ReactionSet >", "structstd_1_1hash_3_01gridfire_1_1reaction_1_1_reaction_set_01_4.html", "structstd_1_1hash_3_01gridfire_1_1reaction_1_1_reaction_set_01_4" ]
] ], ] ],
[ "GridFireContext", "struct_grid_fire_context.html", "struct_grid_fire_context" ],
[ "PyDynamicEngine", "class_py_dynamic_engine.html", "class_py_dynamic_engine" ], [ "PyDynamicEngine", "class_py_dynamic_engine.html", "class_py_dynamic_engine" ],
[ "PyDynamicEngineView", "class_py_dynamic_engine_view.html", "class_py_dynamic_engine_view" ], [ "PyDynamicEngineView", "class_py_dynamic_engine_view.html", "class_py_dynamic_engine_view" ],
[ "PyDynamicNetworkSolverStrategy", "class_py_dynamic_network_solver_strategy.html", "class_py_dynamic_network_solver_strategy" ], [ "PyDynamicNetworkSolverStrategy", "class_py_dynamic_network_solver_strategy.html", "class_py_dynamic_network_solver_strategy" ],

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -2,154 +2,154 @@
<area shape="rect" id="Node000001" title="Defines types related to building reaction networks in the GridFire engine." alt="" coords="1695,5,1853,46"/> <area shape="rect" id="Node000001" title="Defines types related to building reaction networks in the GridFire engine." alt="" coords="1695,5,1853,46"/>
<area shape="rect" id="Node000002" href="$engine__abstract_8h.html" title="Abstract interfaces for reaction network engines in GridFire." alt="" coords="1537,94,1707,135"/> <area shape="rect" id="Node000002" href="$engine__abstract_8h.html" title="Abstract interfaces for reaction network engines in GridFire." alt="" coords="1537,94,1707,135"/>
<area shape="poly" id="edge1_Node000001_Node000002" title=" " alt="" coords="1728,56,1657,96,1655,91,1725,51"/> <area shape="poly" id="edge1_Node000001_Node000002" title=" " alt="" coords="1728,56,1657,96,1655,91,1725,51"/>
<area shape="rect" id="Node000063" href="$construction_8h.html" title="Functions for constructing nuclear reaction networks." alt="" coords="1862,294,2080,334"/> <area shape="rect" id="Node000066" href="$construction_8h.html" title="Functions for constructing nuclear reaction networks." alt="" coords="1862,294,2080,334"/>
<area shape="poly" id="edge98_Node000001_Node000063" title=" " alt="" coords="1798,57,1960,292,1956,295,1794,60"/> <area shape="poly" id="edge98_Node000001_Node000066" title=" " alt="" coords="1798,57,1960,292,1956,295,1794,60"/>
<area shape="rect" id="Node000003" href="$dynamic__engine__diagnostics_8h.html" title="Diagnostics utilities for DynamicEngine instances." alt="" coords="2119,183,2306,238"/> <area shape="rect" id="Node000003" href="$dynamic__engine__diagnostics_8h.html" title="Diagnostics utilities for DynamicEngine instances." alt="" coords="2119,183,2306,238"/>
<area shape="poly" id="edge2_Node000002_Node000003" title=" " alt="" coords="1722,129,2119,192,2118,197,1721,134"/> <area shape="poly" id="edge2_Node000002_Node000003" title=" " alt="" coords="1722,129,2119,192,2118,197,1721,134"/>
<area shape="rect" id="Node000004" href="$engine_8h.html" title="Core header for the GridFire reaction network engine module." alt="" coords="1735,805,1863,845"/> <area shape="rect" id="Node000004" href="$engine_8h.html" title="Core header for the GridFire reaction network engine module." alt="" coords="1735,805,1863,845"/>
<area shape="poly" id="edge13_Node000002_Node000004" title=" " alt="" coords="1723,115,1959,122,2257,135,2548,154,2668,166,2759,180,2823,188,2886,191,3003,194,3051,203,3072,212,3089,223,3104,239,3114,259,3121,283,3123,313,3123,626,3126,638,3134,647,3161,658,3188,664,3203,670,3185,679,3125,693,2817,759,2731,773,2618,786,2344,805,2068,818,1863,825,1863,819,2068,812,2344,800,2617,780,2731,768,2816,754,3124,688,3183,674,3197,670,3186,669,3159,663,3131,651,3121,641,3118,627,3118,313,3116,284,3109,261,3099,242,3086,227,3069,216,3049,208,3002,199,2886,196,2822,194,2759,185,2668,171,2548,159,2257,140,1958,128,1723,121"/> <area shape="poly" id="edge13_Node000002_Node000004" title=" " alt="" coords="1723,115,1959,122,2257,135,2548,154,2668,166,2759,180,2823,188,2886,191,3003,194,3051,203,3072,212,3089,223,3104,239,3114,259,3121,283,3123,313,3123,626,3126,638,3134,647,3161,658,3188,664,3203,670,3185,679,3125,693,2817,759,2731,773,2618,786,2344,805,2068,818,1863,825,1863,819,2068,812,2344,800,2617,780,2731,768,2816,754,3124,688,3183,674,3197,670,3186,669,3159,663,3131,651,3121,641,3118,627,3118,313,3116,284,3109,261,3099,242,3086,227,3069,216,3049,208,3002,199,2886,196,2822,194,2759,185,2668,171,2548,159,2257,140,1958,128,1723,121"/>
<area shape="rect" id="Node000010" href="$dynamic__engine__diagnostics_8cpp.html" title=" " alt="" coords="2104,294,2321,334"/> <area shape="rect" id="Node000013" href="$dynamic__engine__diagnostics_8cpp.html" title=" " alt="" coords="2104,294,2321,334"/>
<area shape="poly" id="edge93_Node000002_Node000010" title=" " alt="" coords="1704,137,1844,180,2160,291,2159,296,1842,185,1703,142"/> <area shape="poly" id="edge93_Node000002_Node000013" title=" " alt="" coords="1704,137,1844,180,2160,291,2159,296,1842,185,1703,142"/>
<area shape="rect" id="Node000012" href="$engine__graph_8h.html" title=" " alt="" coords="1632,398,1787,438"/> <area shape="rect" id="Node000015" href="$engine__graph_8h.html" title=" " alt="" coords="1632,398,1787,438"/>
<area shape="poly" id="edge14_Node000002_Node000012" title=" " alt="" coords="1699,140,1724,158,1744,181,1756,210,1761,240,1761,271,1757,301,1740,357,1722,398,1718,396,1735,355,1752,300,1756,270,1756,240,1751,211,1739,184,1721,162,1696,144"/> <area shape="poly" id="edge14_Node000002_Node000015" title=" " alt="" coords="1699,140,1724,158,1744,181,1756,210,1761,240,1761,271,1757,301,1740,357,1722,398,1718,396,1735,355,1752,300,1756,270,1756,240,1751,211,1739,184,1721,162,1696,144"/>
<area shape="rect" id="Node000013" href="$priming_8h.html" title=" " alt="" coords="1788,501,1976,542"/> <area shape="rect" id="Node000016" href="$priming_8h.html" title=" " alt="" coords="1788,501,1976,542"/>
<area shape="poly" id="edge37_Node000002_Node000013" title=" " alt="" coords="1710,139,1742,157,1770,181,1796,214,1812,245,1821,275,1826,305,1833,369,1840,405,1852,445,1875,500,1870,502,1847,447,1835,406,1828,369,1821,306,1816,277,1807,247,1791,217,1766,184,1739,161,1707,143"/> <area shape="poly" id="edge37_Node000002_Node000016" title=" " alt="" coords="1710,139,1742,157,1770,181,1796,214,1812,245,1821,275,1826,305,1833,369,1840,405,1852,445,1875,500,1870,502,1847,447,1835,406,1828,369,1821,306,1816,277,1807,247,1791,217,1766,184,1739,161,1707,143"/>
<area shape="rect" id="Node000016" href="$priming_8cpp.html" title=" " alt="" coords="1901,708,2068,749"/> <area shape="rect" id="Node000019" href="$priming_8cpp.html" title=" " alt="" coords="1901,708,2068,749"/>
<area shape="poly" id="edge94_Node000002_Node000016" title=" " alt="" coords="1723,117,2061,134,2274,149,2492,169,2694,195,2862,227,2928,245,2978,265,3010,287,3019,300,3022,313,3022,523,3020,541,3013,558,2990,589,2954,616,2906,639,2849,659,2784,676,2636,701,2478,718,2321,727,2068,731,2068,726,2321,722,2477,712,2636,696,2783,671,2847,654,2904,634,2951,611,2986,585,3009,556,3014,540,3016,523,3016,313,3014,302,3006,291,2975,270,2926,250,2861,232,2693,200,2491,174,2274,154,2061,139,1723,122"/> <area shape="poly" id="edge94_Node000002_Node000019" title=" " alt="" coords="1723,117,2061,134,2274,149,2492,169,2694,195,2862,227,2928,245,2978,265,3010,287,3019,300,3022,313,3022,523,3020,541,3013,558,2990,589,2954,616,2906,639,2849,659,2784,676,2636,701,2478,718,2321,727,2068,731,2068,726,2321,722,2477,712,2636,696,2783,671,2847,654,2904,634,2951,611,2986,585,3009,556,3014,540,3016,523,3016,313,3014,302,3006,291,2975,270,2926,250,2861,232,2693,200,2491,174,2274,154,2061,139,1723,122"/>
<area shape="rect" id="Node000018" href="$engine__defined_8h.html" title=" " alt="" coords="1435,494,1579,549"/> <area shape="rect" id="Node000021" href="$engine__defined_8h.html" title=" " alt="" coords="1435,494,1579,549"/>
<area shape="poly" id="edge41_Node000002_Node000018" title=" " alt="" coords="1641,148,1652,182,1659,228,1657,264,1648,300,1631,343,1609,387,1583,429,1533,495,1528,492,1578,426,1604,384,1626,341,1643,298,1652,264,1654,228,1647,183,1636,150"/> <area shape="poly" id="edge41_Node000002_Node000021" title=" " alt="" coords="1641,148,1652,182,1659,228,1657,264,1648,300,1631,343,1609,387,1583,429,1533,495,1528,492,1578,426,1604,384,1626,341,1643,298,1652,264,1654,228,1647,183,1636,150"/>
<area shape="rect" id="Node000021" href="$stellar__policy_8cpp.html" title=" " alt="" coords="752,805,886,845"/> <area shape="rect" id="Node000024" href="$stellar__policy_8cpp.html" title=" " alt="" coords="752,805,886,845"/>
<area shape="poly" id="edge96_Node000002_Node000021" title=" " alt="" coords="1521,122,1346,129,1143,142,967,160,907,172,873,185,844,212,829,239,823,272,822,313,822,626,822,804,816,804,816,626,816,313,818,271,824,237,840,208,870,180,905,167,967,155,1143,136,1345,124,1521,116"/> <area shape="poly" id="edge96_Node000002_Node000024" title=" " alt="" coords="1521,122,1346,129,1143,142,967,160,907,172,873,185,844,212,829,239,823,272,822,313,822,626,822,804,816,804,816,626,816,313,818,271,824,237,840,208,870,180,905,167,967,155,1143,136,1345,124,1521,116"/>
<area shape="rect" id="Node000024" href="$engine__multiscale_8h.html" title=" " alt="" coords="977,494,1120,549"/> <area shape="rect" id="Node000027" href="$engine__multiscale_8h.html" title=" " alt="" coords="977,494,1120,549"/>
<area shape="poly" id="edge42_Node000002_Node000024" title=" " alt="" coords="1521,119,1459,125,1392,136,1323,156,1259,185,1216,215,1179,253,1147,296,1120,340,1081,427,1058,494,1053,492,1076,425,1116,338,1143,293,1175,250,1213,211,1256,180,1321,151,1390,131,1459,120,1521,114"/> <area shape="poly" id="edge42_Node000002_Node000027" title=" " alt="" coords="1521,119,1459,125,1392,136,1323,156,1259,185,1216,215,1179,253,1147,296,1120,340,1081,427,1058,494,1053,492,1076,425,1116,338,1143,293,1175,250,1213,211,1256,180,1321,151,1390,131,1459,120,1521,114"/>
<area shape="rect" id="Node000025" href="$engine__adaptive_8h.html" title=" " alt="" coords="1145,494,1288,549"/> <area shape="rect" id="Node000028" href="$engine__adaptive_8h.html" title=" " alt="" coords="1145,494,1288,549"/>
<area shape="poly" id="edge38_Node000002_Node000025" title=" " alt="" coords="1522,133,1445,153,1361,184,1320,204,1280,228,1244,256,1212,288,1184,326,1171,361,1169,399,1178,445,1187,470,1199,492,1195,495,1182,472,1173,446,1164,399,1165,360,1180,323,1208,285,1240,252,1277,223,1317,199,1359,179,1443,148,1521,128"/> <area shape="poly" id="edge38_Node000002_Node000028" title=" " alt="" coords="1522,133,1445,153,1361,184,1320,204,1280,228,1244,256,1212,288,1184,326,1171,361,1169,399,1178,445,1187,470,1199,492,1195,495,1182,472,1173,446,1164,399,1165,360,1180,323,1208,285,1240,252,1277,223,1317,199,1359,179,1443,148,1521,128"/>
<area shape="rect" id="Node000027" href="$engine__view__abstract_8h.html" title="Abstract interfaces for engine &quot;views&quot; in GridFire." alt="" coords="1353,390,1496,446"/> <area shape="rect" id="Node000030" href="$engine__view__abstract_8h.html" title="Abstract interfaces for engine &quot;views&quot; in GridFire." alt="" coords="1353,390,1496,446"/>
<area shape="poly" id="edge43_Node000002_Node000027" title=" " alt="" coords="1630,149,1634,192,1633,243,1623,295,1613,321,1598,344,1583,358,1558,371,1497,396,1495,391,1556,366,1580,353,1594,340,1608,318,1617,294,1628,242,1629,192,1625,150"/> <area shape="poly" id="edge43_Node000002_Node000030" title=" " alt="" coords="1630,149,1634,192,1633,243,1623,295,1613,321,1598,344,1583,358,1558,371,1497,396,1495,391,1556,366,1580,353,1594,340,1608,318,1617,294,1628,242,1629,192,1625,150"/>
<area shape="rect" id="Node000028" href="$python_8h.html" title=" " alt="" coords="577,190,730,231"/> <area shape="rect" id="Node000031" href="$python_8h.html" title=" " alt="" coords="577,190,730,231"/>
<area shape="poly" id="edge48_Node000002_Node000028" title=" " alt="" coords="1521,120,1371,125,1178,136,964,155,750,185,719,192,717,187,749,180,964,150,1178,131,1370,119,1521,114"/> <area shape="poly" id="edge48_Node000002_Node000031" title=" " alt="" coords="1521,120,1371,125,1178,136,964,155,750,185,719,192,717,187,749,180,964,150,1178,131,1370,119,1521,114"/>
<area shape="rect" id="Node000034" href="$python_8cpp.html" title=" " alt="" coords="648,294,782,334"/> <area shape="rect" id="Node000037" href="$python_8cpp.html" title=" " alt="" coords="648,294,782,334"/>
<area shape="poly" id="edge95_Node000002_Node000034" title=" " alt="" coords="1521,122,1331,130,1107,143,910,161,841,172,802,185,774,208,751,238,724,294,719,292,747,235,770,205,799,180,840,167,909,156,1106,137,1330,124,1521,116"/> <area shape="poly" id="edge95_Node000002_Node000037" title=" " alt="" coords="1521,122,1331,130,1107,143,910,161,841,172,802,185,774,208,751,238,724,294,719,292,747,235,770,205,799,180,840,167,909,156,1106,137,1330,124,1521,116"/>
<area shape="rect" id="Node000035" href="$policy__abstract_8h.html" title="Abstract policy interfaces used to construct reaction networks (DynamicEngine) from seed compositions..." alt="" coords="281,398,443,438"/> <area shape="rect" id="Node000038" href="$policy__abstract_8h.html" title="Abstract policy interfaces used to construct reaction networks (DynamicEngine) from seed compositions..." alt="" coords="281,398,443,438"/>
<area shape="poly" id="edge51_Node000002_Node000035" title=" " alt="" coords="1521,120,1230,128,866,141,547,160,443,172,411,178,395,185,377,208,364,234,356,264,352,294,353,352,360,397,355,398,348,353,347,294,350,263,359,233,372,205,392,181,409,173,442,167,547,155,865,136,1230,122,1521,115"/> <area shape="poly" id="edge51_Node000002_Node000038" title=" " alt="" coords="1521,120,1230,128,866,141,547,160,443,172,411,178,395,185,377,208,364,234,356,264,352,294,353,352,360,397,355,398,348,353,347,294,350,263,359,233,372,205,392,181,409,173,442,167,547,155,865,136,1230,122,1521,115"/>
<area shape="rect" id="Node000040" href="$stellar__policy_8h.html" title="High&#45;level concrete NetworkPolicy for specific stellar environments." alt="" coords="496,708,644,749"/> <area shape="rect" id="Node000043" href="$stellar__policy_8h.html" title="High&#45;level concrete NetworkPolicy for specific stellar environments." alt="" coords="496,708,644,749"/>
<area shape="poly" id="edge70_Node000002_Node000040" title=" " alt="" coords="1521,121,1280,130,984,143,718,162,622,173,567,185,523,203,490,222,464,248,440,287,435,302,434,313,440,341,452,375,472,418,508,493,532,544,551,597,564,657,571,708,565,709,559,658,546,598,527,546,503,495,467,420,447,377,435,343,429,314,430,301,435,285,459,244,486,218,520,198,565,180,621,168,717,157,984,138,1280,124,1521,116"/> <area shape="poly" id="edge70_Node000002_Node000043" title=" " alt="" coords="1521,121,1280,130,984,143,718,162,622,173,567,185,523,203,490,222,464,248,440,287,435,302,434,313,440,341,452,375,472,418,508,493,532,544,551,597,564,657,571,708,565,709,559,658,546,598,527,546,503,495,467,420,447,377,435,343,429,314,430,301,435,285,459,244,486,218,520,198,565,180,621,168,717,157,984,138,1280,124,1521,116"/>
<area shape="rect" id="Node000044" href="$weak_8h.html" title=" " alt="" coords="1423,190,1575,231"/> <area shape="rect" id="Node000047" href="$weak_8h.html" title=" " alt="" coords="1423,190,1575,231"/>
<area shape="poly" id="edge71_Node000002_Node000044" title=" " alt="" coords="1586,146,1526,192,1523,188,1583,142"/> <area shape="poly" id="edge71_Node000002_Node000047" title=" " alt="" coords="1586,146,1526,192,1523,188,1583,142"/>
<area shape="rect" id="Node000049" href="$_c_v_o_d_e__solver__strategy_8h.html" title=" " alt="" coords="2540,286,2714,342"/> <area shape="rect" id="Node000052" href="$_c_v_o_d_e__solver__strategy_8h.html" title=" " alt="" coords="2540,286,2714,342"/>
<area shape="poly" id="edge78_Node000002_Node000049" title=" " alt="" coords="1723,116,1929,124,2175,138,2393,156,2471,168,2516,180,2548,202,2576,229,2615,284,2610,287,2572,233,2545,206,2514,185,2470,173,2393,162,2175,143,1929,130,1723,122"/> <area shape="poly" id="edge78_Node000002_Node000052" title=" " alt="" coords="1723,116,1929,124,2175,138,2393,156,2471,168,2516,180,2548,202,2576,229,2615,284,2610,287,2572,233,2545,206,2514,185,2470,173,2393,162,2175,143,1929,130,1723,122"/>
<area shape="rect" id="Node000058" href="$strategy__abstract_8h.html" title=" " alt="" coords="2330,183,2503,238"/> <area shape="rect" id="Node000061" href="$strategy__abstract_8h.html" title=" " alt="" coords="2330,183,2503,238"/>
<area shape="poly" id="edge87_Node000002_Node000058" title=" " alt="" coords="1723,117,1993,137,2156,155,2318,180,2331,182,2329,188,2317,185,2155,161,1992,143,1723,123"/> <area shape="poly" id="edge87_Node000002_Node000061" title=" " alt="" coords="1723,117,1993,137,2156,155,2318,180,2331,182,2329,188,2317,185,2155,161,1992,143,1723,123"/>
<area shape="rect" id="Node000059" href="$logging_8h.html" title=" " alt="" coords="883,190,1011,231"/> <area shape="rect" id="Node000062" href="$logging_8h.html" title=" " alt="" coords="883,190,1011,231"/>
<area shape="poly" id="edge90_Node000002_Node000059" title=" " alt="" coords="1521,124,1295,144,1162,161,1030,185,1004,192,1003,187,1029,180,1161,156,1294,138,1521,118"/> <area shape="poly" id="edge90_Node000002_Node000062" title=" " alt="" coords="1521,124,1295,144,1162,161,1030,185,1004,192,1003,187,1029,180,1161,156,1294,138,1521,118"/>
<area shape="rect" id="Node000061" href="$logging_8cpp.html" title=" " alt="" coords="907,301,1062,327"/> <area shape="rect" id="Node000064" href="$logging_8cpp.html" title=" " alt="" coords="907,301,1062,327"/>
<area shape="poly" id="edge97_Node000002_Node000061" title=" " alt="" coords="1521,121,1405,128,1278,140,1161,158,1116,170,1082,185,1049,211,1023,244,992,302,987,300,1019,241,1045,208,1079,180,1114,165,1160,153,1277,134,1405,122,1521,116"/> <area shape="poly" id="edge97_Node000002_Node000064" title=" " alt="" coords="1521,121,1405,128,1278,140,1161,158,1116,170,1082,185,1049,211,1023,244,992,302,987,300,1019,241,1045,208,1079,180,1114,165,1160,153,1277,134,1405,122,1521,116"/>
<area shape="poly" id="edge3_Node000003_Node000004" title=" " alt="" coords="2321,236,2410,245,2521,253,2644,261,2769,273,2885,292,2936,305,2981,320,3019,338,3048,360,3066,386,3072,416,3072,627,3069,639,3061,651,3030,672,2981,692,2918,710,2757,741,2564,767,2359,788,2161,805,1864,823,1863,818,2161,799,2358,783,2563,762,2756,736,2917,704,2980,687,3027,667,3057,647,3065,637,3067,626,3067,417,3061,388,3044,364,3016,343,2979,325,2935,310,2884,297,2769,279,2644,266,2521,258,2409,251,2321,241"/> <area shape="poly" id="edge3_Node000003_Node000004" title=" " alt="" coords="2321,236,2410,245,2521,253,2644,261,2769,273,2885,292,2936,305,2981,320,3019,338,3048,360,3066,386,3072,416,3072,627,3069,639,3061,651,3030,672,2981,692,2918,710,2757,741,2564,767,2359,788,2161,805,1864,823,1863,818,2161,799,2358,783,2563,762,2756,736,2917,704,2980,687,3027,667,3057,647,3065,637,3067,626,3067,417,3061,388,3044,364,3016,343,2979,325,2935,310,2884,297,2769,279,2644,266,2521,258,2409,251,2321,241"/>
<area shape="poly" id="edge11_Node000003_Node000010" title=" " alt="" coords="2215,254,2215,294,2210,294,2210,254"/> <area shape="poly" id="edge11_Node000003_Node000013" title=" " alt="" coords="2215,254,2215,294,2210,294,2210,254"/>
<area shape="rect" id="Node000011" href="$_c_v_o_d_e__solver__strategy_8cpp.html" title=" " alt="" coords="2316,501,2509,542"/> <area shape="rect" id="Node000014" href="$_c_v_o_d_e__solver__strategy_8cpp.html" title=" " alt="" coords="2316,501,2509,542"/>
<area shape="poly" id="edge12_Node000003_Node000011" title=" " alt="" coords="2297,245,2319,262,2336,285,2346,314,2344,329,2336,344,2320,360,2301,367,2263,369,2226,370,2209,377,2195,392,2187,405,2184,418,2187,430,2195,444,2219,469,2249,488,2282,501,2317,510,2315,515,2281,507,2247,493,2216,474,2190,447,2182,432,2179,418,2182,403,2190,388,2207,372,2225,365,2263,363,2300,362,2317,355,2332,340,2339,327,2341,315,2331,288,2315,266,2293,249"/> <area shape="poly" id="edge12_Node000003_Node000014" title=" " alt="" coords="2297,245,2319,262,2336,285,2346,314,2344,329,2336,344,2320,360,2301,367,2263,369,2226,370,2209,377,2195,392,2187,405,2184,418,2187,430,2195,444,2219,469,2249,488,2282,501,2317,510,2315,515,2281,507,2247,493,2216,474,2190,447,2182,432,2179,418,2182,403,2190,388,2207,372,2225,365,2263,363,2300,362,2317,355,2332,340,2339,327,2341,315,2331,288,2315,266,2293,249"/>
<area shape="rect" id="Node000005" href="$gridfire_8h.html" title=" " alt="" coords="619,893,747,934"/> <area shape="rect" id="Node000005" href="$gridfire_8h.html" title=" " alt="" coords="619,893,747,934"/>
<area shape="poly" id="edge4_Node000004_Node000005" title=" " alt="" coords="1720,835,747,910,747,905,1720,830"/> <area shape="poly" id="edge4_Node000004_Node000005" title=" " alt="" coords="1720,835,747,910,747,905,1720,830"/>
<area shape="rect" id="Node000006" href="$engine_2bindings_8cpp.html" title=" " alt="" coords="1818,990,2020,1015"/> <area shape="rect" id="Node000009" href="$engine_2bindings_8cpp.html" title=" " alt="" coords="1818,990,2020,1015"/>
<area shape="poly" id="edge5_Node000004_Node000006" title=" " alt="" coords="1864,851,1888,869,1908,892,1919,917,1924,944,1923,989,1918,989,1919,945,1914,919,1904,895,1884,873,1861,856"/> <area shape="poly" id="edge5_Node000004_Node000009" title=" " alt="" coords="1864,851,1888,869,1908,892,1919,917,1924,944,1923,989,1918,989,1919,945,1914,919,1904,895,1884,873,1861,856"/>
<area shape="rect" id="Node000007" href="$py__engine_8cpp.html" title=" " alt="" coords="1596,982,1784,1023"/> <area shape="rect" id="Node000010" href="$py__engine_8cpp.html" title=" " alt="" coords="1596,982,1784,1023"/>
<area shape="poly" id="edge6_Node000004_Node000007" title=" " alt="" coords="1736,855,1713,873,1695,895,1687,916,1684,939,1688,981,1682,982,1679,939,1681,915,1690,892,1709,869,1732,851"/> <area shape="poly" id="edge6_Node000004_Node000010" title=" " alt="" coords="1736,855,1713,873,1695,895,1687,916,1684,939,1688,981,1682,982,1679,939,1681,915,1690,892,1709,869,1732,851"/>
<area shape="rect" id="Node000008" href="$py__engine_8h.html" title=" " alt="" coords="1705,893,1893,934"/> <area shape="rect" id="Node000011" href="$py__engine_8h.html" title=" " alt="" coords="1705,893,1893,934"/>
<area shape="poly" id="edge7_Node000004_Node000008" title=" " alt="" coords="1802,861,1802,893,1796,893,1796,861"/> <area shape="poly" id="edge7_Node000004_Node000011" title=" " alt="" coords="1802,861,1802,893,1796,893,1796,861"/>
<area shape="rect" id="Node000009" href="$py__policy_8cpp.html" title=" " alt="" coords="1220,893,1405,934"/> <area shape="rect" id="Node000012" href="$py__policy_8cpp.html" title=" " alt="" coords="1220,893,1405,934"/>
<area shape="poly" id="edge10_Node000004_Node000009" title=" " alt="" coords="1721,843,1405,899,1405,893,1720,838"/> <area shape="poly" id="edge10_Node000004_Node000012" title=" " alt="" coords="1721,843,1405,899,1405,893,1720,838"/>
<area shape="poly" id="edge8_Node000008_Node000006" title=" " alt="" coords="1840,941,1904,987,1901,991,1837,945"/> <area shape="poly" id="edge8_Node000011_Node000009" title=" " alt="" coords="1840,941,1904,987,1901,991,1837,945"/>
<area shape="poly" id="edge9_Node000008_Node000007" title=" " alt="" coords="1764,946,1716,984,1713,979,1761,942"/> <area shape="poly" id="edge9_Node000011_Node000010" title=" " alt="" coords="1764,946,1716,984,1713,979,1761,942"/>
<area shape="poly" id="edge15_Node000012_Node000004" title=" " alt="" coords="1725,452,1748,518,1770,597,1790,714,1800,804,1795,804,1785,715,1765,598,1743,520,1720,454"/> <area shape="poly" id="edge15_Node000015_Node000004" title=" " alt="" coords="1725,452,1748,518,1770,597,1790,714,1800,804,1795,804,1785,715,1765,598,1743,520,1720,454"/>
<area shape="poly" id="edge36_Node000012_Node000011" title=" " alt="" coords="1803,435,1850,443,2102,480,2316,506,2315,512,2101,485,1849,448,1802,440"/> <area shape="poly" id="edge36_Node000015_Node000014" title=" " alt="" coords="1803,435,1850,443,2102,480,2316,506,2315,512,2101,485,1849,448,1802,440"/>
<area shape="poly" id="edge16_Node000012_Node000013" title=" " alt="" coords="1758,444,1850,498,1847,503,1755,449"/> <area shape="poly" id="edge16_Node000015_Node000016" title=" " alt="" coords="1758,444,1850,498,1847,503,1755,449"/>
<area shape="rect" id="Node000015" href="$engine__graph_8cpp.html" title=" " alt="" coords="1904,605,2044,646"/> <area shape="rect" id="Node000018" href="$engine__graph_8cpp.html" title=" " alt="" coords="1904,605,2044,646"/>
<area shape="poly" id="edge33_Node000012_Node000015" title=" " alt="" coords="1804,436,1921,464,1966,478,1990,492,2003,520,2003,551,1996,581,1986,605,1981,603,1991,579,1997,550,1997,521,1986,495,1964,483,1919,469,1802,441"/> <area shape="poly" id="edge33_Node000015_Node000018" title=" " alt="" coords="1804,436,1921,464,1966,478,1990,492,2003,520,2003,551,1996,581,1986,605,1981,603,1991,579,1997,550,1997,521,1986,495,1964,483,1919,469,1802,441"/>
<area shape="poly" id="edge22_Node000012_Node000018" title=" " alt="" coords="1658,448,1563,496,1560,491,1656,443"/> <area shape="poly" id="edge22_Node000015_Node000021" title=" " alt="" coords="1658,448,1563,496,1560,491,1656,443"/>
<area shape="poly" id="edge35_Node000012_Node000021" title=" " alt="" coords="1720,453,1735,563,1736,617,1732,639,1725,654,1701,679,1668,701,1627,721,1579,738,1466,767,1340,789,1210,805,1084,815,886,825,886,820,1084,810,1209,799,1339,784,1465,762,1577,733,1625,716,1665,697,1698,675,1721,652,1727,637,1731,617,1730,563,1714,454"/> <area shape="poly" id="edge35_Node000015_Node000024" title=" " alt="" coords="1720,453,1735,563,1736,617,1732,639,1725,654,1701,679,1668,701,1627,721,1579,738,1466,767,1340,789,1210,805,1084,815,886,825,886,820,1084,810,1209,799,1339,784,1465,762,1577,733,1625,716,1665,697,1698,675,1721,652,1727,637,1731,617,1730,563,1714,454"/>
<area shape="rect" id="Node000023" href="$engine__defined_8cpp.html" title=" " alt="" coords="1573,605,1710,646"/> <area shape="rect" id="Node000026" href="$engine__defined_8cpp.html" title=" " alt="" coords="1573,605,1710,646"/>
<area shape="poly" id="edge34_Node000012_Node000023" title=" " alt="" coords="1698,453,1683,495,1650,605,1644,603,1678,493,1693,452"/> <area shape="poly" id="edge34_Node000015_Node000026" title=" " alt="" coords="1698,453,1683,495,1650,605,1644,603,1678,493,1693,452"/>
<area shape="poly" id="edge30_Node000012_Node000024" title=" " alt="" coords="1617,434,1509,448,1320,467,1238,477,1133,496,1121,499,1120,494,1132,491,1237,471,1319,462,1508,443,1617,429"/> <area shape="poly" id="edge30_Node000015_Node000027" title=" " alt="" coords="1617,434,1509,448,1320,467,1238,477,1133,496,1121,499,1120,494,1132,491,1237,471,1319,462,1508,443,1617,429"/>
<area shape="rect" id="Node000014" href="$engine__procedures_8h.html" title=" " alt="" coords="2068,597,2242,653"/> <area shape="rect" id="Node000017" href="$engine__procedures_8h.html" title=" " alt="" coords="2068,597,2242,653"/>
<area shape="poly" id="edge17_Node000013_Node000014" title=" " alt="" coords="1950,545,2083,594,2081,599,1948,550"/> <area shape="poly" id="edge17_Node000016_Node000017" title=" " alt="" coords="1950,545,2083,594,2081,599,1948,550"/>
<area shape="poly" id="edge19_Node000013_Node000015" title=" " alt="" coords="1912,552,1958,603,1954,606,1908,555"/> <area shape="poly" id="edge19_Node000016_Node000018" title=" " alt="" coords="1912,552,1958,603,1954,606,1908,555"/>
<area shape="poly" id="edge20_Node000013_Node000016" title=" " alt="" coords="1880,557,1880,604,1885,629,1893,652,1918,683,1949,706,1945,710,1914,686,1889,654,1879,630,1875,605,1874,557"/> <area shape="poly" id="edge20_Node000016_Node000019" title=" " alt="" coords="1880,557,1880,604,1885,629,1893,652,1918,683,1949,706,1945,710,1914,686,1889,654,1879,630,1875,605,1874,557"/>
<area shape="rect" id="Node000017" href="$engine__multiscale_8cpp.html" title=" " alt="" coords="857,605,1011,646"/> <area shape="rect" id="Node000020" href="$engine__multiscale_8cpp.html" title=" " alt="" coords="857,605,1011,646"/>
<area shape="poly" id="edge21_Node000013_Node000017" title=" " alt="" coords="1773,536,1074,600,1012,610,1011,605,1073,595,1772,530"/> <area shape="poly" id="edge21_Node000016_Node000020" title=" " alt="" coords="1773,536,1074,600,1012,610,1011,605,1073,595,1772,530"/>
<area shape="poly" id="edge18_Node000014_Node000004" title=" " alt="" coords="2144,668,2119,716,2102,739,2081,759,2028,789,1971,808,1914,820,1863,825,1863,820,1913,814,1969,803,2026,784,2078,755,2098,736,2115,713,2139,666"/> <area shape="poly" id="edge18_Node000017_Node000004" title=" " alt="" coords="2144,668,2119,716,2102,739,2081,759,2028,789,1971,808,1914,820,1863,825,1863,820,1913,814,1969,803,2026,784,2078,755,2098,736,2115,713,2139,666"/>
<area shape="rect" id="Node000019" href="$engine__priming_8h.html" title=" " alt="" coords="1406,597,1549,653"/> <area shape="rect" id="Node000022" href="$engine__priming_8h.html" title=" " alt="" coords="1406,597,1549,653"/>
<area shape="poly" id="edge23_Node000018_Node000019" title=" " alt="" coords="1498,565,1488,597,1483,596,1492,564"/> <area shape="poly" id="edge23_Node000021_Node000022" title=" " alt="" coords="1498,565,1488,597,1483,596,1492,564"/>
<area shape="rect" id="Node000020" href="$engine__views_8h.html" title=" " alt="" coords="1246,701,1389,757"/> <area shape="rect" id="Node000023" href="$engine__views_8h.html" title=" " alt="" coords="1246,701,1389,757"/>
<area shape="poly" id="edge28_Node000018_Node000020" title=" " alt="" coords="1444,560,1419,578,1396,599,1375,624,1357,651,1331,702,1327,699,1353,649,1371,621,1392,595,1415,574,1441,556"/> <area shape="poly" id="edge28_Node000021_Node000023" title=" " alt="" coords="1444,560,1419,578,1396,599,1375,624,1357,651,1331,702,1327,699,1353,649,1371,621,1392,595,1415,574,1441,556"/>
<area shape="poly" id="edge29_Node000018_Node000023" title=" " alt="" coords="1557,557,1617,602,1614,607,1553,561"/> <area shape="poly" id="edge29_Node000021_Node000026" title=" " alt="" coords="1557,557,1617,602,1614,607,1553,561"/>
<area shape="poly" id="edge27_Node000019_Node000016" title=" " alt="" coords="1565,651,1749,689,1901,713,1900,719,1748,694,1564,656"/> <area shape="poly" id="edge27_Node000022_Node000019" title=" " alt="" coords="1565,651,1749,689,1901,713,1900,719,1748,694,1564,656"/>
<area shape="poly" id="edge24_Node000019_Node000020" title=" " alt="" coords="1423,664,1362,703,1359,698,1421,659"/> <area shape="poly" id="edge24_Node000022_Node000023" title=" " alt="" coords="1423,664,1362,703,1359,698,1421,659"/>
<area shape="poly" id="edge25_Node000020_Node000004" title=" " alt="" coords="1405,744,1736,809,1735,814,1404,750"/> <area shape="poly" id="edge25_Node000023_Node000004" title=" " alt="" coords="1405,744,1736,809,1735,814,1404,750"/>
<area shape="poly" id="edge26_Node000020_Node000021" title=" " alt="" coords="1232,749,887,814,886,808,1231,744"/> <area shape="poly" id="edge26_Node000023_Node000024" title=" " alt="" coords="1232,749,887,814,886,808,1231,744"/>
<area shape="poly" id="edge32_Node000024_Node000017" title=" " alt="" coords="1008,562,958,606,954,602,1005,558"/> <area shape="poly" id="edge32_Node000027_Node000020" title=" " alt="" coords="1008,562,958,606,954,602,1005,558"/>
<area shape="poly" id="edge31_Node000024_Node000020" title=" " alt="" coords="1049,565,1055,610,1063,632,1076,651,1113,681,1156,702,1202,715,1246,722,1245,727,1201,720,1155,707,1110,686,1072,655,1058,634,1050,611,1043,565"/> <area shape="poly" id="edge31_Node000027_Node000023" title=" " alt="" coords="1049,565,1055,610,1063,632,1076,651,1113,681,1156,702,1202,715,1246,722,1245,727,1201,720,1155,707,1110,686,1072,655,1058,634,1050,611,1043,565"/>
<area shape="poly" id="edge39_Node000025_Node000020" title=" " alt="" coords="1239,562,1307,700,1302,702,1234,564"/> <area shape="poly" id="edge39_Node000028_Node000023" title=" " alt="" coords="1239,562,1307,700,1302,702,1234,564"/>
<area shape="rect" id="Node000026" href="$engine__adaptive_8cpp.html" title=" " alt="" coords="1086,605,1230,646"/> <area shape="rect" id="Node000029" href="$engine__adaptive_8cpp.html" title=" " alt="" coords="1086,605,1230,646"/>
<area shape="poly" id="edge40_Node000025_Node000026" title=" " alt="" coords="1195,564,1171,606,1167,603,1191,562"/> <area shape="poly" id="edge40_Node000028_Node000029" title=" " alt="" coords="1195,564,1171,606,1167,603,1191,562"/>
<area shape="poly" id="edge45_Node000027_Node000018" title=" " alt="" coords="1458,456,1487,491,1483,495,1454,460"/> <area shape="poly" id="edge45_Node000030_Node000021" title=" " alt="" coords="1458,456,1487,491,1483,495,1454,460"/>
<area shape="poly" id="edge47_Node000027_Node000020" title=" " alt="" coords="1408,461,1380,525,1352,598,1326,701,1320,700,1347,597,1375,523,1403,458"/> <area shape="poly" id="edge47_Node000030_Node000023" title=" " alt="" coords="1408,461,1380,525,1352,598,1326,701,1320,700,1347,597,1375,523,1403,458"/>
<area shape="poly" id="edge46_Node000027_Node000024" title=" " alt="" coords="1338,449,1234,473,1133,496,1121,500,1120,494,1132,491,1233,468,1337,444"/> <area shape="poly" id="edge46_Node000030_Node000027" title=" " alt="" coords="1338,449,1234,473,1133,496,1121,500,1120,494,1132,491,1233,468,1337,444"/>
<area shape="poly" id="edge44_Node000027_Node000025" title=" " alt="" coords="1356,455,1273,495,1271,491,1354,450"/> <area shape="poly" id="edge44_Node000030_Node000028" title=" " alt="" coords="1356,455,1273,495,1271,491,1354,450"/>
<area shape="rect" id="Node000029" href="$generative_8h.html" title=" " alt="" coords="449,294,624,334"/> <area shape="rect" id="Node000032" href="$generative_8h.html" title=" " alt="" coords="449,294,624,334"/>
<area shape="poly" id="edge49_Node000028_Node000029" title=" " alt="" coords="621,243,561,295,557,291,618,239"/> <area shape="poly" id="edge49_Node000031_Node000032" title=" " alt="" coords="621,243,561,295,557,291,618,239"/>
<area shape="poly" id="edge50_Node000028_Node000034" title=" " alt="" coords="676,243,706,292,701,295,671,245"/> <area shape="poly" id="edge50_Node000031_Node000037" title=" " alt="" coords="676,243,706,292,701,295,671,245"/>
<area shape="poly" id="edge69_Node000035_Node000021" title=" " alt="" coords="424,443,466,465,507,492,604,574,691,664,761,745,806,802,802,806,756,748,687,667,600,578,504,496,463,469,421,447"/> <area shape="poly" id="edge69_Node000038_Node000024" title=" " alt="" coords="424,443,466,465,507,492,604,574,691,664,761,745,806,802,802,806,756,748,687,667,600,578,504,496,463,469,421,447"/>
<area shape="rect" id="Node000036" href="$chains_8h.html" title="Concrete implementations of ReactionChainPolicy for key stellar reaction chains." alt="" coords="293,605,420,646"/> <area shape="rect" id="Node000039" href="$chains_8h.html" title="Concrete implementations of ReactionChainPolicy for key stellar reaction chains." alt="" coords="293,605,420,646"/>
<area shape="poly" id="edge52_Node000035_Node000036" title=" " alt="" coords="364,454,360,605,354,604,358,454"/> <area shape="poly" id="edge52_Node000038_Node000039" title=" " alt="" coords="364,454,360,605,354,604,358,454"/>
<area shape="rect" id="Node000037" href="$policy_8h.html" title=" " alt="" coords="450,805,577,845"/> <area shape="rect" id="Node000040" href="$policy_8h.html" title=" " alt="" coords="450,805,577,845"/>
<area shape="poly" id="edge60_Node000035_Node000037" title=" " alt="" coords="378,452,435,596,460,676,486,756,506,803,502,805,481,758,455,678,430,598,373,454"/> <area shape="poly" id="edge60_Node000038_Node000040" title=" " alt="" coords="378,452,435,596,460,676,486,756,506,803,502,805,481,758,455,678,430,598,373,454"/>
<area shape="poly" id="edge66_Node000035_Node000040" title=" " alt="" coords="419,444,451,465,479,492,565,707,560,709,474,495,447,469,416,448"/> <area shape="poly" id="edge66_Node000038_Node000043" title=" " alt="" coords="419,444,451,465,479,492,565,707,560,709,474,495,447,469,416,448"/>
<area shape="rect" id="Node000041" href="$chains_8cpp.html" title=" " alt="" coords="36,716,197,742"/> <area shape="rect" id="Node000044" href="$chains_8cpp.html" title=" " alt="" coords="36,716,197,742"/>
<area shape="poly" id="edge67_Node000035_Node000041" title=" " alt="" coords="266,438,172,463,135,478,112,495,97,522,88,553,86,584,88,616,100,674,114,715,109,717,95,676,83,617,81,584,83,552,92,520,108,492,132,473,170,457,264,433"/> <area shape="poly" id="edge67_Node000038_Node000044" title=" " alt="" coords="266,438,172,463,135,478,112,495,97,522,88,553,86,584,88,616,100,674,114,715,109,717,95,676,83,617,81,584,83,552,92,520,108,492,132,473,170,457,264,433"/>
<area shape="rect" id="Node000042" href="$policy__logical_8h.html" title=" " alt="" coords="122,501,274,542"/> <area shape="rect" id="Node000045" href="$policy__logical_8h.html" title=" " alt="" coords="122,501,274,542"/>
<area shape="poly" id="edge61_Node000035_Node000042" title=" " alt="" coords="319,449,231,503,228,498,316,444"/> <area shape="poly" id="edge61_Node000038_Node000045" title=" " alt="" coords="319,449,231,503,228,498,316,444"/>
<area shape="rect" id="Node000043" href="$policy__logical_8cpp.html" title=" " alt="" coords="137,605,269,646"/> <area shape="rect" id="Node000046" href="$policy__logical_8cpp.html" title=" " alt="" coords="137,605,269,646"/>
<area shape="poly" id="edge68_Node000035_Node000043" title=" " alt="" coords="349,453,322,501,288,551,259,581,230,606,227,602,255,577,284,548,318,498,344,451"/> <area shape="poly" id="edge68_Node000038_Node000046" title=" " alt="" coords="349,453,322,501,288,551,259,581,230,606,227,602,255,577,284,548,318,498,344,451"/>
<area shape="poly" id="edge53_Node000036_Node000037" title=" " alt="" coords="376,658,405,705,441,755,490,802,487,806,437,758,400,708,372,661"/> <area shape="poly" id="edge53_Node000039_Node000040" title=" " alt="" coords="376,658,405,705,441,755,490,802,487,806,437,758,400,708,372,661"/>
<area shape="poly" id="edge56_Node000036_Node000040" title=" " alt="" coords="412,650,530,706,527,710,410,655"/> <area shape="poly" id="edge56_Node000039_Node000043" title=" " alt="" coords="412,650,530,706,527,710,410,655"/>
<area shape="poly" id="edge59_Node000036_Node000041" title=" " alt="" coords="297,654,146,718,144,713,295,649"/> <area shape="poly" id="edge59_Node000039_Node000044" title=" " alt="" coords="297,654,146,718,144,713,295,649"/>
<area shape="poly" id="edge54_Node000037_Node000005" title=" " alt="" coords="567,850,646,891,644,895,565,855"/> <area shape="poly" id="edge54_Node000040_Node000005" title=" " alt="" coords="567,850,646,891,644,895,565,855"/>
<area shape="poly" id="edge55_Node000037_Node000009" title=" " alt="" coords="593,832,1220,900,1220,905,593,838"/> <area shape="poly" id="edge55_Node000040_Node000012" title=" " alt="" coords="593,832,1220,900,1220,905,593,838"/>
<area shape="poly" id="edge58_Node000040_Node000021" title=" " alt="" coords="637,753,768,802,766,807,635,758"/> <area shape="poly" id="edge58_Node000043_Node000024" title=" " alt="" coords="637,753,768,802,766,807,635,758"/>
<area shape="poly" id="edge57_Node000040_Node000037" title=" " alt="" coords="553,764,528,806,523,803,548,761"/> <area shape="poly" id="edge57_Node000043_Node000040" title=" " alt="" coords="553,764,528,806,523,803,548,761"/>
<area shape="poly" id="edge62_Node000042_Node000036" title=" " alt="" coords="243,548,327,602,325,607,240,553"/> <area shape="poly" id="edge62_Node000045_Node000039" title=" " alt="" coords="243,548,327,602,325,607,240,553"/>
<area shape="poly" id="edge63_Node000042_Node000037" title=" " alt="" coords="152,553,94,594,65,619,39,646,20,673,10,701,11,729,25,755,53,775,97,791,151,803,212,812,340,821,450,822,450,828,340,826,212,817,150,809,95,796,51,780,21,758,5,730,4,701,15,671,35,642,61,615,91,590,149,548"/> <area shape="poly" id="edge63_Node000045_Node000040" title=" " alt="" coords="152,553,94,594,65,619,39,646,20,673,10,701,11,729,25,755,53,775,97,791,151,803,212,812,340,821,450,822,450,828,340,826,212,817,150,809,95,796,51,780,21,758,5,730,4,701,15,671,35,642,61,615,91,590,149,548"/>
<area shape="poly" id="edge64_Node000042_Node000041" title=" " alt="" coords="161,554,142,575,127,598,117,630,114,663,117,715,112,716,109,662,112,629,122,596,137,571,157,551"/> <area shape="poly" id="edge64_Node000045_Node000044" title=" " alt="" coords="161,554,142,575,127,598,117,630,114,663,117,715,112,716,109,662,112,629,122,596,137,571,157,551"/>
<area shape="poly" id="edge65_Node000042_Node000043" title=" " alt="" coords="202,557,205,604,199,605,197,558"/> <area shape="poly" id="edge65_Node000045_Node000046" title=" " alt="" coords="202,557,205,604,199,605,197,558"/>
<area shape="rect" id="Node000045" href="$weak__rate__library_8h.html" title=" " alt="" coords="1414,286,1584,342"/> <area shape="rect" id="Node000048" href="$weak__rate__library_8h.html" title=" " alt="" coords="1414,286,1584,342"/>
<area shape="poly" id="edge72_Node000044_Node000045" title=" " alt="" coords="1502,246,1502,286,1496,286,1496,246"/> <area shape="poly" id="edge72_Node000047_Node000048" title=" " alt="" coords="1502,246,1502,286,1496,286,1496,246"/>
<area shape="rect" id="Node000046" href="$weak_8cpp.html" title=" " alt="" coords="1187,398,1328,438"/> <area shape="rect" id="Node000049" href="$weak_8cpp.html" title=" " alt="" coords="1187,398,1328,438"/>
<area shape="poly" id="edge76_Node000044_Node000046" title=" " alt="" coords="1408,227,1299,252,1255,268,1228,288,1221,300,1218,314,1221,343,1232,372,1246,396,1242,399,1228,374,1216,345,1213,314,1216,299,1224,285,1252,264,1298,247,1407,222"/> <area shape="poly" id="edge76_Node000047_Node000049" title=" " alt="" coords="1408,227,1299,252,1255,268,1228,288,1221,300,1218,314,1221,343,1232,372,1246,396,1242,399,1228,374,1216,345,1213,314,1216,299,1224,285,1252,264,1298,247,1407,222"/>
<area shape="rect" id="Node000047" href="$construction_8cpp.html" title=" " alt="" coords="1861,398,2028,438"/> <area shape="rect" id="Node000050" href="$construction_8cpp.html" title=" " alt="" coords="1861,398,2028,438"/>
<area shape="poly" id="edge75_Node000044_Node000047" title=" " alt="" coords="1557,235,1903,395,1901,399,1554,240"/> <area shape="poly" id="edge75_Node000047_Node000050" title=" " alt="" coords="1557,235,1903,395,1901,399,1554,240"/>
<area shape="rect" id="Node000048" href="$weak__interpolator_8cpp.html" title=" " alt="" coords="1238,294,1389,334"/> <area shape="rect" id="Node000051" href="$weak__interpolator_8cpp.html" title=" " alt="" coords="1238,294,1389,334"/>
<area shape="poly" id="edge77_Node000044_Node000048" title=" " alt="" coords="1451,241,1351,296,1348,291,1449,236"/> <area shape="poly" id="edge77_Node000047_Node000051" title=" " alt="" coords="1451,241,1351,296,1348,291,1449,236"/>
<area shape="poly" id="edge73_Node000045_Node000012" title=" " alt="" coords="1570,347,1670,395,1668,399,1568,351"/> <area shape="poly" id="edge73_Node000048_Node000015" title=" " alt="" coords="1570,347,1670,395,1668,399,1568,351"/>
<area shape="poly" id="edge74_Node000045_Node000046" title=" " alt="" coords="1422,351,1306,399,1304,394,1420,346"/> <area shape="poly" id="edge74_Node000048_Node000049" title=" " alt="" coords="1422,351,1306,399,1304,394,1420,346"/>
<area shape="poly" id="edge84_Node000049_Node000011" title=" " alt="" coords="2643,357,2648,402,2644,426,2633,447,2608,473,2578,493,2544,506,2510,515,2508,510,2542,501,2575,488,2605,469,2629,444,2639,424,2642,402,2638,357"/> <area shape="poly" id="edge84_Node000052_Node000014" title=" " alt="" coords="2643,357,2648,402,2644,426,2633,447,2608,473,2578,493,2544,506,2510,515,2508,510,2542,501,2575,488,2605,469,2629,444,2639,424,2642,402,2638,357"/>
<area shape="poly" id="edge83_Node000049_Node000016" title=" " alt="" coords="2730,326,2787,336,2842,350,2889,367,2906,377,2919,388,2944,430,2952,470,2950,490,2944,510,2918,551,2893,575,2859,596,2817,615,2769,633,2656,662,2531,685,2400,702,2274,714,2068,727,2068,722,2273,709,2400,697,2530,680,2655,657,2767,628,2815,611,2856,591,2890,571,2914,548,2939,508,2945,489,2947,470,2939,432,2914,392,2903,381,2887,372,2841,355,2786,341,2729,331"/> <area shape="poly" id="edge83_Node000052_Node000019" title=" " alt="" coords="2730,326,2787,336,2842,350,2889,367,2906,377,2919,388,2944,430,2952,470,2950,490,2944,510,2918,551,2893,575,2859,596,2817,615,2769,633,2656,662,2531,685,2400,702,2274,714,2068,727,2068,722,2273,709,2400,697,2530,680,2655,657,2767,628,2815,611,2856,591,2890,571,2914,548,2939,508,2945,489,2947,470,2939,432,2914,392,2903,381,2887,372,2841,355,2786,341,2729,331"/>
<area shape="rect" id="Node000050" href="$strategies_8h.html" title=" " alt="" coords="2204,398,2397,438"/> <area shape="rect" id="Node000053" href="$strategies_8h.html" title=" " alt="" coords="2204,398,2397,438"/>
<area shape="poly" id="edge79_Node000049_Node000050" title=" " alt="" coords="2526,349,2365,399,2363,394,2525,344"/> <area shape="poly" id="edge79_Node000052_Node000053" title=" " alt="" coords="2526,349,2365,399,2363,394,2525,344"/>
<area shape="rect" id="Node000055" href="$engine__partitioning__trigger_8h.html" title="CVODE&#45;specific triggers that decide when to (re)partition the reaction network engine." alt="" coords="2694,390,2880,446"/> <area shape="rect" id="Node000058" href="$engine__partitioning__trigger_8h.html" title="CVODE&#45;specific triggers that decide when to (re)partition the reaction network engine." alt="" coords="2694,390,2880,446"/>
<area shape="poly" id="edge80_Node000049_Node000055" title=" " alt="" coords="2684,348,2746,387,2743,392,2681,353"/> <area shape="poly" id="edge80_Node000052_Node000058" title=" " alt="" coords="2684,348,2746,387,2743,392,2681,353"/>
<area shape="rect" id="Node000057" href="$engine__partitioning__trigger_8cpp.html" title=" " alt="" coords="2724,494,2904,549"/> <area shape="rect" id="Node000060" href="$engine__partitioning__trigger_8cpp.html" title=" " alt="" coords="2724,494,2904,549"/>
<area shape="poly" id="edge85_Node000049_Node000057" title=" " alt="" coords="2730,329,2829,353,2869,369,2894,388,2903,403,2904,417,2895,447,2878,474,2856,495,2852,491,2874,470,2890,445,2899,416,2898,405,2890,392,2866,374,2827,358,2729,334"/> <area shape="poly" id="edge85_Node000052_Node000060" title=" " alt="" coords="2730,329,2829,353,2869,369,2894,388,2903,403,2904,417,2895,447,2878,474,2856,495,2852,491,2874,470,2890,445,2899,416,2898,405,2890,392,2866,374,2827,358,2729,334"/>
<area shape="rect" id="Node000054" href="$solver_2bindings_8cpp.html" title=" " alt="" coords="2421,405,2620,431"/> <area shape="rect" id="Node000057" href="$solver_2bindings_8cpp.html" title=" " alt="" coords="2421,405,2620,431"/>
<area shape="poly" id="edge86_Node000049_Node000054" title=" " alt="" coords="2589,355,2535,406,2531,402,2586,351"/> <area shape="poly" id="edge86_Node000052_Node000057" title=" " alt="" coords="2589,355,2535,406,2531,402,2586,351"/>
<area shape="poly" id="edge81_Node000055_Node000011" title=" " alt="" coords="2680,451,2486,503,2484,498,2678,446"/> <area shape="poly" id="edge81_Node000058_Node000014" title=" " alt="" coords="2680,451,2486,503,2484,498,2678,446"/>
<area shape="poly" id="edge82_Node000055_Node000057" title=" " alt="" coords="2801,460,2809,492,2804,494,2796,462"/> <area shape="poly" id="edge82_Node000058_Node000060" title=" " alt="" coords="2801,460,2809,492,2804,494,2796,462"/>
<area shape="poly" id="edge88_Node000058_Node000049" title=" " alt="" coords="2488,243,2572,283,2569,288,2485,248"/> <area shape="poly" id="edge88_Node000061_Node000052" title=" " alt="" coords="2488,243,2572,283,2569,288,2485,248"/>
<area shape="poly" id="edge89_Node000058_Node000050" title=" " alt="" coords="2412,254,2400,299,2380,343,2356,374,2329,399,2325,395,2352,371,2375,341,2395,297,2407,253"/> <area shape="poly" id="edge89_Node000061_Node000053" title=" " alt="" coords="2412,254,2400,299,2380,343,2356,374,2329,399,2325,395,2352,371,2375,341,2395,297,2407,253"/>
<area shape="poly" id="edge91_Node000059_Node000017" title=" " alt="" coords="921,245,908,265,898,287,888,332,884,378,886,424,892,469,910,548,929,603,924,605,905,549,887,470,881,424,879,378,882,331,893,285,903,262,917,242"/> <area shape="poly" id="edge91_Node000062_Node000020" title=" " alt="" coords="921,245,908,265,898,287,888,332,884,378,886,424,892,469,910,548,929,603,924,605,905,549,887,470,881,424,879,378,882,331,893,285,903,262,917,242"/>
<area shape="poly" id="edge92_Node000059_Node000061" title=" " alt="" coords="962,245,983,300,978,302,957,247"/> <area shape="poly" id="edge92_Node000062_Node000064" title=" " alt="" coords="962,245,983,300,978,302,957,247"/>
<area shape="poly" id="edge99_Node000063_Node000012" title=" " alt="" coords="1908,343,1761,399,1759,394,1906,338"/> <area shape="poly" id="edge99_Node000066_Node000015" title=" " alt="" coords="1908,343,1761,399,1759,394,1906,338"/>
<area shape="poly" id="edge100_Node000063_Node000014" title=" " alt="" coords="2016,342,2041,363,2064,388,2097,443,2122,500,2152,596,2146,598,2117,502,2092,445,2060,392,2038,367,2013,346"/> <area shape="poly" id="edge100_Node000066_Node000017" title=" " alt="" coords="2016,342,2041,363,2064,388,2097,443,2122,500,2152,596,2146,598,2117,502,2092,445,2060,392,2038,367,2013,346"/>
<area shape="poly" id="edge102_Node000063_Node000015" title=" " alt="" coords="2010,344,2028,364,2042,389,2049,419,2050,451,2046,482,2037,512,2013,566,1990,606,1985,603,2009,564,2032,510,2040,481,2045,450,2044,420,2037,391,2023,368,2006,347"/> <area shape="poly" id="edge102_Node000066_Node000018" title=" " alt="" coords="2010,344,2028,364,2042,389,2049,419,2050,451,2046,482,2037,512,2013,566,1990,606,1985,603,2009,564,2032,510,2040,481,2045,450,2044,420,2037,391,2023,368,2006,347"/>
<area shape="poly" id="edge101_Node000063_Node000025" title=" " alt="" coords="1848,337,1737,359,1621,393,1589,406,1566,420,1542,434,1509,448,1394,484,1289,509,1288,504,1393,479,1507,443,1539,429,1563,415,1587,401,1620,387,1735,354,1847,331"/> <area shape="poly" id="edge101_Node000066_Node000028" title=" " alt="" coords="1848,337,1737,359,1621,393,1589,406,1566,420,1542,434,1509,448,1394,484,1289,509,1288,504,1393,479,1507,443,1539,429,1563,415,1587,401,1620,387,1735,354,1847,331"/>
<area shape="poly" id="edge103_Node000063_Node000047" title=" " alt="" coords="1965,350,1952,398,1947,396,1959,349"/> <area shape="poly" id="edge103_Node000066_Node000050" title=" " alt="" coords="1965,350,1952,398,1947,396,1959,349"/>
</map> </map>

View File

@@ -1 +1 @@
6860e1de09c2508b2c97713c72b7c3e7 730e4a1b843a7a85a80cdae6149b7dad

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 80 KiB

After

Width:  |  Height:  |  Size: 80 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 76 KiB

After

Width:  |  Height:  |  Size: 76 KiB

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>
@@ -120,7 +120,7 @@ Include dependency graph for chains.h:</div>
</div><div class="textblock"><div class="dynheader"> </div><div class="textblock"><div class="dynheader">
This graph shows which files directly or indirectly include this file:</div> This graph shows which files directly or indirectly include this file:</div>
<div class="dyncontent"> <div class="dyncontent">
<div class="center"><iframe scrolling="no" frameborder="0" src="chains_8h__dep__incl.svg" width="611" height="407"><p><b>This browser is not able to show SVG: try Firefox, Chrome, Safari, or Opera instead.</b></p></iframe></div> <div class="center"><div class="zoom"><iframe scrolling="no" frameborder="0" src="chains_8h__dep__incl.svg" width="100%" height="600"><p><b>This browser is not able to show SVG: try Firefox, Chrome, Safari, or Opera instead.</b></p></iframe></div></div>
</div> </div>
</div><table class="memberdecls"> </div><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="nested-classes" name="nested-classes"></a> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="nested-classes" name="nested-classes"></a>

View File

@@ -1,22 +1,29 @@
<map id="src/include/gridfire/policy/chains.h" name="src/include/gridfire/policy/chains.h"> <map id="src/include/gridfire/policy/chains.h" name="src/include/gridfire/policy/chains.h">
<area shape="rect" id="Node000001" title="Concrete implementations of ReactionChainPolicy for key stellar reaction chains." alt="" coords="283,5,410,46"/> <area shape="rect" id="Node000001" title="Concrete implementations of ReactionChainPolicy for key stellar reaction chains." alt="" coords="451,5,579,46"/>
<area shape="rect" id="Node000002" href="$policy_8h.html" title=" " alt="" coords="171,183,298,223"/> <area shape="rect" id="Node000002" href="$policy_8h.html" title=" " alt="" coords="339,183,467,223"/>
<area shape="poly" id="edge1_Node000001_Node000002" title=" " alt="" coords="300,57,279,75,262,95,251,117,244,140,238,183,232,182,239,139,246,115,257,93,275,71,297,53"/> <area shape="poly" id="edge1_Node000001_Node000002" title=" " alt="" coords="469,57,448,75,431,95,420,117,413,140,406,183,401,182,407,139,415,115,426,93,444,71,465,53"/>
<area shape="rect" id="Node000007" href="$stellar__policy_8h.html" title="High&#45;level concrete NetworkPolicy for specific stellar environments." alt="" coords="272,94,420,135"/> <area shape="rect" id="Node000010" href="$stellar__policy_8h.html" title="High&#45;level concrete NetworkPolicy for specific stellar environments." alt="" coords="441,94,589,135"/>
<area shape="poly" id="edge8_Node000001_Node000007" title=" " alt="" coords="349,62,349,94,344,94,344,62"/> <area shape="poly" id="edge12_Node000001_Node000010" title=" " alt="" coords="518,62,518,94,512,94,512,62"/>
<area shape="rect" id="Node000009" href="$chains_8cpp.html" title=" " alt="" coords="444,102,606,127"/> <area shape="rect" id="Node000012" href="$chains_8cpp.html" title=" " alt="" coords="613,102,774,127"/>
<area shape="poly" id="edge11_Node000001_Node000009" title=" " alt="" coords="402,51,501,99,499,103,399,55"/> <area shape="poly" id="edge15_Node000001_Node000012" title=" " alt="" coords="570,51,670,99,668,103,568,55"/>
<area shape="rect" id="Node000003" href="$gridfire_8h.html" title=" " alt="" coords="5,271,133,312"/> <area shape="rect" id="Node000003" href="$gridfire_8h.html" title=" " alt="" coords="174,271,301,312"/>
<area shape="poly" id="edge2_Node000002_Node000003" title=" " alt="" coords="185,233,108,273,105,269,182,228"/> <area shape="poly" id="edge2_Node000002_Node000003" title=" " alt="" coords="353,233,276,273,274,269,351,228"/>
<area shape="rect" id="Node000004" href="$policy_2bindings_8cpp.html" title=" " alt="" coords="93,368,290,393"/> <area shape="rect" id="Node000007" href="$policy_2bindings_8cpp.html" title=" " alt="" coords="280,375,478,401"/>
<area shape="poly" id="edge3_Node000002_Node000004" title=" " alt="" coords="214,238,198,272,191,325,193,367,188,368,186,324,193,271,209,235"/> <area shape="poly" id="edge7_Node000002_Node000007" title=" " alt="" coords="382,238,367,272,363,300,366,328,377,374,372,375,360,329,358,300,362,271,377,235"/>
<area shape="rect" id="Node000005" href="$py__policy_8cpp.html" title=" " alt="" coords="325,360,509,401"/> <area shape="rect" id="Node000008" href="$py__policy_8cpp.html" title=" " alt="" coords="504,368,688,408"/>
<area shape="poly" id="edge4_Node000002_Node000005" title=" " alt="" coords="314,224,369,246,391,257,406,270,417,292,423,316,423,360,417,360,418,317,412,294,402,273,388,262,367,250,312,229"/> <area shape="poly" id="edge8_Node000002_Node000008" title=" " alt="" coords="482,225,538,246,560,258,574,270,588,293,596,319,600,367,595,367,591,320,584,295,570,273,557,262,535,251,480,230"/>
<area shape="rect" id="Node000006" href="$py__policy_8h.html" title=" " alt="" coords="208,271,392,312"/> <area shape="rect" id="Node000009" href="$py__policy_8h.html" title=" " alt="" coords="376,271,560,312"/>
<area shape="poly" id="edge5_Node000002_Node000006" title=" " alt="" coords="260,234,287,269,283,273,256,238"/> <area shape="poly" id="edge9_Node000002_Node000009" title=" " alt="" coords="429,234,456,269,451,273,425,238"/>
<area shape="poly" id="edge6_Node000006_Node000004" title=" " alt="" coords="265,324,208,369,205,365,262,320"/> <area shape="rect" id="Node000004" href="$gridfire__context_8h.html" title=" " alt="" coords="55,360,202,416"/>
<area shape="poly" id="edge7_Node000006_Node000005" title=" " alt="" coords="340,319,392,357,389,362,337,323"/> <area shape="poly" id="edge3_Node000003_Node000004" title=" " alt="" coords="205,324,162,361,158,357,202,320"/>
<area shape="poly" id="edge9_Node000007_Node000002" title=" " alt="" coords="311,146,261,184,258,180,307,142"/> <area shape="rect" id="Node000006" href="$gridfire__extern_8cpp.html" title=" " alt="" coords="169,464,309,504"/>
<area shape="rect" id="Node000008" href="$stellar__policy_8cpp.html" title=" " alt="" coords="322,183,456,223"/> <area shape="poly" id="edge6_Node000003_Node000006" title=" " alt="" coords="241,328,242,463,236,463,235,328"/>
<area shape="poly" id="edge10_Node000007_Node000008" title=" " alt="" coords="365,148,382,181,377,183,360,150"/> <area shape="rect" id="Node000005" href="$gridfire__context_8cpp.html" title=" " alt="" coords="5,464,145,504"/>
<area shape="poly" id="edge4_Node000004_Node000005" title=" " alt="" coords="108,431,88,465,84,462,103,428"/>
<area shape="poly" id="edge5_Node000004_Node000006" title=" " alt="" coords="174,424,218,461,214,465,170,428"/>
<area shape="poly" id="edge10_Node000009_Node000007" title=" " alt="" coords="441,325,392,377,388,373,437,321"/>
<area shape="poly" id="edge11_Node000009_Node000008" title=" " alt="" coords="508,319,571,365,568,369,505,323"/>
<area shape="poly" id="edge13_Node000010_Node000002" title=" " alt="" coords="479,146,430,184,427,180,476,142"/>
<area shape="rect" id="Node000011" href="$stellar__policy_8cpp.html" title=" " alt="" coords="491,183,624,223"/>
<area shape="poly" id="edge14_Node000010_Node000011" title=" " alt="" coords="534,148,550,181,546,183,529,150"/>
</map> </map>

View File

@@ -1 +1 @@
26665253727f9a431f95b4d5e476a4c9 f7afacec333ae4ac1380a178dce742b4

View File

@@ -4,10 +4,9 @@
<!-- Generated by graphviz version 13.0.1 (20250615.1724) <!-- Generated by graphviz version 13.0.1 (20250615.1724)
--> -->
<!-- Title: src/include/gridfire/policy/chains.h Pages: 1 --> <!-- Title: src/include/gridfire/policy/chains.h Pages: 1 -->
<svg width="458pt" height="305pt" <!--zoomable 382 -->
viewBox="0.00 0.00 458.00 305.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<svg id="main" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve"> <svg id="main" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" onload="init(evt)">
<style type="text/css"><![CDATA[ <style type="text/css"><![CDATA[
.node, .edge {opacity: 0.7;} .node, .edge {opacity: 0.7;}
@@ -15,17 +14,54 @@
.edge:hover path { stroke: red; } .edge:hover path { stroke: red; }
.edge:hover polygon { stroke: red; fill: red; } .edge:hover polygon { stroke: red; fill: red; }
]]></style> ]]></style>
<defs>
<circle id="rim" cx="0" cy="0" r="7"/>
<circle id="rim2" cx="0" cy="0" r="3.5"/>
<g id="zoomPlus">
<use xlink:href="#rim" fill="#404040"><set attributeName="fill" to="#808080" begin="zoomplus.mouseover" end="zoomplus.mouseout"/></use>
<path d="M-4,0h8M0,-4v8" fill="none" stroke="white" stroke-width="1.5" pointer-events="none"/>
</g>
<g id="zoomMin">
<use xlink:href="#rim" fill="#404040"><set attributeName="fill" to="#808080" begin="zoomminus.mouseover" end="zoomminus.mouseout"/></use>
<path d="M-4,0h8" fill="none" stroke="white" stroke-width="1.5" pointer-events="none"/>
</g>
<g id="arrowUp" transform="translate(30 24)">
<use xlink:href="#rim"/>
<path pointer-events="none" fill="none" stroke="white" stroke-width="1.5" d="M0,-3.0v7 M-2.5,-0.5L0,-3.0L2.5,-0.5"/>
</g>
<g id="arrowRight" transform="rotate(90) translate(36 -43)">
<use xlink:href="#rim"/>
<path pointer-events="none" fill="none" stroke="white" stroke-width="1.5" d="M0,-3.0v7 M-2.5,-0.5L0,-3.0L2.5,-0.5"/>
</g>
<g id="arrowDown" transform="rotate(180) translate(-30 -48)">
<use xlink:href="#rim"/>
<path pointer-events="none" fill="none" stroke="white" stroke-width="1.5" d="M0,-3.0v7 M-2.5,-0.5L0,-3.0L2.5,-0.5"/>
</g>
<g id="arrowLeft" transform="rotate(270) translate(-36 17)">
<use xlink:href="#rim"/>
<path pointer-events="none" fill="none" stroke="white" stroke-width="1.5" d="M0,-3.0v7 M-2.5,-0.5L0,-3.0L2.5,-0.5"/>
</g>
<g id="resetDef">
<use xlink:href="#rim2" fill="#404040"><set attributeName="fill" to="#808080" begin="reset.mouseover" end="reset.mouseout"/></use>
</g>
</defs>
<script type="application/ecmascript">
var viewWidth = 585;
var viewHeight = 382;
var sectionId = 'dynsection-1';
</script>
<script type="application/ecmascript" xlink:href="svg.min.js"/> <script type="application/ecmascript" xlink:href="svg.min.js"/>
<svg id="graph" class="graph"> <svg id="graph" class="graph">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 300.5)"> <g id="viewport">
<title>src/include/gridfire/policy/chains.h</title> <title>src/include/gridfire/policy/chains.h</title>
<!-- Node1 --> <!-- Node1 -->
<g id="Node000001" class="node"> <g id="Node000001" class="node">
<title>Node1</title> <title>Node1</title>
<g id="a_Node000001"><a xlink:title="Concrete implementations of ReactionChainPolicy for key stellar reaction chains."> <g id="a_Node000001"><a xlink:title="Concrete implementations of ReactionChainPolicy for key stellar reaction chains.">
<polygon fill="#999999" stroke="#666666" points="303.5,-296.5 208,-296.5 208,-266 303.5,-266 303.5,-296.5"/> <polygon fill="#999999" stroke="#666666" points="430,-374.25 334.5,-374.25 334.5,-343.75 430,-343.75 430,-374.25"/>
<text xml:space="preserve" text-anchor="start" x="216" y="-283" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="342.5" y="-360.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="255.75" y="-271.75" font-family="Helvetica,sans-Serif" font-size="10.00">/policy/chains.h</text> <text xml:space="preserve" text-anchor="middle" x="382.25" y="-349.5" font-family="Helvetica,sans-Serif" font-size="10.00">/policy/chains.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -33,9 +69,9 @@
<g id="Node000002" class="node"> <g id="Node000002" class="node">
<title>Node2</title> <title>Node2</title>
<g id="a_Node000002"><a xlink:href="policy_8h.html" target="_top" xlink:title=" "> <g id="a_Node000002"><a xlink:href="policy_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="219.5,-163.5 124,-163.5 124,-133 219.5,-133 219.5,-163.5"/> <polygon fill="white" stroke="#666666" points="346,-241.25 250.5,-241.25 250.5,-210.75 346,-210.75 346,-241.25"/>
<text xml:space="preserve" text-anchor="start" x="132" y="-150" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="258.5" y="-227.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="171.75" y="-138.75" font-family="Helvetica,sans-Serif" font-size="10.00">/policy/policy.h</text> <text xml:space="preserve" text-anchor="middle" x="298.25" y="-216.5" font-family="Helvetica,sans-Serif" font-size="10.00">/policy/policy.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -43,45 +79,45 @@
<g id="edge1_Node000001_Node000002" class="edge"> <g id="edge1_Node000001_Node000002" class="edge">
<title>Node1&#45;&gt;Node2</title> <title>Node1&#45;&gt;Node2</title>
<g id="a_edge1_Node000001_Node000002"><a xlink:title=" "> <g id="a_edge1_Node000001_Node000002"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M219.71,-259.18C208.96,-251.28 198.09,-241.41 190.75,-230 177.58,-209.53 173.52,-180.9 172.28,-163.8"/> <path fill="none" stroke="#63b8ff" d="M346.21,-336.93C335.46,-329.03 324.59,-319.16 317.25,-307.75 304.08,-287.28 300.02,-258.65 298.78,-241.55"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="217.57,-261.95 227.79,-264.74 221.54,-256.19 217.57,-261.95"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="344.07,-339.7 354.29,-342.49 348.04,-333.94 344.07,-339.7"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node7 --> <!-- Node10 -->
<g id="Node000007" class="node"> <g id="Node000010" class="node">
<title>Node7</title> <title>Node10</title>
<g id="a_Node000007"><a xlink:href="stellar__policy_8h.html" target="_top" xlink:title="High&#45;level concrete NetworkPolicy for specific stellar environments."> <g id="a_Node000010"><a xlink:href="stellar__policy_8h.html" target="_top" xlink:title="High&#45;level concrete NetworkPolicy for specific stellar environments.">
<polygon fill="white" stroke="#666666" points="311.38,-230 200.12,-230 200.12,-199.5 311.38,-199.5 311.38,-230"/> <polygon fill="white" stroke="#666666" points="437.88,-307.75 326.62,-307.75 326.62,-277.25 437.88,-277.25 437.88,-307.75"/>
<text xml:space="preserve" text-anchor="start" x="208.12" y="-216.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="334.62" y="-294.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="255.75" y="-205.25" font-family="Helvetica,sans-Serif" font-size="10.00">/policy/stellar_policy.h</text> <text xml:space="preserve" text-anchor="middle" x="382.25" y="-283" font-family="Helvetica,sans-Serif" font-size="10.00">/policy/stellar_policy.h</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node1&#45;&gt;Node7 --> <!-- Node1&#45;&gt;Node10 -->
<g id="edge8_Node000001_Node000007" class="edge"> <g id="edge12_Node000001_Node000010" class="edge">
<title>Node1&#45;&gt;Node7</title> <title>Node1&#45;&gt;Node10</title>
<g id="a_edge8_Node000001_Node000007"><a xlink:title=" "> <g id="a_edge12_Node000001_Node000010"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M255.75,-254.31C255.75,-246.14 255.75,-237.41 255.75,-230.33"/> <path fill="none" stroke="#63b8ff" d="M382.25,-332.06C382.25,-323.89 382.25,-315.16 382.25,-308.08"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="252.25,-254.1 255.75,-264.1 259.25,-254.1 252.25,-254.1"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="378.75,-331.85 382.25,-341.85 385.75,-331.85 378.75,-331.85"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node9 --> <!-- Node12 -->
<g id="Node000009" class="node"> <g id="Node000012" class="node">
<title>Node9</title> <title>Node12</title>
<g id="a_Node000009"><a xlink:href="chains_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000012"><a xlink:href="chains_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="450.25,-224.38 329.25,-224.38 329.25,-205.12 450.25,-205.12 450.25,-224.38"/> <polygon fill="white" stroke="#666666" points="576.75,-302.12 455.75,-302.12 455.75,-282.88 576.75,-282.88 576.75,-302.12"/>
<text xml:space="preserve" text-anchor="middle" x="389.75" y="-210.88" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/policy/chains.cpp</text> <text xml:space="preserve" text-anchor="middle" x="516.25" y="-288.62" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/policy/chains.cpp</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node1&#45;&gt;Node9 --> <!-- Node1&#45;&gt;Node12 -->
<g id="edge11_Node000001_Node000009" class="edge"> <g id="edge15_Node000001_Node000012" class="edge">
<title>Node1&#45;&gt;Node9</title> <title>Node1&#45;&gt;Node12</title>
<g id="a_edge11_Node000001_Node000009"><a xlink:title=" "> <g id="a_edge15_Node000001_Node000012"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M296.4,-260.69C321.22,-248.74 351.79,-234.02 371.03,-224.76"/> <path fill="none" stroke="#63b8ff" d="M422.9,-338.44C447.72,-326.49 478.29,-311.77 497.53,-302.51"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="295.01,-257.47 287.52,-264.96 298.05,-263.77 295.01,-257.47"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="421.51,-335.22 414.02,-342.71 424.55,-341.52 421.51,-335.22"/>
</a> </a>
</g> </g>
</g> </g>
@@ -89,9 +125,9 @@
<g id="Node000003" class="node"> <g id="Node000003" class="node">
<title>Node3</title> <title>Node3</title>
<g id="a_Node000003"><a xlink:href="gridfire_8h.html" target="_top" xlink:title=" "> <g id="a_Node000003"><a xlink:href="gridfire_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="95.5,-97 0,-97 0,-66.5 95.5,-66.5 95.5,-97"/> <polygon fill="white" stroke="#666666" points="222,-174.75 126.5,-174.75 126.5,-144.25 222,-144.25 222,-174.75"/>
<text xml:space="preserve" text-anchor="start" x="8" y="-83.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="134.5" y="-161.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="47.75" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">/gridfire.h</text> <text xml:space="preserve" text-anchor="middle" x="174.25" y="-150" font-family="Helvetica,sans-Serif" font-size="10.00">/gridfire.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -99,115 +135,203 @@
<g id="edge2_Node000002_Node000003" class="edge"> <g id="edge2_Node000002_Node000003" class="edge">
<title>Node2&#45;&gt;Node3</title> <title>Node2&#45;&gt;Node3</title>
<g id="a_edge2_Node000002_Node000003"><a xlink:title=" "> <g id="a_edge2_Node000002_Node000003"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M133.64,-127.43C114.97,-117.71 92.88,-106.22 75.78,-97.33"/> <path fill="none" stroke="#63b8ff" d="M260.14,-205.18C241.47,-195.46 219.38,-183.97 202.28,-175.08"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="131.78,-130.41 142.27,-131.92 135.01,-124.2 131.78,-130.41"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="258.28,-208.16 268.77,-209.67 261.51,-201.95 258.28,-208.16"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node4 --> <!-- Node7 -->
<g id="Node000004" class="node"> <g id="Node000007" class="node">
<title>Node4</title> <title>Node7</title>
<g id="a_Node000004"><a xlink:href="policy_2bindings_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000007"><a xlink:href="policy_2bindings_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="213.75,-24.88 65.75,-24.88 65.75,-5.63 213.75,-5.63 213.75,-24.88"/> <polygon fill="white" stroke="#666666" points="354.25,-97 206.25,-97 206.25,-77.75 354.25,-77.75 354.25,-97"/>
<text xml:space="preserve" text-anchor="middle" x="139.75" y="-11.38" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/policy/bindings.cpp</text> <text xml:space="preserve" text-anchor="middle" x="280.25" y="-83.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/policy/bindings.cpp</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node2&#45;&gt;Node4 --> <!-- Node2&#45;&gt;Node7 -->
<g id="edge3_Node000002_Node000004" class="edge"> <g id="edge7_Node000002_Node000007" class="edge">
<title>Node2&#45;&gt;Node4</title> <title>Node2&#45;&gt;Node7</title>
<g id="a_edge3_Node000002_Node000004"><a xlink:title=" "> <g id="a_edge7_Node000002_Node000007"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M154.63,-123.07C149.89,-115.13 145.35,-106.02 142.75,-97 135.45,-71.66 137.26,-39.99 138.73,-24.95"/> <path fill="none" stroke="#63b8ff" d="M280.92,-200.88C276.18,-192.94 271.68,-183.82 269.25,-174.75 261.86,-147.15 271.38,-113.22 276.86,-97.36"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="151.66,-124.92 160,-131.45 157.55,-121.14 151.66,-124.92"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="277.97,-202.75 286.33,-209.25 283.85,-198.95 277.97,-202.75"/>
</a>
</g>
</g>
<!-- Node5 -->
<g id="Node000005" class="node">
<title>Node5</title>
<g id="a_Node000005"><a xlink:href="py__policy_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="377.88,-30.5 239.62,-30.5 239.62,0 377.88,0 377.88,-30.5"/>
<text xml:space="preserve" text-anchor="start" x="247.62" y="-17" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/policy/trampoline</text>
<text xml:space="preserve" text-anchor="middle" x="308.75" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">/py_policy.cpp</text>
</a>
</g>
</g>
<!-- Node2&#45;&gt;Node5 -->
<g id="edge4_Node000002_Node000005" class="edge">
<title>Node2&#45;&gt;Node5</title>
<g id="a_edge4_Node000002_Node000005"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M230.64,-130.35C259.39,-120.89 289.71,-108.68 298.75,-97 313.53,-77.9 313.03,-48.29 311.06,-30.73"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="229.65,-127 221.19,-133.38 231.78,-133.66 229.65,-127"/>
</a>
</g>
</g>
<!-- Node6 -->
<g id="Node000006" class="node">
<title>Node6</title>
<g id="a_Node000006"><a xlink:href="py__policy_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="289.88,-97 151.62,-97 151.62,-66.5 289.88,-66.5 289.88,-97"/>
<text xml:space="preserve" text-anchor="start" x="159.62" y="-83.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/policy/trampoline</text>
<text xml:space="preserve" text-anchor="middle" x="220.75" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">/py_policy.h</text>
</a>
</g>
</g>
<!-- Node2&#45;&gt;Node6 -->
<g id="edge5_Node000002_Node000006" class="edge">
<title>Node2&#45;&gt;Node6</title>
<g id="a_edge5_Node000002_Node000006"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M189.74,-123.57C196.42,-114.78 203.79,-105.07 209.68,-97.33"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="187.05,-121.33 183.78,-131.41 192.62,-125.56 187.05,-121.33"/>
</a>
</g>
</g>
<!-- Node6&#45;&gt;Node4 -->
<g id="edge6_Node000006_Node000004" class="edge">
<title>Node6&#45;&gt;Node4</title>
<g id="a_edge6_Node000006_Node000004"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M193.69,-59.2C179.07,-47.56 161.81,-33.82 150.83,-25.07"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="191.18,-61.68 201.19,-65.17 195.54,-56.2 191.18,-61.68"/>
</a>
</g>
</g>
<!-- Node6&#45;&gt;Node5 -->
<g id="edge7_Node000006_Node000005" class="edge">
<title>Node6&#45;&gt;Node5</title>
<g id="a_edge7_Node000006_Node000005"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M249.65,-59.57C262.49,-50.16 277.29,-39.31 288.86,-30.83"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="247.94,-56.48 241.94,-65.22 252.07,-62.13 247.94,-56.48"/>
</a>
</g>
</g>
<!-- Node7&#45;&gt;Node2 -->
<g id="edge9_Node000007_Node000002" class="edge">
<title>Node7&#45;&gt;Node2</title>
<g id="a_edge9_Node000007_Node000002"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M227.81,-192.29C215.63,-182.94 201.68,-172.23 190.74,-163.83"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="225.43,-194.88 235.49,-198.19 229.69,-189.33 225.43,-194.88"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node8 --> <!-- Node8 -->
<g id="Node000008" class="node"> <g id="Node000008" class="node">
<title>Node8</title> <title>Node8</title>
<g id="a_Node000008"><a xlink:href="stellar__policy_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000008"><a xlink:href="py__policy_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="337.75,-163.5 237.75,-163.5 237.75,-133 337.75,-133 337.75,-163.5"/> <polygon fill="white" stroke="#666666" points="512.38,-102.62 374.12,-102.62 374.12,-72.12 512.38,-72.12 512.38,-102.62"/>
<text xml:space="preserve" text-anchor="start" x="245.75" y="-150" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/policy/stellar</text> <text xml:space="preserve" text-anchor="start" x="382.12" y="-89.12" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/policy/trampoline</text>
<text xml:space="preserve" text-anchor="middle" x="287.75" y="-138.75" font-family="Helvetica,sans-Serif" font-size="10.00">_policy.cpp</text> <text xml:space="preserve" text-anchor="middle" x="443.25" y="-77.88" font-family="Helvetica,sans-Serif" font-size="10.00">/py_policy.cpp</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node7&#45;&gt;Node8 --> <!-- Node2&#45;&gt;Node8 -->
<g id="edge10_Node000007_Node000008" class="edge"> <g id="edge8_Node000002_Node000008" class="edge">
<title>Node7&#45;&gt;Node8</title> <title>Node2&#45;&gt;Node8</title>
<g id="a_edge10_Node000007_Node000008"><a xlink:title=" "> <g id="a_edge8_Node000002_Node000008"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M268.06,-188.94C272.27,-180.46 276.84,-171.24 280.52,-163.83"/> <path fill="none" stroke="#63b8ff" d="M357.08,-207.7C385.62,-198.17 415.77,-186.01 425.25,-174.75 442.42,-154.36 444.56,-121.78 444.18,-103.01"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="264.99,-187.24 263.68,-197.76 271.26,-190.36 264.99,-187.24"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="356.13,-204.33 347.7,-210.75 358.29,-210.99 356.13,-204.33"/>
</a>
</g>
</g>
<!-- Node9 -->
<g id="Node000009" class="node">
<title>Node9</title>
<g id="a_Node000009"><a xlink:href="py__policy_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="416.38,-174.75 278.12,-174.75 278.12,-144.25 416.38,-144.25 416.38,-174.75"/>
<text xml:space="preserve" text-anchor="start" x="286.12" y="-161.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/policy/trampoline</text>
<text xml:space="preserve" text-anchor="middle" x="347.25" y="-150" font-family="Helvetica,sans-Serif" font-size="10.00">/py_policy.h</text>
</a>
</g>
</g>
<!-- Node2&#45;&gt;Node9 -->
<g id="edge9_Node000002_Node000009" class="edge">
<title>Node2&#45;&gt;Node9</title>
<g id="a_edge9_Node000002_Node000009"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M316.24,-201.32C322.92,-192.53 330.29,-182.82 336.18,-175.08"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="313.55,-199.08 310.28,-209.16 319.12,-203.31 313.55,-199.08"/>
</a>
</g>
</g>
<!-- Node4 -->
<g id="Node000004" class="node">
<title>Node4</title>
<g id="a_Node000004"><a xlink:href="gridfire__context_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="147.5,-108.25 37,-108.25 37,-66.5 147.5,-66.5 147.5,-108.25"/>
<text xml:space="preserve" text-anchor="start" x="45" y="-94.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/extern/include</text>
<text xml:space="preserve" text-anchor="start" x="45" y="-83.5" font-family="Helvetica,sans-Serif" font-size="10.00">/gridfire/extern/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="92.25" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">_context.h</text>
</a>
</g>
</g>
<!-- Node3&#45;&gt;Node4 -->
<g id="edge3_Node000003_Node000004" class="edge">
<title>Node3&#45;&gt;Node4</title>
<g id="a_edge3_Node000003_Node000004"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M148.6,-136.56C138.2,-127.67 126.26,-117.46 116.06,-108.74"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="146.23,-139.15 156.11,-142.99 150.78,-133.83 146.23,-139.15"/>
</a>
</g>
</g>
<!-- Node6 -->
<g id="Node000006" class="node">
<title>Node6</title>
<g id="a_Node000006"><a xlink:href="gridfire__extern_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="227.5,-30.5 123,-30.5 123,0 227.5,0 227.5,-30.5"/>
<text xml:space="preserve" text-anchor="start" x="131" y="-17" font-family="Helvetica,sans-Serif" font-size="10.00">src/extern/lib/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="175.25" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">_extern.cpp</text>
</a>
</g>
</g>
<!-- Node3&#45;&gt;Node6 -->
<g id="edge6_Node000003_Node000006" class="edge">
<title>Node3&#45;&gt;Node6</title>
<g id="a_edge6_Node000003_Node000006"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M174.43,-132.6C174.64,-102.68 174.98,-54.53 175.15,-30.65"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="170.93,-132.27 174.36,-142.3 177.93,-132.32 170.93,-132.27"/>
</a>
</g>
</g>
<!-- Node5 -->
<g id="Node000005" class="node">
<title>Node5</title>
<g id="a_Node000005"><a xlink:href="gridfire__context_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="104.5,-30.5 0,-30.5 0,0 104.5,0 104.5,-30.5"/>
<text xml:space="preserve" text-anchor="start" x="8" y="-17" font-family="Helvetica,sans-Serif" font-size="10.00">src/extern/lib/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="52.25" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">_context.cpp</text>
</a>
</g>
</g>
<!-- Node4&#45;&gt;Node5 -->
<g id="edge4_Node000004_Node000005" class="edge">
<title>Node4&#45;&gt;Node5</title>
<g id="a_edge4_Node000004_Node000005"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M75.13,-56.36C70.06,-47.47 64.73,-38.13 60.49,-30.7"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="71.94,-57.83 79.93,-64.78 78.02,-54.36 71.94,-57.83"/>
</a>
</g>
</g>
<!-- Node4&#45;&gt;Node6 -->
<g id="edge5_Node000004_Node000006" class="edge">
<title>Node4&#45;&gt;Node6</title>
<g id="a_edge5_Node000004_Node000006"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M125.01,-58.7C136.24,-49.21 148.36,-38.97 157.89,-30.92"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="122.79,-55.99 117.41,-65.12 127.31,-61.33 122.79,-55.99"/>
</a>
</g>
</g>
<!-- Node9&#45;&gt;Node7 -->
<g id="edge10_Node000009_Node000007" class="edge">
<title>Node9&#45;&gt;Node7</title>
<g id="a_edge10_Node000009_Node000007"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M325.55,-135.79C312.96,-122.61 297.81,-106.76 288.62,-97.13"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="322.88,-138.06 332.32,-142.88 327.94,-133.23 322.88,-138.06"/>
</a>
</g>
</g>
<!-- Node9&#45;&gt;Node8 -->
<g id="edge11_Node000009_Node000008" class="edge">
<title>Node9&#45;&gt;Node8</title>
<g id="a_edge11_Node000009_Node000008"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M376.17,-137.37C391.42,-126.23 409.75,-112.85 423.38,-102.89"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="374.37,-134.35 368.36,-143.08 378.5,-140 374.37,-134.35"/>
</a>
</g>
</g>
<!-- Node10&#45;&gt;Node2 -->
<g id="edge13_Node000010_Node000002" class="edge">
<title>Node10&#45;&gt;Node2</title>
<g id="a_edge13_Node000010_Node000002"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M354.31,-270.04C342.13,-260.69 328.18,-249.98 317.24,-241.58"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="351.93,-272.63 361.99,-275.94 356.19,-267.08 351.93,-272.63"/>
</a>
</g>
</g>
<!-- Node11 -->
<g id="Node000011" class="node">
<title>Node11</title>
<g id="a_Node000011"><a xlink:href="stellar__policy_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="464.25,-241.25 364.25,-241.25 364.25,-210.75 464.25,-210.75 464.25,-241.25"/>
<text xml:space="preserve" text-anchor="start" x="372.25" y="-227.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/policy/stellar</text>
<text xml:space="preserve" text-anchor="middle" x="414.25" y="-216.5" font-family="Helvetica,sans-Serif" font-size="10.00">_policy.cpp</text>
</a>
</g>
</g>
<!-- Node10&#45;&gt;Node11 -->
<g id="edge14_Node000010_Node000011" class="edge">
<title>Node10&#45;&gt;Node11</title>
<g id="a_edge14_Node000010_Node000011"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M394.56,-266.69C398.77,-258.21 403.34,-248.99 407.02,-241.58"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="391.49,-264.99 390.18,-275.51 397.76,-268.11 391.49,-264.99"/>
</a> </a>
</g> </g>
</g> </g>
</g> </g>
</svg> </svg>
<g id="navigator" transform="translate(0 0)" fill="#404254">
<rect fill="#f2f5e9" fill-opacity="0.5" stroke="#606060" stroke-width=".5" x="0" y="0" width="60" height="60"/>
<use id="zoomplus" xlink:href="#zoomPlus" x="17" y="9" onmousedown="handleZoom(evt,'in')"/>
<use id="zoomminus" xlink:href="#zoomMin" x="42" y="9" onmousedown="handleZoom(evt,'out')"/>
<use id="reset" xlink:href="#resetDef" x="30" y="36" onmousedown="handleReset()"/>
<use id="arrowup" xlink:href="#arrowUp" x="0" y="0" onmousedown="handlePan(0,-1)"/>
<use id="arrowright" xlink:href="#arrowRight" x="0" y="0" onmousedown="handlePan(1,0)"/>
<use id="arrowdown" xlink:href="#arrowDown" x="0" y="0" onmousedown="handlePan(0,1)"/>
<use id="arrowleft" xlink:href="#arrowLeft" x="0" y="0" onmousedown="handlePan(-1,0)"/>
</g>
<svg viewBox="0 0 15 15" width="100%" height="30px" preserveAspectRatio="xMaxYMin meet">
<g id="arrow_out" transform="scale(0.3 0.3)">
<a xlink:href="chains_8h__dep__incl_org.svg" target="_base">
<rect id="button" ry="5" rx="5" y="6" x="6" height="38" width="38"
fill="#f2f5e9" fill-opacity="0.5" stroke="#606060" stroke-width="1.0"/>
<path id="arrow"
d="M 11.500037,31.436501 C 11.940474,20.09759 22.043105,11.32322 32.158766,21.979434 L 37.068811,17.246167 C 37.068811,17.246167 37.088388,32 37.088388,32 L 22.160133,31.978069 C 22.160133,31.978069 26.997745,27.140456 26.997745,27.140456 C 18.528582,18.264221 13.291696,25.230495 11.500037,31.436501 z"
style="fill:#404040;"/>
</a>
</g>
</svg> </svg>
<style type='text/css'> <style type='text/css'>

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 17 KiB

View File

@@ -4,17 +4,17 @@
<!-- Generated by graphviz version 13.0.1 (20250615.1724) <!-- Generated by graphviz version 13.0.1 (20250615.1724)
--> -->
<!-- Title: src/include/gridfire/policy/chains.h Pages: 1 --> <!-- Title: src/include/gridfire/policy/chains.h Pages: 1 -->
<svg width="458pt" height="305pt" <svg width="585pt" height="382pt"
viewBox="0.00 0.00 458.00 305.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> viewBox="0.00 0.00 585.00 382.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 300.5)"> <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 378.25)">
<title>src/include/gridfire/policy/chains.h</title> <title>src/include/gridfire/policy/chains.h</title>
<!-- Node1 --> <!-- Node1 -->
<g id="Node000001" class="node"> <g id="Node000001" class="node">
<title>Node1</title> <title>Node1</title>
<g id="a_Node000001"><a xlink:title="Concrete implementations of ReactionChainPolicy for key stellar reaction chains."> <g id="a_Node000001"><a xlink:title="Concrete implementations of ReactionChainPolicy for key stellar reaction chains.">
<polygon fill="#999999" stroke="#666666" points="303.5,-296.5 208,-296.5 208,-266 303.5,-266 303.5,-296.5"/> <polygon fill="#999999" stroke="#666666" points="430,-374.25 334.5,-374.25 334.5,-343.75 430,-343.75 430,-374.25"/>
<text xml:space="preserve" text-anchor="start" x="216" y="-283" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="342.5" y="-360.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="255.75" y="-271.75" font-family="Helvetica,sans-Serif" font-size="10.00">/policy/chains.h</text> <text xml:space="preserve" text-anchor="middle" x="382.25" y="-349.5" font-family="Helvetica,sans-Serif" font-size="10.00">/policy/chains.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -22,9 +22,9 @@
<g id="Node000002" class="node"> <g id="Node000002" class="node">
<title>Node2</title> <title>Node2</title>
<g id="a_Node000002"><a xlink:href="policy_8h.html" target="_top" xlink:title=" "> <g id="a_Node000002"><a xlink:href="policy_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="219.5,-163.5 124,-163.5 124,-133 219.5,-133 219.5,-163.5"/> <polygon fill="white" stroke="#666666" points="346,-241.25 250.5,-241.25 250.5,-210.75 346,-210.75 346,-241.25"/>
<text xml:space="preserve" text-anchor="start" x="132" y="-150" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="258.5" y="-227.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="171.75" y="-138.75" font-family="Helvetica,sans-Serif" font-size="10.00">/policy/policy.h</text> <text xml:space="preserve" text-anchor="middle" x="298.25" y="-216.5" font-family="Helvetica,sans-Serif" font-size="10.00">/policy/policy.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -32,45 +32,45 @@
<g id="edge1_Node000001_Node000002" class="edge"> <g id="edge1_Node000001_Node000002" class="edge">
<title>Node1&#45;&gt;Node2</title> <title>Node1&#45;&gt;Node2</title>
<g id="a_edge1_Node000001_Node000002"><a xlink:title=" "> <g id="a_edge1_Node000001_Node000002"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M219.71,-259.18C208.96,-251.28 198.09,-241.41 190.75,-230 177.58,-209.53 173.52,-180.9 172.28,-163.8"/> <path fill="none" stroke="#63b8ff" d="M346.21,-336.93C335.46,-329.03 324.59,-319.16 317.25,-307.75 304.08,-287.28 300.02,-258.65 298.78,-241.55"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="217.57,-261.95 227.79,-264.74 221.54,-256.19 217.57,-261.95"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="344.07,-339.7 354.29,-342.49 348.04,-333.94 344.07,-339.7"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node7 --> <!-- Node10 -->
<g id="Node000007" class="node"> <g id="Node000010" class="node">
<title>Node7</title> <title>Node10</title>
<g id="a_Node000007"><a xlink:href="stellar__policy_8h.html" target="_top" xlink:title="High&#45;level concrete NetworkPolicy for specific stellar environments."> <g id="a_Node000010"><a xlink:href="stellar__policy_8h.html" target="_top" xlink:title="High&#45;level concrete NetworkPolicy for specific stellar environments.">
<polygon fill="white" stroke="#666666" points="311.38,-230 200.12,-230 200.12,-199.5 311.38,-199.5 311.38,-230"/> <polygon fill="white" stroke="#666666" points="437.88,-307.75 326.62,-307.75 326.62,-277.25 437.88,-277.25 437.88,-307.75"/>
<text xml:space="preserve" text-anchor="start" x="208.12" y="-216.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="334.62" y="-294.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="255.75" y="-205.25" font-family="Helvetica,sans-Serif" font-size="10.00">/policy/stellar_policy.h</text> <text xml:space="preserve" text-anchor="middle" x="382.25" y="-283" font-family="Helvetica,sans-Serif" font-size="10.00">/policy/stellar_policy.h</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node1&#45;&gt;Node7 --> <!-- Node1&#45;&gt;Node10 -->
<g id="edge8_Node000001_Node000007" class="edge"> <g id="edge12_Node000001_Node000010" class="edge">
<title>Node1&#45;&gt;Node7</title> <title>Node1&#45;&gt;Node10</title>
<g id="a_edge8_Node000001_Node000007"><a xlink:title=" "> <g id="a_edge12_Node000001_Node000010"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M255.75,-254.31C255.75,-246.14 255.75,-237.41 255.75,-230.33"/> <path fill="none" stroke="#63b8ff" d="M382.25,-332.06C382.25,-323.89 382.25,-315.16 382.25,-308.08"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="252.25,-254.1 255.75,-264.1 259.25,-254.1 252.25,-254.1"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="378.75,-331.85 382.25,-341.85 385.75,-331.85 378.75,-331.85"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node9 --> <!-- Node12 -->
<g id="Node000009" class="node"> <g id="Node000012" class="node">
<title>Node9</title> <title>Node12</title>
<g id="a_Node000009"><a xlink:href="chains_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000012"><a xlink:href="chains_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="450.25,-224.38 329.25,-224.38 329.25,-205.12 450.25,-205.12 450.25,-224.38"/> <polygon fill="white" stroke="#666666" points="576.75,-302.12 455.75,-302.12 455.75,-282.88 576.75,-282.88 576.75,-302.12"/>
<text xml:space="preserve" text-anchor="middle" x="389.75" y="-210.88" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/policy/chains.cpp</text> <text xml:space="preserve" text-anchor="middle" x="516.25" y="-288.62" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/policy/chains.cpp</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node1&#45;&gt;Node9 --> <!-- Node1&#45;&gt;Node12 -->
<g id="edge11_Node000001_Node000009" class="edge"> <g id="edge15_Node000001_Node000012" class="edge">
<title>Node1&#45;&gt;Node9</title> <title>Node1&#45;&gt;Node12</title>
<g id="a_edge11_Node000001_Node000009"><a xlink:title=" "> <g id="a_edge15_Node000001_Node000012"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M296.4,-260.69C321.22,-248.74 351.79,-234.02 371.03,-224.76"/> <path fill="none" stroke="#63b8ff" d="M422.9,-338.44C447.72,-326.49 478.29,-311.77 497.53,-302.51"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="295.01,-257.47 287.52,-264.96 298.05,-263.77 295.01,-257.47"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="421.51,-335.22 414.02,-342.71 424.55,-341.52 421.51,-335.22"/>
</a> </a>
</g> </g>
</g> </g>
@@ -78,9 +78,9 @@
<g id="Node000003" class="node"> <g id="Node000003" class="node">
<title>Node3</title> <title>Node3</title>
<g id="a_Node000003"><a xlink:href="gridfire_8h.html" target="_top" xlink:title=" "> <g id="a_Node000003"><a xlink:href="gridfire_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="95.5,-97 0,-97 0,-66.5 95.5,-66.5 95.5,-97"/> <polygon fill="white" stroke="#666666" points="222,-174.75 126.5,-174.75 126.5,-144.25 222,-144.25 222,-174.75"/>
<text xml:space="preserve" text-anchor="start" x="8" y="-83.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="134.5" y="-161.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="47.75" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">/gridfire.h</text> <text xml:space="preserve" text-anchor="middle" x="174.25" y="-150" font-family="Helvetica,sans-Serif" font-size="10.00">/gridfire.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -88,110 +88,177 @@
<g id="edge2_Node000002_Node000003" class="edge"> <g id="edge2_Node000002_Node000003" class="edge">
<title>Node2&#45;&gt;Node3</title> <title>Node2&#45;&gt;Node3</title>
<g id="a_edge2_Node000002_Node000003"><a xlink:title=" "> <g id="a_edge2_Node000002_Node000003"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M133.64,-127.43C114.97,-117.71 92.88,-106.22 75.78,-97.33"/> <path fill="none" stroke="#63b8ff" d="M260.14,-205.18C241.47,-195.46 219.38,-183.97 202.28,-175.08"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="131.78,-130.41 142.27,-131.92 135.01,-124.2 131.78,-130.41"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="258.28,-208.16 268.77,-209.67 261.51,-201.95 258.28,-208.16"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node4 --> <!-- Node7 -->
<g id="Node000004" class="node"> <g id="Node000007" class="node">
<title>Node4</title> <title>Node7</title>
<g id="a_Node000004"><a xlink:href="policy_2bindings_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000007"><a xlink:href="policy_2bindings_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="213.75,-24.88 65.75,-24.88 65.75,-5.63 213.75,-5.63 213.75,-24.88"/> <polygon fill="white" stroke="#666666" points="354.25,-97 206.25,-97 206.25,-77.75 354.25,-77.75 354.25,-97"/>
<text xml:space="preserve" text-anchor="middle" x="139.75" y="-11.38" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/policy/bindings.cpp</text> <text xml:space="preserve" text-anchor="middle" x="280.25" y="-83.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/policy/bindings.cpp</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node2&#45;&gt;Node4 --> <!-- Node2&#45;&gt;Node7 -->
<g id="edge3_Node000002_Node000004" class="edge"> <g id="edge7_Node000002_Node000007" class="edge">
<title>Node2&#45;&gt;Node4</title> <title>Node2&#45;&gt;Node7</title>
<g id="a_edge3_Node000002_Node000004"><a xlink:title=" "> <g id="a_edge7_Node000002_Node000007"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M154.63,-123.07C149.89,-115.13 145.35,-106.02 142.75,-97 135.45,-71.66 137.26,-39.99 138.73,-24.95"/> <path fill="none" stroke="#63b8ff" d="M280.92,-200.88C276.18,-192.94 271.68,-183.82 269.25,-174.75 261.86,-147.15 271.38,-113.22 276.86,-97.36"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="151.66,-124.92 160,-131.45 157.55,-121.14 151.66,-124.92"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="277.97,-202.75 286.33,-209.25 283.85,-198.95 277.97,-202.75"/>
</a>
</g>
</g>
<!-- Node5 -->
<g id="Node000005" class="node">
<title>Node5</title>
<g id="a_Node000005"><a xlink:href="py__policy_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="377.88,-30.5 239.62,-30.5 239.62,0 377.88,0 377.88,-30.5"/>
<text xml:space="preserve" text-anchor="start" x="247.62" y="-17" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/policy/trampoline</text>
<text xml:space="preserve" text-anchor="middle" x="308.75" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">/py_policy.cpp</text>
</a>
</g>
</g>
<!-- Node2&#45;&gt;Node5 -->
<g id="edge4_Node000002_Node000005" class="edge">
<title>Node2&#45;&gt;Node5</title>
<g id="a_edge4_Node000002_Node000005"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M230.64,-130.35C259.39,-120.89 289.71,-108.68 298.75,-97 313.53,-77.9 313.03,-48.29 311.06,-30.73"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="229.65,-127 221.19,-133.38 231.78,-133.66 229.65,-127"/>
</a>
</g>
</g>
<!-- Node6 -->
<g id="Node000006" class="node">
<title>Node6</title>
<g id="a_Node000006"><a xlink:href="py__policy_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="289.88,-97 151.62,-97 151.62,-66.5 289.88,-66.5 289.88,-97"/>
<text xml:space="preserve" text-anchor="start" x="159.62" y="-83.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/policy/trampoline</text>
<text xml:space="preserve" text-anchor="middle" x="220.75" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">/py_policy.h</text>
</a>
</g>
</g>
<!-- Node2&#45;&gt;Node6 -->
<g id="edge5_Node000002_Node000006" class="edge">
<title>Node2&#45;&gt;Node6</title>
<g id="a_edge5_Node000002_Node000006"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M189.74,-123.57C196.42,-114.78 203.79,-105.07 209.68,-97.33"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="187.05,-121.33 183.78,-131.41 192.62,-125.56 187.05,-121.33"/>
</a>
</g>
</g>
<!-- Node6&#45;&gt;Node4 -->
<g id="edge6_Node000006_Node000004" class="edge">
<title>Node6&#45;&gt;Node4</title>
<g id="a_edge6_Node000006_Node000004"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M193.69,-59.2C179.07,-47.56 161.81,-33.82 150.83,-25.07"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="191.18,-61.68 201.19,-65.17 195.54,-56.2 191.18,-61.68"/>
</a>
</g>
</g>
<!-- Node6&#45;&gt;Node5 -->
<g id="edge7_Node000006_Node000005" class="edge">
<title>Node6&#45;&gt;Node5</title>
<g id="a_edge7_Node000006_Node000005"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M249.65,-59.57C262.49,-50.16 277.29,-39.31 288.86,-30.83"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="247.94,-56.48 241.94,-65.22 252.07,-62.13 247.94,-56.48"/>
</a>
</g>
</g>
<!-- Node7&#45;&gt;Node2 -->
<g id="edge9_Node000007_Node000002" class="edge">
<title>Node7&#45;&gt;Node2</title>
<g id="a_edge9_Node000007_Node000002"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M227.81,-192.29C215.63,-182.94 201.68,-172.23 190.74,-163.83"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="225.43,-194.88 235.49,-198.19 229.69,-189.33 225.43,-194.88"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node8 --> <!-- Node8 -->
<g id="Node000008" class="node"> <g id="Node000008" class="node">
<title>Node8</title> <title>Node8</title>
<g id="a_Node000008"><a xlink:href="stellar__policy_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000008"><a xlink:href="py__policy_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="337.75,-163.5 237.75,-163.5 237.75,-133 337.75,-133 337.75,-163.5"/> <polygon fill="white" stroke="#666666" points="512.38,-102.62 374.12,-102.62 374.12,-72.12 512.38,-72.12 512.38,-102.62"/>
<text xml:space="preserve" text-anchor="start" x="245.75" y="-150" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/policy/stellar</text> <text xml:space="preserve" text-anchor="start" x="382.12" y="-89.12" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/policy/trampoline</text>
<text xml:space="preserve" text-anchor="middle" x="287.75" y="-138.75" font-family="Helvetica,sans-Serif" font-size="10.00">_policy.cpp</text> <text xml:space="preserve" text-anchor="middle" x="443.25" y="-77.88" font-family="Helvetica,sans-Serif" font-size="10.00">/py_policy.cpp</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node7&#45;&gt;Node8 --> <!-- Node2&#45;&gt;Node8 -->
<g id="edge10_Node000007_Node000008" class="edge"> <g id="edge8_Node000002_Node000008" class="edge">
<title>Node7&#45;&gt;Node8</title> <title>Node2&#45;&gt;Node8</title>
<g id="a_edge10_Node000007_Node000008"><a xlink:title=" "> <g id="a_edge8_Node000002_Node000008"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M268.06,-188.94C272.27,-180.46 276.84,-171.24 280.52,-163.83"/> <path fill="none" stroke="#63b8ff" d="M357.08,-207.7C385.62,-198.17 415.77,-186.01 425.25,-174.75 442.42,-154.36 444.56,-121.78 444.18,-103.01"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="264.99,-187.24 263.68,-197.76 271.26,-190.36 264.99,-187.24"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="356.13,-204.33 347.7,-210.75 358.29,-210.99 356.13,-204.33"/>
</a>
</g>
</g>
<!-- Node9 -->
<g id="Node000009" class="node">
<title>Node9</title>
<g id="a_Node000009"><a xlink:href="py__policy_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="416.38,-174.75 278.12,-174.75 278.12,-144.25 416.38,-144.25 416.38,-174.75"/>
<text xml:space="preserve" text-anchor="start" x="286.12" y="-161.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/policy/trampoline</text>
<text xml:space="preserve" text-anchor="middle" x="347.25" y="-150" font-family="Helvetica,sans-Serif" font-size="10.00">/py_policy.h</text>
</a>
</g>
</g>
<!-- Node2&#45;&gt;Node9 -->
<g id="edge9_Node000002_Node000009" class="edge">
<title>Node2&#45;&gt;Node9</title>
<g id="a_edge9_Node000002_Node000009"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M316.24,-201.32C322.92,-192.53 330.29,-182.82 336.18,-175.08"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="313.55,-199.08 310.28,-209.16 319.12,-203.31 313.55,-199.08"/>
</a>
</g>
</g>
<!-- Node4 -->
<g id="Node000004" class="node">
<title>Node4</title>
<g id="a_Node000004"><a xlink:href="gridfire__context_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="147.5,-108.25 37,-108.25 37,-66.5 147.5,-66.5 147.5,-108.25"/>
<text xml:space="preserve" text-anchor="start" x="45" y="-94.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/extern/include</text>
<text xml:space="preserve" text-anchor="start" x="45" y="-83.5" font-family="Helvetica,sans-Serif" font-size="10.00">/gridfire/extern/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="92.25" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">_context.h</text>
</a>
</g>
</g>
<!-- Node3&#45;&gt;Node4 -->
<g id="edge3_Node000003_Node000004" class="edge">
<title>Node3&#45;&gt;Node4</title>
<g id="a_edge3_Node000003_Node000004"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M148.6,-136.56C138.2,-127.67 126.26,-117.46 116.06,-108.74"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="146.23,-139.15 156.11,-142.99 150.78,-133.83 146.23,-139.15"/>
</a>
</g>
</g>
<!-- Node6 -->
<g id="Node000006" class="node">
<title>Node6</title>
<g id="a_Node000006"><a xlink:href="gridfire__extern_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="227.5,-30.5 123,-30.5 123,0 227.5,0 227.5,-30.5"/>
<text xml:space="preserve" text-anchor="start" x="131" y="-17" font-family="Helvetica,sans-Serif" font-size="10.00">src/extern/lib/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="175.25" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">_extern.cpp</text>
</a>
</g>
</g>
<!-- Node3&#45;&gt;Node6 -->
<g id="edge6_Node000003_Node000006" class="edge">
<title>Node3&#45;&gt;Node6</title>
<g id="a_edge6_Node000003_Node000006"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M174.43,-132.6C174.64,-102.68 174.98,-54.53 175.15,-30.65"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="170.93,-132.27 174.36,-142.3 177.93,-132.32 170.93,-132.27"/>
</a>
</g>
</g>
<!-- Node5 -->
<g id="Node000005" class="node">
<title>Node5</title>
<g id="a_Node000005"><a xlink:href="gridfire__context_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="104.5,-30.5 0,-30.5 0,0 104.5,0 104.5,-30.5"/>
<text xml:space="preserve" text-anchor="start" x="8" y="-17" font-family="Helvetica,sans-Serif" font-size="10.00">src/extern/lib/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="52.25" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">_context.cpp</text>
</a>
</g>
</g>
<!-- Node4&#45;&gt;Node5 -->
<g id="edge4_Node000004_Node000005" class="edge">
<title>Node4&#45;&gt;Node5</title>
<g id="a_edge4_Node000004_Node000005"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M75.13,-56.36C70.06,-47.47 64.73,-38.13 60.49,-30.7"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="71.94,-57.83 79.93,-64.78 78.02,-54.36 71.94,-57.83"/>
</a>
</g>
</g>
<!-- Node4&#45;&gt;Node6 -->
<g id="edge5_Node000004_Node000006" class="edge">
<title>Node4&#45;&gt;Node6</title>
<g id="a_edge5_Node000004_Node000006"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M125.01,-58.7C136.24,-49.21 148.36,-38.97 157.89,-30.92"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="122.79,-55.99 117.41,-65.12 127.31,-61.33 122.79,-55.99"/>
</a>
</g>
</g>
<!-- Node9&#45;&gt;Node7 -->
<g id="edge10_Node000009_Node000007" class="edge">
<title>Node9&#45;&gt;Node7</title>
<g id="a_edge10_Node000009_Node000007"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M325.55,-135.79C312.96,-122.61 297.81,-106.76 288.62,-97.13"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="322.88,-138.06 332.32,-142.88 327.94,-133.23 322.88,-138.06"/>
</a>
</g>
</g>
<!-- Node9&#45;&gt;Node8 -->
<g id="edge11_Node000009_Node000008" class="edge">
<title>Node9&#45;&gt;Node8</title>
<g id="a_edge11_Node000009_Node000008"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M376.17,-137.37C391.42,-126.23 409.75,-112.85 423.38,-102.89"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="374.37,-134.35 368.36,-143.08 378.5,-140 374.37,-134.35"/>
</a>
</g>
</g>
<!-- Node10&#45;&gt;Node2 -->
<g id="edge13_Node000010_Node000002" class="edge">
<title>Node10&#45;&gt;Node2</title>
<g id="a_edge13_Node000010_Node000002"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M354.31,-270.04C342.13,-260.69 328.18,-249.98 317.24,-241.58"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="351.93,-272.63 361.99,-275.94 356.19,-267.08 351.93,-272.63"/>
</a>
</g>
</g>
<!-- Node11 -->
<g id="Node000011" class="node">
<title>Node11</title>
<g id="a_Node000011"><a xlink:href="stellar__policy_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="464.25,-241.25 364.25,-241.25 364.25,-210.75 464.25,-210.75 464.25,-241.25"/>
<text xml:space="preserve" text-anchor="start" x="372.25" y="-227.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/policy/stellar</text>
<text xml:space="preserve" text-anchor="middle" x="414.25" y="-216.5" font-family="Helvetica,sans-Serif" font-size="10.00">_policy.cpp</text>
</a>
</g>
</g>
<!-- Node10&#45;&gt;Node11 -->
<g id="edge14_Node000010_Node000011" class="edge">
<title>Node10&#45;&gt;Node11</title>
<g id="a_edge14_Node000010_Node000011"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M394.56,-266.69C398.77,-258.21 403.34,-248.99 407.02,-241.58"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="391.49,-264.99 390.18,-275.51 397.76,-268.11 391.49,-264.99"/>
</a> </a>
</g> </g>
</g> </g>

Before

Width:  |  Height:  |  Size: 9.9 KiB

After

Width:  |  Height:  |  Size: 13 KiB

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>
@@ -124,7 +124,7 @@ $(function(){initNavTree('classes.html',''); initResizable(true); });
<dd><a class="el" href="classgridfire_1_1exceptions_1_1_failed_to_partition_engine_error.html">FailedToPartitionEngineError</a> (<a class="el" href="namespacegridfire_1_1exceptions.html">gridfire::exceptions</a>)</dd><dd><a class="el" href="classgridfire_1_1engine_1_1_file_defined_engine_view.html">FileDefinedEngineView</a> (<a class="el" href="namespacegridfire_1_1engine.html">gridfire::engine</a>)</dd><dd><a class="el" href="structgridfire_1_1engine_1_1_multiscale_partitioning_engine_view_1_1_flux_validation_result.html">MultiscalePartitioningEngineView::FluxValidationResult</a> (<a class="el" href="namespacegridfire_1_1engine.html">gridfire::engine</a>)</dd><dd><a class="el" href="structstd_1_1formatter_3_01gridfire_1_1engine_1_1_network_jacobian_01_4.html">formatter&lt; gridfire::engine::NetworkJacobian &gt;</a> (<a class="el" href="namespacestd.html">std</a>)</dd></dl> <dd><a class="el" href="classgridfire_1_1exceptions_1_1_failed_to_partition_engine_error.html">FailedToPartitionEngineError</a> (<a class="el" href="namespacegridfire_1_1exceptions.html">gridfire::exceptions</a>)</dd><dd><a class="el" href="classgridfire_1_1engine_1_1_file_defined_engine_view.html">FileDefinedEngineView</a> (<a class="el" href="namespacegridfire_1_1engine.html">gridfire::engine</a>)</dd><dd><a class="el" href="structgridfire_1_1engine_1_1_multiscale_partitioning_engine_view_1_1_flux_validation_result.html">MultiscalePartitioningEngineView::FluxValidationResult</a> (<a class="el" href="namespacegridfire_1_1engine.html">gridfire::engine</a>)</dd><dd><a class="el" href="structstd_1_1formatter_3_01gridfire_1_1engine_1_1_network_jacobian_01_4.html">formatter&lt; gridfire::engine::NetworkJacobian &gt;</a> (<a class="el" href="namespacestd.html">std</a>)</dd></dl>
<dl class="classindex even"> <dl class="classindex even">
<dt class="alphachar"><a id="letter_G" name="letter_G">G</a></dt> <dt class="alphachar"><a id="letter_G" name="letter_G">G</a></dt>
<dd><a class="el" href="classgridfire_1_1engine_1_1_graph_engine.html">GraphEngine</a> (<a class="el" href="namespacegridfire_1_1engine.html">gridfire::engine</a>)</dd><dd><a class="el" href="classgridfire_1_1exceptions_1_1_grid_fire_error.html">GridFireError</a> (<a class="el" href="namespacegridfire_1_1exceptions.html">gridfire::exceptions</a>)</dd><dd><a class="el" href="classgridfire_1_1partition_1_1_ground_state_partition_function.html">GroundStatePartitionFunction</a> (<a class="el" href="namespacegridfire_1_1partition.html">gridfire::partition</a>)</dd></dl> <dd><a class="el" href="interfacegridfire__mod_1_1gf__construct__engine__from__policy.html">gf_construct_engine_from_policy</a> (<a class="el" href="namespacegridfire__mod.html">gridfire_mod</a>)</dd><dd><a class="el" href="interfacegridfire__mod_1_1gf__construct__solver__from__engine.html">gf_construct_solver_from_engine</a> (<a class="el" href="namespacegridfire__mod.html">gridfire_mod</a>)</dd><dd><a class="el" href="interfacegridfire__mod_1_1gf__evolve.html">gf_evolve</a> (<a class="el" href="namespacegridfire__mod.html">gridfire_mod</a>)</dd><dd><a class="el" href="interfacegridfire__mod_1_1gf__free.html">gf_free</a> (<a class="el" href="namespacegridfire__mod.html">gridfire_mod</a>)</dd><dd><a class="el" href="interfacegridfire__mod_1_1gf__get__last__error__message.html">gf_get_last_error_message</a> (<a class="el" href="namespacegridfire__mod.html">gridfire_mod</a>)</dd><dd><a class="el" href="interfacegridfire__mod_1_1gf__init.html">gf_init</a> (<a class="el" href="namespacegridfire__mod.html">gridfire_mod</a>)</dd><dd><a class="el" href="interfacegridfire__mod_1_1gf__register__species.html">gf_register_species</a> (<a class="el" href="namespacegridfire__mod.html">gridfire_mod</a>)</dd><dd><a class="el" href="classgridfire_1_1engine_1_1_graph_engine.html">GraphEngine</a> (<a class="el" href="namespacegridfire_1_1engine.html">gridfire::engine</a>)</dd><dd><a class="el" href="structgridfire__mod_1_1gridfire.html">gridfire</a> (<a class="el" href="namespacegridfire__mod.html">gridfire_mod</a>)</dd><dd><a class="el" href="struct_grid_fire_context.html">GridFireContext</a></dd><dd><a class="el" href="classgridfire_1_1exceptions_1_1_grid_fire_error.html">GridFireError</a> (<a class="el" href="namespacegridfire_1_1exceptions.html">gridfire::exceptions</a>)</dd><dd><a class="el" href="classgridfire_1_1partition_1_1_ground_state_partition_function.html">GroundStatePartitionFunction</a> (<a class="el" href="namespacegridfire_1_1partition.html">gridfire::partition</a>)</dd></dl>
<dl class="classindex odd"> <dl class="classindex odd">
<dt class="alphachar"><a id="letter_H" name="letter_H">H</a></dt> <dt class="alphachar"><a id="letter_H" name="letter_H">H</a></dt>
<dd><a class="el" href="structstd_1_1hash_3_01gridfire_1_1rates_1_1weak_1_1_table_axes_01_4.html">hash&lt; gridfire::rates::weak::TableAxes &gt;</a> (<a class="el" href="namespacestd.html">std</a>)</dd><dd><a class="el" href="structstd_1_1hash_3_01gridfire_1_1reaction_1_1_reaction_01_4.html">hash&lt; gridfire::reaction::Reaction &gt;</a> (<a class="el" href="namespacestd.html">std</a>)</dd><dd><a class="el" href="structstd_1_1hash_3_01gridfire_1_1reaction_1_1_reaction_set_01_4.html">hash&lt; gridfire::reaction::ReactionSet &gt;</a> (<a class="el" href="namespacestd.html">std</a>)</dd><dd><a class="el" href="classgridfire_1_1exceptions_1_1_hashing_error.html">HashingError</a> (<a class="el" href="namespacegridfire_1_1exceptions.html">gridfire::exceptions</a>)</dd><dd><a class="el" href="classgridfire_1_1policy_1_1_hot_c_n_o_chain_policy.html">HotCNOChainPolicy</a> (<a class="el" href="namespacegridfire_1_1policy.html">gridfire::policy</a>)</dd><dd><a class="el" href="classgridfire_1_1policy_1_1_hot_c_n_o_i_chain_policy.html">HotCNOIChainPolicy</a> (<a class="el" href="namespacegridfire_1_1policy.html">gridfire::policy</a>)</dd><dd><a class="el" href="classgridfire_1_1policy_1_1_hot_c_n_o_i_i_chain_policy.html">HotCNOIIChainPolicy</a> (<a class="el" href="namespacegridfire_1_1policy.html">gridfire::policy</a>)</dd><dd><a class="el" href="classgridfire_1_1policy_1_1_hot_c_n_o_i_i_i_chain_policy.html">HotCNOIIIChainPolicy</a> (<a class="el" href="namespacegridfire_1_1policy.html">gridfire::policy</a>)</dd></dl> <dd><a class="el" href="structstd_1_1hash_3_01gridfire_1_1rates_1_1weak_1_1_table_axes_01_4.html">hash&lt; gridfire::rates::weak::TableAxes &gt;</a> (<a class="el" href="namespacestd.html">std</a>)</dd><dd><a class="el" href="structstd_1_1hash_3_01gridfire_1_1reaction_1_1_reaction_01_4.html">hash&lt; gridfire::reaction::Reaction &gt;</a> (<a class="el" href="namespacestd.html">std</a>)</dd><dd><a class="el" href="structstd_1_1hash_3_01gridfire_1_1reaction_1_1_reaction_set_01_4.html">hash&lt; gridfire::reaction::ReactionSet &gt;</a> (<a class="el" href="namespacestd.html">std</a>)</dd><dd><a class="el" href="classgridfire_1_1exceptions_1_1_hashing_error.html">HashingError</a> (<a class="el" href="namespacegridfire_1_1exceptions.html">gridfire::exceptions</a>)</dd><dd><a class="el" href="classgridfire_1_1policy_1_1_hot_c_n_o_chain_policy.html">HotCNOChainPolicy</a> (<a class="el" href="namespacegridfire_1_1policy.html">gridfire::policy</a>)</dd><dd><a class="el" href="classgridfire_1_1policy_1_1_hot_c_n_o_i_chain_policy.html">HotCNOIChainPolicy</a> (<a class="el" href="namespacegridfire_1_1policy.html">gridfire::policy</a>)</dd><dd><a class="el" href="classgridfire_1_1policy_1_1_hot_c_n_o_i_i_chain_policy.html">HotCNOIIChainPolicy</a> (<a class="el" href="namespacegridfire_1_1policy.html">gridfire::policy</a>)</dd><dd><a class="el" href="classgridfire_1_1policy_1_1_hot_c_n_o_i_i_i_chain_policy.html">HotCNOIIIChainPolicy</a> (<a class="el" href="namespacegridfire_1_1policy.html">gridfire::policy</a>)</dd></dl>
@@ -169,7 +169,7 @@ $(function(){initNavTree('classes.html',''); initResizable(true); });
<dd><a class="el" href="classgridfire_1_1exceptions_1_1_unable_to_set_network_reactions_error.html">UnableToSetNetworkReactionsError</a> (<a class="el" href="namespacegridfire_1_1exceptions.html">gridfire::exceptions</a>)</dd><dd><a class="el" href="classgridfire_1_1exceptions_1_1_uninitialized_jacobian_error.html">UninitializedJacobianError</a> (<a class="el" href="namespacegridfire_1_1exceptions.html">gridfire::exceptions</a>)</dd><dd><a class="el" href="classgridfire_1_1exceptions_1_1_unknown_jacobian_error.html">UnknownJacobianError</a> (<a class="el" href="namespacegridfire_1_1exceptions.html">gridfire::exceptions</a>)</dd><dd><a class="el" href="structgridfire_1_1engine_1_1_multiscale_partitioning_engine_view_1_1_q_s_e_solver_1_1_user_data.html">MultiscalePartitioningEngineView::QSESolver::UserData</a> (<a class="el" href="namespacegridfire_1_1engine.html">gridfire::engine</a>)</dd><dd><a class="el" href="classgridfire_1_1exceptions_1_1_utility_error.html">UtilityError</a> (<a class="el" href="namespacegridfire_1_1exceptions.html">gridfire::exceptions</a>)</dd></dl> <dd><a class="el" href="classgridfire_1_1exceptions_1_1_unable_to_set_network_reactions_error.html">UnableToSetNetworkReactionsError</a> (<a class="el" href="namespacegridfire_1_1exceptions.html">gridfire::exceptions</a>)</dd><dd><a class="el" href="classgridfire_1_1exceptions_1_1_uninitialized_jacobian_error.html">UninitializedJacobianError</a> (<a class="el" href="namespacegridfire_1_1exceptions.html">gridfire::exceptions</a>)</dd><dd><a class="el" href="classgridfire_1_1exceptions_1_1_unknown_jacobian_error.html">UnknownJacobianError</a> (<a class="el" href="namespacegridfire_1_1exceptions.html">gridfire::exceptions</a>)</dd><dd><a class="el" href="structgridfire_1_1engine_1_1_multiscale_partitioning_engine_view_1_1_q_s_e_solver_1_1_user_data.html">MultiscalePartitioningEngineView::QSESolver::UserData</a> (<a class="el" href="namespacegridfire_1_1engine.html">gridfire::engine</a>)</dd><dd><a class="el" href="classgridfire_1_1exceptions_1_1_utility_error.html">UtilityError</a> (<a class="el" href="namespacegridfire_1_1exceptions.html">gridfire::exceptions</a>)</dd></dl>
<dl class="classindex odd"> <dl class="classindex odd">
<dt class="alphachar"><a id="letter_W" name="letter_W">W</a></dt> <dt class="alphachar"><a id="letter_W" name="letter_W">W</a></dt>
<dd><a class="el" href="structgridfire_1_1rates_1_1weak_1_1_weak_rate_derivatives.html">WeakRateDerivatives</a> (<a class="el" href="namespacegridfire_1_1rates_1_1weak.html">gridfire::rates::weak</a>)</dd><dd><a class="el" href="classgridfire_1_1rates_1_1weak_1_1_weak_rate_interpolator.html">WeakRateInterpolator</a> (<a class="el" href="namespacegridfire_1_1rates_1_1weak.html">gridfire::rates::weak</a>)</dd><dd><a class="el" href="structgridfire_1_1rates_1_1weak_1_1_weak_rate_payload.html">WeakRatePayload</a> (<a class="el" href="namespacegridfire_1_1rates_1_1weak.html">gridfire::rates::weak</a>)</dd><dd><a class="el" href="classgridfire_1_1rates_1_1weak_1_1_weak_reaction.html">WeakReaction</a> (<a class="el" href="namespacegridfire_1_1rates_1_1weak.html">gridfire::rates::weak</a>)</dd><dd><a class="el" href="structgridfire_1_1rates_1_1weak_1_1_weak_reaction_entry.html">WeakReactionEntry</a> (<a class="el" href="namespacegridfire_1_1rates_1_1weak.html">gridfire::rates::weak</a>)</dd><dd><a class="el" href="classgridfire_1_1rates_1_1weak_1_1_weak_reaction_map.html">WeakReactionMap</a> (<a class="el" href="namespacegridfire_1_1rates_1_1weak.html">gridfire::rates::weak</a>)</dd><dd><a class="el" href="classgridfire_1_1screening_1_1_weak_screening_model.html">WeakScreeningModel</a> (<a class="el" href="namespacegridfire_1_1screening.html">gridfire::screening</a>)</dd></dl> <dd><a class="el" href="structgridfire_1_1rates_1_1weak_1_1_weak_rate_derivatives.html">WeakRateDerivatives</a> (<a class="el" href="namespacegridfire_1_1rates_1_1weak.html">gridfire::rates::weak</a>)</dd><dd><a class="el" href="classgridfire_1_1rates_1_1weak_1_1_weak_rate_interpolator.html">WeakRateInterpolator</a> (<a class="el" href="namespacegridfire_1_1rates_1_1weak.html">gridfire::rates::weak</a>)</dd><dd><a class="el" href="structgridfire_1_1rates_1_1weak_1_1_weak_rate_payload.html">WeakRatePayload</a> (<a class="el" href="namespacegridfire_1_1rates_1_1weak.html">gridfire::rates::weak</a>)</dd><dd><a class="el" href="classgridfire_1_1reaction_1_1_weak_reaclib_reaction.html">WeakReaclibReaction</a> (<a class="el" href="namespacegridfire_1_1reaction.html">gridfire::reaction</a>)</dd><dd><a class="el" href="classgridfire_1_1rates_1_1weak_1_1_weak_reaction.html">WeakReaction</a> (<a class="el" href="namespacegridfire_1_1rates_1_1weak.html">gridfire::rates::weak</a>)</dd><dd><a class="el" href="structgridfire_1_1rates_1_1weak_1_1_weak_reaction_entry.html">WeakReactionEntry</a> (<a class="el" href="namespacegridfire_1_1rates_1_1weak.html">gridfire::rates::weak</a>)</dd><dd><a class="el" href="classgridfire_1_1rates_1_1weak_1_1_weak_reaction_map.html">WeakReactionMap</a> (<a class="el" href="namespacegridfire_1_1rates_1_1weak.html">gridfire::rates::weak</a>)</dd><dd><a class="el" href="classgridfire_1_1screening_1_1_weak_screening_model.html">WeakScreeningModel</a> (<a class="el" href="namespacegridfire_1_1screening.html">gridfire::screening</a>)</dd></dl>
</div> </div>
</div><!-- contents --> </div><!-- contents -->
</div><!-- doc-content --> </div><!-- doc-content -->

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>
@@ -139,7 +139,7 @@ class gridfire::engine::EngineView&lt; EngineT &gt;</div><p>Abstract base class
<div class="line"><span class="keyword">private</span>:</div> <div class="line"><span class="keyword">private</span>:</div>
<div class="line"> DynamicEngine&amp; engine_;</div> <div class="line"> DynamicEngine&amp; engine_;</div>
<div class="line">};</div> <div class="line">};</div>
<div class="ttc" id="aclassgridfire_1_1engine_1_1_dynamic_engine_html"><div class="ttname"><a href="classgridfire_1_1engine_1_1_dynamic_engine.html">gridfire::engine::DynamicEngine</a></div><div class="ttdoc">Abstract class for engines supporting Jacobian and stoichiometry operations.</div><div class="ttdef"><b>Definition</b> engine_abstract.h:172</div></div> <div class="ttc" id="aclassgridfire_1_1engine_1_1_dynamic_engine_html"><div class="ttname"><a href="classgridfire_1_1engine_1_1_dynamic_engine.html">gridfire::engine::DynamicEngine</a></div><div class="ttdoc">Abstract class for engines supporting Jacobian and stoichiometry operations.</div><div class="ttdef"><b>Definition</b> engine_abstract.h:175</div></div>
<div class="ttc" id="anamespacegridfire_1_1engine_html"><div class="ttname"><a href="namespacegridfire_1_1engine.html">gridfire::engine</a></div><div class="ttdef"><b>Definition</b> dynamic_engine_diagnostics.h:38</div></div> <div class="ttc" id="anamespacegridfire_1_1engine_html"><div class="ttname"><a href="namespacegridfire_1_1engine.html">gridfire::engine</a></div><div class="ttdef"><b>Definition</b> dynamic_engine_diagnostics.h:38</div></div>
</div><!-- fragment --><dl class="section see"><dt>See also</dt><dd>gridfire::AdaptiveEngineView for a concrete example of dynamic culling. </dd></dl> </div><!-- fragment --><dl class="section see"><dt>See also</dt><dd>gridfire::AdaptiveEngineView for a concrete example of dynamic culling. </dd></dl>
</div><h2 class="groupheader">Constructor &amp; Destructor Documentation</h2> </div><h2 class="groupheader">Constructor &amp; Destructor Documentation</h2>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>
@@ -3021,10 +3021,10 @@ If a species is in the input comp but not in the network </dd></dl>
<div class="line"> {<a class="code hl_enumvalue" href="#a19305dc4affde99bb84056c9eeda9f1ea162cb379760275c9685281ee27025cdb">JacobianMatrixState::READY_DENSE</a>, <span class="stringliteral">&quot;Ready (dense)&quot;</span>},</div> <div class="line"> {<a class="code hl_enumvalue" href="#a19305dc4affde99bb84056c9eeda9f1ea162cb379760275c9685281ee27025cdb">JacobianMatrixState::READY_DENSE</a>, <span class="stringliteral">&quot;Ready (dense)&quot;</span>},</div>
<div class="line"> {<a class="code hl_enumvalue" href="#a19305dc4affde99bb84056c9eeda9f1eabf43af1b1ac8bc6cb42296815a429ae3">JacobianMatrixState::READY_SPARSE</a>, <span class="stringliteral">&quot;Ready (sparse)&quot;</span>},</div> <div class="line"> {<a class="code hl_enumvalue" href="#a19305dc4affde99bb84056c9eeda9f1eabf43af1b1ac8bc6cb42296815a429ae3">JacobianMatrixState::READY_SPARSE</a>, <span class="stringliteral">&quot;Ready (sparse)&quot;</span>},</div>
<div class="line"> }</div> <div class="line"> }</div>
<div class="ttc" id="aclassgridfire_1_1engine_1_1_graph_engine_html_a19305dc4affde99bb84056c9eeda9f1ea162cb379760275c9685281ee27025cdb"><div class="ttname"><a href="#a19305dc4affde99bb84056c9eeda9f1ea162cb379760275c9685281ee27025cdb">gridfire::engine::GraphEngine::JacobianMatrixState::READY_DENSE</a></div><div class="ttdeci">@ READY_DENSE</div><div class="ttdef"><b>Definition</b> engine_graph.h:786</div></div> <div class="ttc" id="aclassgridfire_1_1engine_1_1_graph_engine_html_a19305dc4affde99bb84056c9eeda9f1ea162cb379760275c9685281ee27025cdb"><div class="ttname"><a href="#a19305dc4affde99bb84056c9eeda9f1ea162cb379760275c9685281ee27025cdb">gridfire::engine::GraphEngine::JacobianMatrixState::READY_DENSE</a></div><div class="ttdeci">@ READY_DENSE</div><div class="ttdef"><b>Definition</b> engine_graph.h:787</div></div>
<div class="ttc" id="aclassgridfire_1_1engine_1_1_graph_engine_html_a19305dc4affde99bb84056c9eeda9f1ea4d855a061b3066dc14a3b12ed26b5456"><div class="ttname"><a href="#a19305dc4affde99bb84056c9eeda9f1ea4d855a061b3066dc14a3b12ed26b5456">gridfire::engine::GraphEngine::JacobianMatrixState::STALE</a></div><div class="ttdeci">@ STALE</div><div class="ttdef"><b>Definition</b> engine_graph.h:785</div></div> <div class="ttc" id="aclassgridfire_1_1engine_1_1_graph_engine_html_a19305dc4affde99bb84056c9eeda9f1ea4d855a061b3066dc14a3b12ed26b5456"><div class="ttname"><a href="#a19305dc4affde99bb84056c9eeda9f1ea4d855a061b3066dc14a3b12ed26b5456">gridfire::engine::GraphEngine::JacobianMatrixState::STALE</a></div><div class="ttdeci">@ STALE</div><div class="ttdef"><b>Definition</b> engine_graph.h:786</div></div>
<div class="ttc" id="aclassgridfire_1_1engine_1_1_graph_engine_html_a19305dc4affde99bb84056c9eeda9f1eabf43af1b1ac8bc6cb42296815a429ae3"><div class="ttname"><a href="#a19305dc4affde99bb84056c9eeda9f1eabf43af1b1ac8bc6cb42296815a429ae3">gridfire::engine::GraphEngine::JacobianMatrixState::READY_SPARSE</a></div><div class="ttdeci">@ READY_SPARSE</div><div class="ttdef"><b>Definition</b> engine_graph.h:787</div></div> <div class="ttc" id="aclassgridfire_1_1engine_1_1_graph_engine_html_a19305dc4affde99bb84056c9eeda9f1eabf43af1b1ac8bc6cb42296815a429ae3"><div class="ttname"><a href="#a19305dc4affde99bb84056c9eeda9f1eabf43af1b1ac8bc6cb42296815a429ae3">gridfire::engine::GraphEngine::JacobianMatrixState::READY_SPARSE</a></div><div class="ttdeci">@ READY_SPARSE</div><div class="ttdef"><b>Definition</b> engine_graph.h:788</div></div>
<div class="ttc" id="aclassgridfire_1_1engine_1_1_graph_engine_html_a19305dc4affde99bb84056c9eeda9f1eadd652546039b18970b8dcf2cff824268"><div class="ttname"><a href="#a19305dc4affde99bb84056c9eeda9f1eadd652546039b18970b8dcf2cff824268">gridfire::engine::GraphEngine::JacobianMatrixState::UNINITIALIZED</a></div><div class="ttdeci">@ UNINITIALIZED</div><div class="ttdef"><b>Definition</b> engine_graph.h:784</div></div> <div class="ttc" id="aclassgridfire_1_1engine_1_1_graph_engine_html_a19305dc4affde99bb84056c9eeda9f1eadd652546039b18970b8dcf2cff824268"><div class="ttname"><a href="#a19305dc4affde99bb84056c9eeda9f1eadd652546039b18970b8dcf2cff824268">gridfire::engine::GraphEngine::JacobianMatrixState::UNINITIALIZED</a></div><div class="ttdeci">@ UNINITIALIZED</div><div class="ttdef"><b>Definition</b> engine_graph.h:785</div></div>
</div><!-- fragment --> </div><!-- fragment -->
</div> </div>
</div> </div>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>
@@ -114,7 +114,7 @@ $(function(){initNavTree('classgridfire_1_1engine_1_1_reaction.html',''); initRe
<div class="dynheader"> <div class="dynheader">
Inheritance diagram for gridfire::engine::Reaction:</div> Inheritance diagram for gridfire::engine::Reaction:</div>
<div class="dyncontent"> <div class="dyncontent">
<div class="center"><iframe scrolling="no" frameborder="0" src="classgridfire_1_1engine_1_1_reaction__inherit__graph.svg" width="318" height="214"><p><b>This browser is not able to show SVG: try Firefox, Chrome, Safari, or Opera instead.</b></p></iframe></div> <div class="center"><iframe scrolling="no" frameborder="0" src="classgridfire_1_1engine_1_1_reaction__inherit__graph.svg" width="576" height="150"><p><b>This browser is not able to show SVG: try Firefox, Chrome, Safari, or Opera instead.</b></p></iframe></div>
<center><span class="legend">[<a target="top" href="graph_legend.html">legend</a>]</span></center></div> <center><span class="legend">[<a target="top" href="graph_legend.html">legend</a>]</span></center></div>
<table class="memberdecls"> <table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="pub-methods" name="pub-methods"></a> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="pub-methods" name="pub-methods"></a>
@@ -208,7 +208,7 @@ Friends</h2></td></tr>
<div class="line"> <span class="stringliteral">&quot;H_1_H_1_to_H_2&quot;</span>, <span class="stringliteral">&quot;p(p,g)d&quot;</span>, 1, {H_1, H_1}, {H_2}, 5.493, <span class="stringliteral">&quot;st08&quot;</span>, rate_coeffs</div> <div class="line"> <span class="stringliteral">&quot;H_1_H_1_to_H_2&quot;</span>, <span class="stringliteral">&quot;p(p,g)d&quot;</span>, 1, {H_1, H_1}, {H_2}, 5.493, <span class="stringliteral">&quot;st08&quot;</span>, rate_coeffs</div>
<div class="line">);</div> <div class="line">);</div>
<div class="line"><span class="keywordtype">double</span> rate = p_gamma_d.<a class="code hl_function" href="classgridfire_1_1reaction_1_1_reaction.html#a83c121480533593adfd68c4a67a649f1">calculate_rate</a>(0.1); <span class="comment">// T9 = 0.1</span></div> <div class="line"><span class="keywordtype">double</span> rate = p_gamma_d.<a class="code hl_function" href="classgridfire_1_1reaction_1_1_reaction.html#a83c121480533593adfd68c4a67a649f1">calculate_rate</a>(0.1); <span class="comment">// T9 = 0.1</span></div>
<div class="ttc" id="aclassgridfire_1_1reaction_1_1_reaction_html"><div class="ttname"><a href="classgridfire_1_1reaction_1_1_reaction.html">gridfire::reaction::Reaction</a></div><div class="ttdoc">Represents a single nuclear reaction from a specific data source.</div><div class="ttdef"><b>Definition</b> reaction.h:91</div></div> <div class="ttc" id="aclassgridfire_1_1reaction_1_1_reaction_html"><div class="ttname"><a href="classgridfire_1_1reaction_1_1_reaction.html">gridfire::reaction::Reaction</a></div><div class="ttdoc">Represents a single nuclear reaction from a specific data source.</div><div class="ttdef"><b>Definition</b> reaction.h:98</div></div>
<div class="ttc" id="aclassgridfire_1_1reaction_1_1_reaction_html_a83c121480533593adfd68c4a67a649f1"><div class="ttname"><a href="classgridfire_1_1reaction_1_1_reaction.html#a83c121480533593adfd68c4a67a649f1">gridfire::reaction::Reaction::calculate_rate</a></div><div class="ttdeci">virtual double calculate_rate(double T9, double rho, double Ye, double mue, const std::vector&lt; double &gt; &amp;Y, const std::unordered_map&lt; size_t, fourdst::atomic::Species &gt; &amp;index_to_species_map) const =0</div><div class="ttdoc">Compute the temperature- and composition-dependent reaction rate.</div></div> <div class="ttc" id="aclassgridfire_1_1reaction_1_1_reaction_html_a83c121480533593adfd68c4a67a649f1"><div class="ttname"><a href="classgridfire_1_1reaction_1_1_reaction.html#a83c121480533593adfd68c4a67a649f1">gridfire::reaction::Reaction::calculate_rate</a></div><div class="ttdeci">virtual double calculate_rate(double T9, double rho, double Ye, double mue, const std::vector&lt; double &gt; &amp;Y, const std::unordered_map&lt; size_t, fourdst::atomic::Species &gt; &amp;index_to_species_map) const =0</div><div class="ttdoc">Compute the temperature- and composition-dependent reaction rate.</div></div>
</div><!-- fragment --> </div><h2 class="groupheader">Constructor &amp; Destructor Documentation</h2> </div><!-- fragment --> </div><h2 class="groupheader">Constructor &amp; Destructor Documentation</h2>
<a id="ab1860df84843be70f97469761e11ab6a" name="ab1860df84843be70f97469761e11ab6a"></a> <a id="ab1860df84843be70f97469761e11ab6a" name="ab1860df84843be70f97469761e11ab6a"></a>

View File

@@ -1,9 +1,11 @@
<map id="gridfire::engine::Reaction" name="gridfire::engine::Reaction"> <map id="gridfire::engine::Reaction" name="gridfire::engine::Reaction">
<area shape="rect" id="Node000001" title="Represents a single nuclear reaction from a specific data source." alt="" coords="68,5,234,31"/> <area shape="rect" id="Node000001" title="Represents a single nuclear reaction from a specific data source." alt="" coords="5,46,172,72"/>
<area shape="rect" id="Node000002" href="$classgridfire_1_1rates_1_1weak_1_1_weak_reaction.html" title="Concrete Reaction representing a single weak process (beta±, e/e+ capture)." alt="" coords="5,79,142,120"/> <area shape="rect" id="Node000002" href="$classgridfire_1_1rates_1_1weak_1_1_weak_reaction.html" title="Concrete Reaction representing a single weak process (beta±, e/e+ capture)." alt="" coords="220,5,356,46"/>
<area shape="poly" id="edge1_Node000001_Node000002" title=" " alt="" coords="131,44,94,80,91,77,127,40"/> <area shape="poly" id="edge1_Node000001_Node000002" title=" " alt="" coords="184,40,219,34,220,40,185,46"/>
<area shape="rect" id="Node000003" href="$classgridfire_1_1reaction_1_1_reaclib_reaction.html" title=" " alt="" coords="166,79,291,120"/> <area shape="rect" id="Node000003" href="$classgridfire_1_1reaction_1_1_reaclib_reaction.html" title=" " alt="" coords="225,71,350,111"/>
<area shape="poly" id="edge2_Node000001_Node000003" title=" " alt="" coords="175,40,211,77,207,80,171,44"/> <area shape="poly" id="edge2_Node000001_Node000003" title=" " alt="" coords="188,72,225,78,224,84,187,77"/>
<area shape="rect" id="Node000004" href="$classgridfire_1_1reaction_1_1_logical_reaclib_reaction.html" title="Represents a &quot;logical&quot; reaction that aggregates rates from multiple sources." alt="" coords="145,168,311,208"/> <area shape="rect" id="Node000004" href="$classgridfire_1_1reaction_1_1_logical_reaclib_reaction.html" title="Represents a &quot;logical&quot; reaction that aggregates rates from multiple sources." alt="" coords="404,37,570,78"/>
<area shape="poly" id="edge3_Node000003_Node000004" title=" " alt="" coords="231,135,231,167,226,167,226,135"/> <area shape="poly" id="edge3_Node000003_Node000004" title=" " alt="" coords="365,75,403,69,404,74,366,81"/>
<area shape="rect" id="Node000005" href="$classgridfire_1_1reaction_1_1_weak_reaclib_reaction.html" title=" " alt="" coords="408,103,566,143"/>
<area shape="poly" id="edge4_Node000003_Node000005" title=" " alt="" coords="366,101,408,108,407,113,365,106"/>
</map> </map>

View File

@@ -1 +1 @@
6b304c722adcb568763139f3d8d16e31 3629e5fad4a21b6e4ac29698316dfe9a

View File

@@ -4,8 +4,8 @@
<!-- Generated by graphviz version 13.0.1 (20250615.1724) <!-- Generated by graphviz version 13.0.1 (20250615.1724)
--> -->
<!-- Title: gridfire::engine::Reaction Pages: 1 --> <!-- Title: gridfire::engine::Reaction Pages: 1 -->
<svg width="238pt" height="160pt" <svg width="432pt" height="112pt"
viewBox="0.00 0.00 238.00 160.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> viewBox="0.00 0.00 432.00 112.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<svg id="main" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve"> <svg id="main" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve">
@@ -17,14 +17,14 @@
]]></style> ]]></style>
<script type="application/ecmascript" xlink:href="svg.min.js"/> <script type="application/ecmascript" xlink:href="svg.min.js"/>
<svg id="graph" class="graph"> <svg id="graph" class="graph">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 156.25)"> <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 107.5)">
<title>gridfire::engine::Reaction</title> <title>gridfire::engine::Reaction</title>
<!-- Node1 --> <!-- Node1 -->
<g id="Node000001" class="node"> <g id="Node000001" class="node">
<title>Node1</title> <title>Node1</title>
<g id="a_Node000001"><a xlink:title="Represents a single nuclear reaction from a specific data source."> <g id="a_Node000001"><a xlink:title="Represents a single nuclear reaction from a specific data source.">
<polygon fill="#999999" stroke="#666666" points="171.5,-152.25 46.75,-152.25 46.75,-133 171.5,-133 171.5,-152.25"/> <polygon fill="#999999" stroke="#666666" points="124.75,-72.88 0,-72.88 0,-53.62 124.75,-53.62 124.75,-72.88"/>
<text xml:space="preserve" text-anchor="middle" x="109.12" y="-138.75" font-family="Helvetica,sans-Serif" font-size="10.00">gridfire::engine::Reaction</text> <text xml:space="preserve" text-anchor="middle" x="62.38" y="-59.38" font-family="Helvetica,sans-Serif" font-size="10.00">gridfire::engine::Reaction</text>
</a> </a>
</g> </g>
</g> </g>
@@ -32,9 +32,9 @@
<g id="Node000002" class="node"> <g id="Node000002" class="node">
<title>Node2</title> <title>Node2</title>
<g id="a_Node000002"><a xlink:href="classgridfire_1_1rates_1_1weak_1_1_weak_reaction.html" target="_top" xlink:title="Concrete Reaction representing a single weak process (beta±, e/e+ capture)."> <g id="a_Node000002"><a xlink:href="classgridfire_1_1rates_1_1weak_1_1_weak_reaction.html" target="_top" xlink:title="Concrete Reaction representing a single weak process (beta±, e/e+ capture).">
<polygon fill="white" stroke="#666666" points="102.25,-97 0,-97 0,-66.5 102.25,-66.5 102.25,-97"/> <polygon fill="white" stroke="#666666" points="263,-103.5 160.75,-103.5 160.75,-73 263,-73 263,-103.5"/>
<text xml:space="preserve" text-anchor="start" x="8" y="-83.5" font-family="Helvetica,sans-Serif" font-size="10.00">gridfire::rates::weak</text> <text xml:space="preserve" text-anchor="start" x="168.75" y="-90" font-family="Helvetica,sans-Serif" font-size="10.00">gridfire::rates::weak</text>
<text xml:space="preserve" text-anchor="middle" x="51.12" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">::WeakReaction</text> <text xml:space="preserve" text-anchor="middle" x="211.88" y="-78.75" font-family="Helvetica,sans-Serif" font-size="10.00">::WeakReaction</text>
</a> </a>
</g> </g>
</g> </g>
@@ -42,8 +42,8 @@
<g id="edge1_Node000001_Node000002" class="edge"> <g id="edge1_Node000001_Node000002" class="edge">
<title>Node1&#45;&gt;Node2</title> <title>Node1&#45;&gt;Node2</title>
<g id="a_edge1_Node000001_Node000002"><a xlink:title=" "> <g id="a_edge1_Node000001_Node000002"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M92.5,-124.75C83.95,-116.07 73.63,-105.6 65.44,-97.28"/> <path fill="none" stroke="#63b8ff" d="M134.16,-75.25C143.07,-76.76 152.04,-78.28 160.55,-79.72"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="89.74,-126.94 99.25,-131.6 94.73,-122.02 89.74,-126.94"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="134.88,-71.82 124.44,-73.6 133.71,-78.72 134.88,-71.82"/>
</a> </a>
</g> </g>
</g> </g>
@@ -51,9 +51,9 @@
<g id="Node000003" class="node"> <g id="Node000003" class="node">
<title>Node3</title> <title>Node3</title>
<g id="a_Node000003"><a xlink:href="classgridfire_1_1reaction_1_1_reaclib_reaction.html" target="_top" xlink:title=" "> <g id="a_Node000003"><a xlink:href="classgridfire_1_1reaction_1_1_reaclib_reaction.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="214.12,-97 120.12,-97 120.12,-66.5 214.12,-66.5 214.12,-97"/> <polygon fill="white" stroke="#666666" points="258.88,-54.5 164.88,-54.5 164.88,-24 258.88,-24 258.88,-54.5"/>
<text xml:space="preserve" text-anchor="start" x="128.12" y="-83.5" font-family="Helvetica,sans-Serif" font-size="10.00">gridfire::reaction</text> <text xml:space="preserve" text-anchor="start" x="172.88" y="-41" font-family="Helvetica,sans-Serif" font-size="10.00">gridfire::reaction</text>
<text xml:space="preserve" text-anchor="middle" x="167.12" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">::ReaclibReaction</text> <text xml:space="preserve" text-anchor="middle" x="211.88" y="-29.75" font-family="Helvetica,sans-Serif" font-size="10.00">::ReaclibReaction</text>
</a> </a>
</g> </g>
</g> </g>
@@ -61,8 +61,8 @@
<g id="edge2_Node000001_Node000003" class="edge"> <g id="edge2_Node000001_Node000003" class="edge">
<title>Node1&#45;&gt;Node3</title> <title>Node1&#45;&gt;Node3</title>
<g id="a_edge2_Node000001_Node000003"><a xlink:title=" "> <g id="a_edge2_Node000001_Node000003"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M125.75,-124.75C134.3,-116.07 144.62,-105.6 152.81,-97.28"/> <path fill="none" stroke="#63b8ff" d="M136.35,-51.38C146,-49.81 155.66,-48.23 164.69,-46.77"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="123.52,-122.02 119,-131.6 128.51,-126.94 123.52,-122.02"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="135.88,-47.91 126.57,-52.97 137,-54.82 135.88,-47.91"/>
</a> </a>
</g> </g>
</g> </g>
@@ -70,9 +70,9 @@
<g id="Node000004" class="node"> <g id="Node000004" class="node">
<title>Node4</title> <title>Node4</title>
<g id="a_Node000004"><a xlink:href="classgridfire_1_1reaction_1_1_logical_reaclib_reaction.html" target="_top" xlink:title="Represents a &quot;logical&quot; reaction that aggregates rates from multiple sources."> <g id="a_Node000004"><a xlink:href="classgridfire_1_1reaction_1_1_logical_reaclib_reaction.html" target="_top" xlink:title="Represents a &quot;logical&quot; reaction that aggregates rates from multiple sources.">
<polygon fill="white" stroke="#666666" points="229.5,-30.5 104.75,-30.5 104.75,0 229.5,0 229.5,-30.5"/> <polygon fill="white" stroke="#666666" points="423.75,-79.5 299,-79.5 299,-49 423.75,-49 423.75,-79.5"/>
<text xml:space="preserve" text-anchor="start" x="112.75" y="-17" font-family="Helvetica,sans-Serif" font-size="10.00">gridfire::reaction</text> <text xml:space="preserve" text-anchor="start" x="307" y="-66" font-family="Helvetica,sans-Serif" font-size="10.00">gridfire::reaction</text>
<text xml:space="preserve" text-anchor="middle" x="167.12" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">::LogicalReaclibReaction</text> <text xml:space="preserve" text-anchor="middle" x="361.38" y="-54.75" font-family="Helvetica,sans-Serif" font-size="10.00">::LogicalReaclibReaction</text>
</a> </a>
</g> </g>
</g> </g>
@@ -80,8 +80,27 @@
<g id="edge3_Node000003_Node000004" class="edge"> <g id="edge3_Node000003_Node000004" class="edge">
<title>Node3&#45;&gt;Node4</title> <title>Node3&#45;&gt;Node4</title>
<g id="a_edge3_Node000003_Node000004"><a xlink:title=" "> <g id="a_edge3_Node000003_Node000004"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M167.12,-54.81C167.12,-46.64 167.12,-37.91 167.12,-30.83"/> <path fill="none" stroke="#63b8ff" d="M270.25,-48.97C279.54,-50.55 289.2,-52.19 298.59,-53.78"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="163.63,-54.6 167.13,-64.6 170.63,-54.6 163.63,-54.6"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="271.08,-45.56 260.63,-47.34 269.91,-52.47 271.08,-45.56"/>
</a>
</g>
</g>
<!-- Node5 -->
<g id="Node000005" class="node">
<title>Node5</title>
<g id="a_Node000005"><a xlink:href="classgridfire_1_1reaction_1_1_weak_reaclib_reaction.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="420.75,-30.5 302,-30.5 302,0 420.75,0 420.75,-30.5"/>
<text xml:space="preserve" text-anchor="start" x="310" y="-17" font-family="Helvetica,sans-Serif" font-size="10.00">gridfire::reaction</text>
<text xml:space="preserve" text-anchor="middle" x="361.38" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">::WeakReaclibReaction</text>
</a>
</g>
</g>
<!-- Node3&#45;&gt;Node5 -->
<g id="edge4_Node000003_Node000005" class="edge">
<title>Node3&#45;&gt;Node5</title>
<g id="a_edge4_Node000003_Node000005"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M270.43,-29.88C280.64,-28.22 291.28,-26.49 301.52,-24.83"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="269.94,-26.42 260.63,-31.48 271.07,-33.33 269.94,-26.42"/>
</a> </a>
</g> </g>
</g> </g>

Before

Width:  |  Height:  |  Size: 4.8 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB

View File

@@ -4,16 +4,16 @@
<!-- Generated by graphviz version 13.0.1 (20250615.1724) <!-- Generated by graphviz version 13.0.1 (20250615.1724)
--> -->
<!-- Title: gridfire::engine::Reaction Pages: 1 --> <!-- Title: gridfire::engine::Reaction Pages: 1 -->
<svg width="238pt" height="160pt" <svg width="432pt" height="112pt"
viewBox="0.00 0.00 238.00 160.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> viewBox="0.00 0.00 432.00 112.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 156.25)"> <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 107.5)">
<title>gridfire::engine::Reaction</title> <title>gridfire::engine::Reaction</title>
<!-- Node1 --> <!-- Node1 -->
<g id="Node000001" class="node"> <g id="Node000001" class="node">
<title>Node1</title> <title>Node1</title>
<g id="a_Node000001"><a xlink:title="Represents a single nuclear reaction from a specific data source."> <g id="a_Node000001"><a xlink:title="Represents a single nuclear reaction from a specific data source.">
<polygon fill="#999999" stroke="#666666" points="171.5,-152.25 46.75,-152.25 46.75,-133 171.5,-133 171.5,-152.25"/> <polygon fill="#999999" stroke="#666666" points="124.75,-72.88 0,-72.88 0,-53.62 124.75,-53.62 124.75,-72.88"/>
<text xml:space="preserve" text-anchor="middle" x="109.12" y="-138.75" font-family="Helvetica,sans-Serif" font-size="10.00">gridfire::engine::Reaction</text> <text xml:space="preserve" text-anchor="middle" x="62.38" y="-59.38" font-family="Helvetica,sans-Serif" font-size="10.00">gridfire::engine::Reaction</text>
</a> </a>
</g> </g>
</g> </g>
@@ -21,9 +21,9 @@
<g id="Node000002" class="node"> <g id="Node000002" class="node">
<title>Node2</title> <title>Node2</title>
<g id="a_Node000002"><a xlink:href="classgridfire_1_1rates_1_1weak_1_1_weak_reaction.html" target="_top" xlink:title="Concrete Reaction representing a single weak process (beta±, e/e+ capture)."> <g id="a_Node000002"><a xlink:href="classgridfire_1_1rates_1_1weak_1_1_weak_reaction.html" target="_top" xlink:title="Concrete Reaction representing a single weak process (beta±, e/e+ capture).">
<polygon fill="white" stroke="#666666" points="102.25,-97 0,-97 0,-66.5 102.25,-66.5 102.25,-97"/> <polygon fill="white" stroke="#666666" points="263,-103.5 160.75,-103.5 160.75,-73 263,-73 263,-103.5"/>
<text xml:space="preserve" text-anchor="start" x="8" y="-83.5" font-family="Helvetica,sans-Serif" font-size="10.00">gridfire::rates::weak</text> <text xml:space="preserve" text-anchor="start" x="168.75" y="-90" font-family="Helvetica,sans-Serif" font-size="10.00">gridfire::rates::weak</text>
<text xml:space="preserve" text-anchor="middle" x="51.12" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">::WeakReaction</text> <text xml:space="preserve" text-anchor="middle" x="211.88" y="-78.75" font-family="Helvetica,sans-Serif" font-size="10.00">::WeakReaction</text>
</a> </a>
</g> </g>
</g> </g>
@@ -31,8 +31,8 @@
<g id="edge1_Node000001_Node000002" class="edge"> <g id="edge1_Node000001_Node000002" class="edge">
<title>Node1&#45;&gt;Node2</title> <title>Node1&#45;&gt;Node2</title>
<g id="a_edge1_Node000001_Node000002"><a xlink:title=" "> <g id="a_edge1_Node000001_Node000002"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M92.5,-124.75C83.95,-116.07 73.63,-105.6 65.44,-97.28"/> <path fill="none" stroke="#63b8ff" d="M134.16,-75.25C143.07,-76.76 152.04,-78.28 160.55,-79.72"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="89.74,-126.94 99.25,-131.6 94.73,-122.02 89.74,-126.94"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="134.88,-71.82 124.44,-73.6 133.71,-78.72 134.88,-71.82"/>
</a> </a>
</g> </g>
</g> </g>
@@ -40,9 +40,9 @@
<g id="Node000003" class="node"> <g id="Node000003" class="node">
<title>Node3</title> <title>Node3</title>
<g id="a_Node000003"><a xlink:href="classgridfire_1_1reaction_1_1_reaclib_reaction.html" target="_top" xlink:title=" "> <g id="a_Node000003"><a xlink:href="classgridfire_1_1reaction_1_1_reaclib_reaction.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="214.12,-97 120.12,-97 120.12,-66.5 214.12,-66.5 214.12,-97"/> <polygon fill="white" stroke="#666666" points="258.88,-54.5 164.88,-54.5 164.88,-24 258.88,-24 258.88,-54.5"/>
<text xml:space="preserve" text-anchor="start" x="128.12" y="-83.5" font-family="Helvetica,sans-Serif" font-size="10.00">gridfire::reaction</text> <text xml:space="preserve" text-anchor="start" x="172.88" y="-41" font-family="Helvetica,sans-Serif" font-size="10.00">gridfire::reaction</text>
<text xml:space="preserve" text-anchor="middle" x="167.12" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">::ReaclibReaction</text> <text xml:space="preserve" text-anchor="middle" x="211.88" y="-29.75" font-family="Helvetica,sans-Serif" font-size="10.00">::ReaclibReaction</text>
</a> </a>
</g> </g>
</g> </g>
@@ -50,8 +50,8 @@
<g id="edge2_Node000001_Node000003" class="edge"> <g id="edge2_Node000001_Node000003" class="edge">
<title>Node1&#45;&gt;Node3</title> <title>Node1&#45;&gt;Node3</title>
<g id="a_edge2_Node000001_Node000003"><a xlink:title=" "> <g id="a_edge2_Node000001_Node000003"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M125.75,-124.75C134.3,-116.07 144.62,-105.6 152.81,-97.28"/> <path fill="none" stroke="#63b8ff" d="M136.35,-51.38C146,-49.81 155.66,-48.23 164.69,-46.77"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="123.52,-122.02 119,-131.6 128.51,-126.94 123.52,-122.02"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="135.88,-47.91 126.57,-52.97 137,-54.82 135.88,-47.91"/>
</a> </a>
</g> </g>
</g> </g>
@@ -59,9 +59,9 @@
<g id="Node000004" class="node"> <g id="Node000004" class="node">
<title>Node4</title> <title>Node4</title>
<g id="a_Node000004"><a xlink:href="classgridfire_1_1reaction_1_1_logical_reaclib_reaction.html" target="_top" xlink:title="Represents a &quot;logical&quot; reaction that aggregates rates from multiple sources."> <g id="a_Node000004"><a xlink:href="classgridfire_1_1reaction_1_1_logical_reaclib_reaction.html" target="_top" xlink:title="Represents a &quot;logical&quot; reaction that aggregates rates from multiple sources.">
<polygon fill="white" stroke="#666666" points="229.5,-30.5 104.75,-30.5 104.75,0 229.5,0 229.5,-30.5"/> <polygon fill="white" stroke="#666666" points="423.75,-79.5 299,-79.5 299,-49 423.75,-49 423.75,-79.5"/>
<text xml:space="preserve" text-anchor="start" x="112.75" y="-17" font-family="Helvetica,sans-Serif" font-size="10.00">gridfire::reaction</text> <text xml:space="preserve" text-anchor="start" x="307" y="-66" font-family="Helvetica,sans-Serif" font-size="10.00">gridfire::reaction</text>
<text xml:space="preserve" text-anchor="middle" x="167.12" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">::LogicalReaclibReaction</text> <text xml:space="preserve" text-anchor="middle" x="361.38" y="-54.75" font-family="Helvetica,sans-Serif" font-size="10.00">::LogicalReaclibReaction</text>
</a> </a>
</g> </g>
</g> </g>
@@ -69,8 +69,27 @@
<g id="edge3_Node000003_Node000004" class="edge"> <g id="edge3_Node000003_Node000004" class="edge">
<title>Node3&#45;&gt;Node4</title> <title>Node3&#45;&gt;Node4</title>
<g id="a_edge3_Node000003_Node000004"><a xlink:title=" "> <g id="a_edge3_Node000003_Node000004"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M167.12,-54.81C167.12,-46.64 167.12,-37.91 167.12,-30.83"/> <path fill="none" stroke="#63b8ff" d="M270.25,-48.97C279.54,-50.55 289.2,-52.19 298.59,-53.78"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="163.63,-54.6 167.13,-64.6 170.63,-54.6 163.63,-54.6"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="271.08,-45.56 260.63,-47.34 269.91,-52.47 271.08,-45.56"/>
</a>
</g>
</g>
<!-- Node5 -->
<g id="Node000005" class="node">
<title>Node5</title>
<g id="a_Node000005"><a xlink:href="classgridfire_1_1reaction_1_1_weak_reaclib_reaction.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="420.75,-30.5 302,-30.5 302,0 420.75,0 420.75,-30.5"/>
<text xml:space="preserve" text-anchor="start" x="310" y="-17" font-family="Helvetica,sans-Serif" font-size="10.00">gridfire::reaction</text>
<text xml:space="preserve" text-anchor="middle" x="361.38" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">::WeakReaclibReaction</text>
</a>
</g>
</g>
<!-- Node3&#45;&gt;Node5 -->
<g id="edge4_Node000003_Node000005" class="edge">
<title>Node3&#45;&gt;Node5</title>
<g id="a_edge4_Node000003_Node000005"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M270.43,-29.88C280.64,-28.22 291.28,-26.49 301.52,-24.83"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="269.94,-26.42 260.63,-31.48 271.07,-33.33 269.94,-26.42"/>
</a> </a>
</g> </g>
</g> </g>

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 5.0 KiB

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -29,7 +29,7 @@
<tbody> <tbody>
<tr id="projectrow"> <tr id="projectrow">
<td id="projectalign"> <td id="projectalign">
<div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc1</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v0.7.0_rc2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

Some files were not shown because too many files have changed in this diff Show More