8 Commits

Author SHA1 Message Date
ac0dea2755 fix(gf_get_compiler_flags): fixed bug in getting gridfire compiler flags
also added command line utilities and rebuilt docs
2026-06-14 08:36:52 -04:00
6f85eb6b2c fix(wheels): system to continue if wheel build fails 2026-06-13 10:49:16 -04:00
6bad4415b9 fix(omp): upped CppAD max num threads to 512
Also added more explicit error handeling to ensure that users know what to do when the thread count exceeds the compiled maximum
2026-06-13 07:16:50 -04:00
5ea884897d fix(dl): added dl as a dep
older manylinux systems need dl brought in explicitly
2026-06-12 16:51:55 -04:00
0759ff6d9c docs(version): first gridfire release version (v1.0.0)
This version is the version which is scientifically published and which includes the lower friction install system with pip
2026-06-12 16:38:07 -04:00
2fca1674f8 fix(fourdst): pinned fourdst to v0.10.6 for ABI compatibility
this version pins pybind11 to v3.0.0
2026-06-12 16:36:47 -04:00
5502b0ac80 build(omp): added explicit omp prefix override
this is useful when building omp compatible wheels on mac which bundle libomp with them
2026-06-12 14:49:19 -04:00
61cd7359d4 build(python): gridfire uses fourdst wheel in python mode 2026-06-12 14:30:59 -04:00
1625 changed files with 217840 additions and 196610 deletions

View File

@@ -48,7 +48,7 @@ PROJECT_NAME = GridFire
# could be handy for archiving the generated documentation or if some version # could be handy for archiving the generated documentation or if some version
# control system is used. # control system is used.
PROJECT_NUMBER = v0.7.6rc4.2 PROJECT_NUMBER = v1.0.2
# Using the PROJECT_BRIEF tag one can provide an optional one line description # Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewers a # for a project that appears at the top of each page and should give viewers a

View File

@@ -61,7 +61,6 @@ version_sufficient = required_min == '' ? true : compiler_version.version_compar
# --- failure analysis and reporting ---------------------------------------- # --- failure analysis and reporting ----------------------------------------
if toolchain_functional and not version_sufficient if toolchain_functional and not version_sufficient
# Works in practice; don't break a functioning setup over a number.
warning(toolchain_desc + ' is below the minimum GridFire tests against (' warning(toolchain_desc + ' is below the minimum GridFire tests against ('
+ required_min + '), but all C++23 capability probes passed. ' + required_min + '), but all C++23 capability probes passed. '
+ 'Proceeding; if you hit compiler errors deep in the build, ' + 'Proceeding; if you hit compiler errors deep in the build, '
@@ -69,7 +68,6 @@ if toolchain_functional and not version_sufficient
endif endif
if not toolchain_functional if not toolchain_functional
# 1) Name the failure precisely.
failure_detail = '' failure_detail = ''
if not have_print_hdr if not have_print_hdr
failure_detail += '\n * C++ standard library header <print> not found.' failure_detail += '\n * C++ standard library header <print> not found.'
@@ -83,14 +81,11 @@ if not toolchain_functional
if not version_sufficient if not version_sufficient
failure_detail += '\n * ' + toolchain_desc + ' is below the required minimum (' + required_min + ').' failure_detail += '\n * ' + toolchain_desc + ' is below the required minimum (' + required_min + ').'
elif compiler_id == 'clang' and not is_apple_clang elif compiler_id == 'clang' and not is_apple_clang
# New-enough clang but probes failed: almost always the C++ stdlib
# underneath it, not clang itself.
failure_detail += ('\n * clang itself is new enough; on Linux clang uses the system ' failure_detail += ('\n * clang itself is new enough; on Linux clang uses the system '
+ 'libstdc++, so the GNU C++ runtime is likely too old. Install GCC >= ' + 'libstdc++, so the GNU C++ runtime is likely too old. Install GCC >= '
+ gridfire_gcc_min + ' (clang will pick up its libstdc++), or use -Dcpp_args=-stdlib=libc++ with libc++ >= 17 installed.') + gridfire_gcc_min + ' (clang will pick up its libstdc++), or use -Dcpp_args=-stdlib=libc++ with libc++ >= 17 installed.')
endif endif
# 2) Search for a suitable already-installed alternate.
candidate_names = [] candidate_names = []
if compiler_id == 'gcc' if compiler_id == 'gcc'
candidate_names += ['g++-16', 'g++-15', 'g++-14', 'clang++-21', 'clang++-20', 'clang++-19', 'clang++-18', 'clang++-17'] candidate_names += ['g++-16', 'g++-15', 'g++-14', 'clang++-21', 'clang++-20', 'clang++-19', 'clang++-18', 'clang++-17']
@@ -110,7 +105,6 @@ if not toolchain_functional
p = find_program(cand, required: false) p = find_program(cand, required: false)
if p.found() if p.found()
cand_ver = p.version() cand_ver = p.version()
# Decide the applicable minimum from the candidate's family.
cand_min = cand.contains('clang') ? gridfire_clang_min : gridfire_gcc_min cand_min = cand.contains('clang') ? gridfire_clang_min : gridfire_gcc_min
if cand_ver != 'unknown' and cand_ver.version_compare('>=' + cand_min) if cand_ver != 'unknown' and cand_ver.version_compare('>=' + cand_min)
candidates_report += '\n [OK] ' + p.full_path() + ' (version ' + cand_ver + ')' candidates_report += '\n [OK] ' + p.full_path() + ' (version ' + cand_ver + ')'
@@ -123,7 +117,6 @@ if not toolchain_functional
endif endif
endforeach endforeach
# 3) OS-specific install guidance.
os_help = '' os_help = ''
if host_machine.system() == 'darwin' if host_machine.system() == 'darwin'
os_help = ''' os_help = '''
@@ -160,7 +153,6 @@ How to get a suitable compiler on Linux:''' + distro_hint + '''
os_help = '\nInstall GCC >= ' + gridfire_gcc_min + ' or LLVM clang >= ' + gridfire_clang_min + ' for your platform.' os_help = '\nInstall GCC >= ' + gridfire_gcc_min + ' or LLVM clang >= ' + gridfire_clang_min + ' for your platform.'
endif endif
# 4) Assemble the verdict.
if suitable_cxx != '' if suitable_cxx != ''
action = ('\nA suitable compiler IS already installed. Meson cannot switch compilers ' action = ('\nA suitable compiler IS already installed. Meson cannot switch compilers '
+ 'after configuration starts, so re-run setup pointing at it:\n\n' + 'after configuration starts, so re-run setup pointing at it:\n\n'
@@ -181,18 +173,9 @@ How to get a suitable compiler on Linux:''' + distro_hint + '''
+ action) + action)
endif endif
# --- everything below unchanged from the original check ---------------------
# For Eigen
add_project_arguments('-Wno-deprecated-declarations', language: 'cpp') add_project_arguments('-Wno-deprecated-declarations', language: 'cpp')
if get_option('build_python')
message('enabling hidden visibility for C++ symbols when building Python extension. This reduces the size of the resulting shared library.')
add_project_arguments('-fvisibility=hidden', language: 'cpp')
else
message('enabling default visibility for C++ symbols')
add_project_arguments('-fvisibility=default', language: 'cpp') add_project_arguments('-fvisibility=default', language: 'cpp')
endif
if get_option('openmp_support') if get_option('openmp_support')
gridfire_args += ['-DGF_USE_OPENMP'] gridfire_args += ['-DGF_USE_OPENMP']

View File

@@ -2,7 +2,7 @@ cppad_cmake_options = cmake.subproject_options()
cppad_cmake_options.add_cmake_defines({ cppad_cmake_options.add_cmake_defines({
'cppad_static_lib': 'true', 'cppad_static_lib': 'true',
'cpp_mas_num_threads': '10', 'cppad_max_num_threads': '512',
'cppad_debug_and_release': 'false', 'cppad_debug_and_release': 'false',
'include_doc': 'false', 'include_doc': 'false',
'CMAKE_POSITION_INDEPENDENT_CODE': true 'CMAKE_POSITION_INDEPENDENT_CODE': true
@@ -29,8 +29,14 @@ libcppad_static = static_library(
install: false install: false
) )
dl_dep = dependency('dl', required: false)
if not dl_dep.found()
dl_dep = cpp.find_library('dl', required: false)
endif
cppad_dep = declare_dependency( cppad_dep = declare_dependency(
include_directories: cppad_incs include_directories: cppad_incs,
dependencies: dl_dep.found() ? [dl_dep] : [],
) )
message('Staging vendored CppAD headers for ' + gridfire_vendor_includedir) message('Staging vendored CppAD headers for ' + gridfire_vendor_includedir)

View File

@@ -1,3 +1,36 @@
if get_option('build_python')
fourdst_inc_probe = run_command(py_installation, '-c',
'import fourdst; print("\\n".join(fourdst.get_include_dirs()))',
check: false)
if fourdst_inc_probe.returncode() != 0
error('Could not interrogate the fourdst wheel:\n' + fourdst_inc_probe.stderr()
+ '\nIs fourdst installed in the build environment?')
endif
fourdst_inc_dirs = fourdst_inc_probe.stdout().strip().split('\n')
fourdst_lib_probe = run_command(py_installation, '-c',
'import fourdst; print("\\n".join(fourdst.get_lib_dirs()))',
check: false)
if fourdst_lib_probe.returncode() != 0
error('Could not interrogate the fourdst wheel:\n' + fourdst_lib_probe.stderr())
endif
fourdst_lib_dirs = fourdst_lib_probe.stdout().strip().split('\n')
fourdst_inc_args = []
foreach d : fourdst_inc_dirs
fourdst_inc_args += ['-I' + d]
endforeach
cpp = meson.get_compiler('cpp')
comp_lib = cpp.find_library('composition', dirs: fourdst_lib_dirs)
log_lib = cpp.find_library('logging', dirs: fourdst_lib_dirs)
const_lib = cpp.find_library('const', dirs: fourdst_lib_dirs)
refl_lib = cpp.find_library('reflect_cpp', dirs: fourdst_lib_dirs)
composition_dep = declare_dependency(compile_args: fourdst_inc_args, dependencies: [comp_lib, refl_lib])
log_dep = declare_dependency(compile_args: fourdst_inc_args, dependencies: log_lib)
const_dep = declare_dependency(compile_args: fourdst_inc_args, dependencies: const_lib)
config_dep = declare_dependency(compile_args: fourdst_inc_args) # header-only libconfig
else
fourdst_build_lib_all = true fourdst_build_lib_all = true
if not get_option('plugin_support') if not get_option('plugin_support')
fourdst_build_lib_all=false fourdst_build_lib_all=false
@@ -38,45 +71,4 @@ if get_option('plugin_support')
warning('Including plugin library from fourdst. Note this will bring in minizip-ng and openssl, which can cause build issues with cross compilation due to their complexity.') warning('Including plugin library from fourdst. Note this will bring in minizip-ng and openssl, which can cause build issues with cross compilation due to their complexity.')
libplugin = fourdst_sp.get_variable('libplugin') libplugin = fourdst_sp.get_variable('libplugin')
endif endif
if get_option('build_python')
sp_root = meson.project_source_root() / 'subprojects'
fourdst_header_trees = [
['config',
sp_root / 'libconfig' / 'src' / 'config' / 'include' / 'fourdst' / 'config',
gridfire_includedir / 'fourdst'],
['composition',
sp_root / 'libcomposition' / 'src' / 'composition' / 'include' / 'fourdst' / 'composition',
gridfire_includedir / 'fourdst'],
['atomic',
sp_root / 'libcomposition' / 'src' / 'composition' / 'include' / 'fourdst' / 'atomic',
gridfire_includedir / 'fourdst'],
['constants',
sp_root / 'libconstants' / 'src' / 'constants' / 'include' / 'fourdst' / 'constants',
gridfire_includedir / 'fourdst'],
['logging',
sp_root / 'liblogging' / 'src' / 'logging' / 'include' / 'fourdst' / 'logging',
gridfire_includedir / 'fourdst'],
['toml++',
sp_root / 'libconfig' / 'build-config' / 'tomlpp' / 'vendor' / 'include' / 'toml++',
gridfire_fourdst_vendor_includedir],
['quill',
sp_root / 'quill' / 'include' / 'quill',
gridfire_fourdst_vendor_includedir],
['CLI',
sp_root / 'CLI11-2.6.1' / 'include' / 'CLI',
gridfire_fourdst_vendor_includedir],
]
foreach t : fourdst_header_trees
custom_target(
'wheel_headers_' + t[0].underscorify(),
command: copytree_cmd + [t[1], '@OUTPUT@'],
output: t[0],
install: true,
install_dir: t[2],
)
endforeach
endif endif

View File

@@ -36,28 +36,16 @@ if get_option('build_python')
] ]
if meson.is_cross_build() and host_machine.system() == 'darwin'
py_mod = shared_module(
'_gridfire',
sources: py_sources,
dependencies: gridfire_py_deps,
name_prefix: '',
name_suffix: 'so',
install: true,
install_rpath: gridfire_ext_rpath,
install_dir: py_installation.get_install_dir() + '/gridfire'
)
else
py_mod = py_installation.extension_module( py_mod = py_installation.extension_module(
'_gridfire', '_gridfire',
sources: py_sources, sources: py_sources,
dependencies: gridfire_py_deps, dependencies: gridfire_py_deps,
install: true, install: true,
link_args: gridfire_ext_rpath_args,
build_rpath: gridfire_ext_rpath,
install_rpath: gridfire_ext_rpath, install_rpath: gridfire_ext_rpath,
subdir: 'gridfire', subdir: 'gridfire',
) )
endif
py_installation.install_sources( py_installation.install_sources(
files( files(

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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>
@@ -132,6 +132,22 @@ Functions</h2></td></tr>
<tr class="separator:a454366ce631749963d3c6b387bcbc3e7"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="separator:a454366ce631749963d3c6b387bcbc3e7"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a787f9de5930793c2976d22426ae971b5" id="r_a787f9de5930793c2976d22426ae971b5"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegridfire.html#a787f9de5930793c2976d22426ae971b5">gridfire.gf_credits</a> ()</td></tr> <tr class="memitem:a787f9de5930793c2976d22426ae971b5" id="r_a787f9de5930793c2976d22426ae971b5"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegridfire.html#a787f9de5930793c2976d22426ae971b5">gridfire.gf_credits</a> ()</td></tr>
<tr class="separator:a787f9de5930793c2976d22426ae971b5"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="separator:a787f9de5930793c2976d22426ae971b5"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a40cbecad1b1a87c6711ee7e20517f092" id="r_a40cbecad1b1a87c6711ee7e20517f092"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegridfire.html#a40cbecad1b1a87c6711ee7e20517f092">gridfire.gf_get_include_dirs</a> ()</td></tr>
<tr class="separator:a40cbecad1b1a87c6711ee7e20517f092"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adf54b5015a40a40f65c1400e9e4355f1" id="r_adf54b5015a40a40f65c1400e9e4355f1"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegridfire.html#adf54b5015a40a40f65c1400e9e4355f1">gridfire.gf_get_lib_dirs</a> ()</td></tr>
<tr class="separator:adf54b5015a40a40f65c1400e9e4355f1"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a350115e7c1a0b4d331afb4e6dc5b09df" id="r_a350115e7c1a0b4d331afb4e6dc5b09df"><td class="memItemLeft" align="right" valign="top">List[str]&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegridfire.html#a350115e7c1a0b4d331afb4e6dc5b09df">gridfire.gf_get_rpath_flags</a> ()</td></tr>
<tr class="separator:a350115e7c1a0b4d331afb4e6dc5b09df"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9bdc5344d515db787a2bdceaa19dccf0" id="r_a9bdc5344d515db787a2bdceaa19dccf0"><td class="memItemLeft" align="right" valign="top">List[str]&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegridfire.html#a9bdc5344d515db787a2bdceaa19dccf0">gridfire.gf_get_lib_flags</a> ()</td></tr>
<tr class="separator:a9bdc5344d515db787a2bdceaa19dccf0"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a94f04c082dd84602da5431004e1ac96a" id="r_a94f04c082dd84602da5431004e1ac96a"><td class="memItemLeft" align="right" valign="top">List[str]&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegridfire.html#a94f04c082dd84602da5431004e1ac96a">gridfire.gf_get_include_flags</a> ()</td></tr>
<tr class="separator:a94f04c082dd84602da5431004e1ac96a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6cf0ab33165c3069a2b4c196a04e12a7" id="r_a6cf0ab33165c3069a2b4c196a04e12a7"><td class="memItemLeft" align="right" valign="top">List[str]&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegridfire.html#a6cf0ab33165c3069a2b4c196a04e12a7">gridfire.gf_get_extra_flags</a> ()</td></tr>
<tr class="separator:a6cf0ab33165c3069a2b4c196a04e12a7"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab6c262cb95aefce7b7217be05def6a2c" id="r_ab6c262cb95aefce7b7217be05def6a2c"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegridfire.html#ab6c262cb95aefce7b7217be05def6a2c">gridfire.gf_compiler_flags</a> (just_gridfire=False)</td></tr>
<tr class="separator:ab6c262cb95aefce7b7217be05def6a2c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a286ece04602867606e20af9f4f4ad4e7" id="r_a286ece04602867606e20af9f4f4ad4e7"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegridfire.html#a286ece04602867606e20af9f4f4ad4e7">gridfire.gf_get_compiler_flags_formatted</a> (just_gridfire=False)</td></tr>
<tr class="separator:a286ece04602867606e20af9f4f4ad4e7"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls"> </table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="var-members" name="var-members"></a> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="var-members" name="var-members"></a>
Variables</h2></td></tr> Variables</h2></td></tr>
@@ -141,7 +157,7 @@ Variables</h2></td></tr>
<tr class="separator:acb6c9c1b2920f0d1744a8e7198d2cf5b"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="separator:acb6c9c1b2920f0d1744a8e7198d2cf5b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a14116c4fbbb07c2fa95826dc543771a2" id="r_a14116c4fbbb07c2fa95826dc543771a2"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegridfire.html#a14116c4fbbb07c2fa95826dc543771a2">gridfire.__version__</a> = <a class="el" href="namespacegridfire.html#acb6c9c1b2920f0d1744a8e7198d2cf5b">_meta</a>['Version']</td></tr> <tr class="memitem:a14116c4fbbb07c2fa95826dc543771a2" id="r_a14116c4fbbb07c2fa95826dc543771a2"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegridfire.html#a14116c4fbbb07c2fa95826dc543771a2">gridfire.__version__</a> = <a class="el" href="namespacegridfire.html#acb6c9c1b2920f0d1744a8e7198d2cf5b">_meta</a>['Version']</td></tr>
<tr class="separator:a14116c4fbbb07c2fa95826dc543771a2"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="separator:a14116c4fbbb07c2fa95826dc543771a2"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3535aedf8a24266670197a715d91229c" id="r_a3535aedf8a24266670197a715d91229c"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegridfire.html#a3535aedf8a24266670197a715d91229c">gridfire.__author__</a> = <a class="el" href="namespacegridfire.html#acb6c9c1b2920f0d1744a8e7198d2cf5b">_meta</a>['Author']</td></tr> <tr class="memitem:a3535aedf8a24266670197a715d91229c" id="r_a3535aedf8a24266670197a715d91229c"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegridfire.html#a3535aedf8a24266670197a715d91229c">gridfire.__author__</a> = <a class="el" href="namespacegridfire.html#acb6c9c1b2920f0d1744a8e7198d2cf5b">_meta</a>['Authors']</td></tr>
<tr class="separator:a3535aedf8a24266670197a715d91229c"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="separator:a3535aedf8a24266670197a715d91229c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a23f04b652e06ef7660bed6ce2f36def8" id="r_a23f04b652e06ef7660bed6ce2f36def8"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegridfire.html#a23f04b652e06ef7660bed6ce2f36def8">gridfire.__license__</a> = <a class="el" href="namespacegridfire.html#acb6c9c1b2920f0d1744a8e7198d2cf5b">_meta</a>['License']</td></tr> <tr class="memitem:a23f04b652e06ef7660bed6ce2f36def8" id="r_a23f04b652e06ef7660bed6ce2f36def8"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegridfire.html#a23f04b652e06ef7660bed6ce2f36def8">gridfire.__license__</a> = <a class="el" href="namespacegridfire.html#acb6c9c1b2920f0d1744a8e7198d2cf5b">_meta</a>['License']</td></tr>
<tr class="separator:a23f04b652e06ef7660bed6ce2f36def8"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="separator:a23f04b652e06ef7660bed6ce2f36def8"><td class="memSeparator" colspan="2">&#160;</td></tr>
@@ -151,6 +167,8 @@ Variables</h2></td></tr>
<tr class="separator:a75069cd30950ced7af0da9454e4cc921"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="separator:a75069cd30950ced7af0da9454e4cc921"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a62cc4eb0aa62cc209ee4583b8cc0df52" id="r_a62cc4eb0aa62cc209ee4583b8cc0df52"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegridfire.html#a62cc4eb0aa62cc209ee4583b8cc0df52">gridfire.__description__</a> = <a class="el" href="namespacegridfire.html#acb6c9c1b2920f0d1744a8e7198d2cf5b">_meta</a>['Summary']</td></tr> <tr class="memitem:a62cc4eb0aa62cc209ee4583b8cc0df52" id="r_a62cc4eb0aa62cc209ee4583b8cc0df52"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegridfire.html#a62cc4eb0aa62cc209ee4583b8cc0df52">gridfire.__description__</a> = <a class="el" href="namespacegridfire.html#acb6c9c1b2920f0d1744a8e7198d2cf5b">_meta</a>['Summary']</td></tr>
<tr class="separator:a62cc4eb0aa62cc209ee4583b8cc0df52"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="separator:a62cc4eb0aa62cc209ee4583b8cc0df52"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af1322f32e7c01a82e55767967a23420d" id="r_af1322f32e7c01a82e55767967a23420d"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegridfire.html#af1322f32e7c01a82e55767967a23420d">gridfire._PACKAGE_DIR</a> = Path(__file__).resolve().parent</td></tr>
<tr class="separator:af1322f32e7c01a82e55767967a23420d"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table> </table>
</div><!-- contents --> </div><!-- contents -->
</div><!-- doc-content --> </div><!-- doc-content -->

View File

@@ -2,9 +2,17 @@ var ____init_____8py =
[ [
[ "gridfire.gf_author", "namespacegridfire.html#a1de3db5e65a2e834c55f458307cab68e", null ], [ "gridfire.gf_author", "namespacegridfire.html#a1de3db5e65a2e834c55f458307cab68e", null ],
[ "gridfire.gf_collaboration", "namespacegridfire.html#a454366ce631749963d3c6b387bcbc3e7", null ], [ "gridfire.gf_collaboration", "namespacegridfire.html#a454366ce631749963d3c6b387bcbc3e7", null ],
[ "gridfire.gf_compiler_flags", "namespacegridfire.html#ab6c262cb95aefce7b7217be05def6a2c", null ],
[ "gridfire.gf_credits", "namespacegridfire.html#a787f9de5930793c2976d22426ae971b5", null ], [ "gridfire.gf_credits", "namespacegridfire.html#a787f9de5930793c2976d22426ae971b5", null ],
[ "gridfire.gf_description", "namespacegridfire.html#afa60407432a1e563b9731ce298cf42bc", null ], [ "gridfire.gf_description", "namespacegridfire.html#afa60407432a1e563b9731ce298cf42bc", null ],
[ "gridfire.gf_email", "namespacegridfire.html#ae6f8e40e5233e5c98c9c4290f518b72d", null ], [ "gridfire.gf_email", "namespacegridfire.html#ae6f8e40e5233e5c98c9c4290f518b72d", null ],
[ "gridfire.gf_get_compiler_flags_formatted", "namespacegridfire.html#a286ece04602867606e20af9f4f4ad4e7", null ],
[ "gridfire.gf_get_extra_flags", "namespacegridfire.html#a6cf0ab33165c3069a2b4c196a04e12a7", null ],
[ "gridfire.gf_get_include_dirs", "namespacegridfire.html#a40cbecad1b1a87c6711ee7e20517f092", null ],
[ "gridfire.gf_get_include_flags", "namespacegridfire.html#a94f04c082dd84602da5431004e1ac96a", null ],
[ "gridfire.gf_get_lib_dirs", "namespacegridfire.html#adf54b5015a40a40f65c1400e9e4355f1", null ],
[ "gridfire.gf_get_lib_flags", "namespacegridfire.html#a9bdc5344d515db787a2bdceaa19dccf0", null ],
[ "gridfire.gf_get_rpath_flags", "namespacegridfire.html#a350115e7c1a0b4d331afb4e6dc5b09df", null ],
[ "gridfire.gf_license", "namespacegridfire.html#a081c76fc9fbac9b5b380c8e4fa0e7be0", null ], [ "gridfire.gf_license", "namespacegridfire.html#a081c76fc9fbac9b5b380c8e4fa0e7be0", null ],
[ "gridfire.gf_metadata", "namespacegridfire.html#a0ee5ace587287cdba8f9755a0ef0b498", null ], [ "gridfire.gf_metadata", "namespacegridfire.html#a0ee5ace587287cdba8f9755a0ef0b498", null ],
[ "gridfire.gf_url", "namespacegridfire.html#ae5ade7b2d801af88a79382441ec68277", null ], [ "gridfire.gf_url", "namespacegridfire.html#ae5ade7b2d801af88a79382441ec68277", null ],
@@ -16,5 +24,6 @@ var ____init_____8py =
[ "gridfire.__license__", "namespacegridfire.html#a23f04b652e06ef7660bed6ce2f36def8", null ], [ "gridfire.__license__", "namespacegridfire.html#a23f04b652e06ef7660bed6ce2f36def8", null ],
[ "gridfire.__url__", "namespacegridfire.html#a75069cd30950ced7af0da9454e4cc921", null ], [ "gridfire.__url__", "namespacegridfire.html#a75069cd30950ced7af0da9454e4cc921", null ],
[ "gridfire.__version__", "namespacegridfire.html#a14116c4fbbb07c2fa95826dc543771a2", null ], [ "gridfire.__version__", "namespacegridfire.html#a14116c4fbbb07c2fa95826dc543771a2", null ],
[ "gridfire._meta", "namespacegridfire.html#acb6c9c1b2920f0d1744a8e7198d2cf5b", null ] [ "gridfire._meta", "namespacegridfire.html#acb6c9c1b2920f0d1744a8e7198d2cf5b", null ],
[ "gridfire._PACKAGE_DIR", "namespacegridfire.html#af1322f32e7c01a82e55767967a23420d", null ]
]; ];

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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -1,145 +1,150 @@
<map id="src/lib/solver/strategies/GridSolver.cpp" name="src/lib/solver/strategies/GridSolver.cpp"> <map id="src/lib/solver/strategies/GridSolver.cpp" name="src/lib/solver/strategies/GridSolver.cpp">
<area shape="rect" id="Node000001" title=" " alt="" coords="2608,5,2764,46"/> <area shape="rect" id="Node000001" title=" " alt="" coords="2736,5,2893,46"/>
<area shape="rect" id="Node000002" href="$_grid_solver_8h.html" title=" " alt="" coords="187,94,348,135"/> <area shape="rect" id="Node000002" href="$_grid_solver_8h.html" title=" " alt="" coords="296,94,456,135"/>
<area shape="poly" id="edge1_Node000001_Node000002" title=" " alt="" coords="2607,32,363,112,363,107,2608,27"/> <area shape="poly" id="edge1_Node000001_Node000002" title=" " alt="" coords="2736,32,472,112,472,107,2736,27"/>
<area shape="rect" id="Node000043" href="$error__solver_8h.html" title=" " alt="" coords="2521,360,2649,401"/> <area shape="rect" id="Node000044" href="$error__solver_8h.html" title=" " alt="" coords="2650,360,2777,401"/>
<area shape="poly" id="edge53_Node000001_Node000043" title=" " alt="" coords="2651,45,2624,69,2603,95,2590,127,2581,160,2573,229,2575,293,2580,346,2576,343,2569,294,2568,229,2576,159,2585,125,2599,93,2620,65,2646,48"/> <area shape="poly" id="edge54_Node000001_Node000044" title=" " alt="" coords="2780,45,2752,69,2732,95,2718,127,2709,160,2701,229,2703,293,2709,346,2705,343,2698,294,2696,229,2704,159,2713,125,2727,93,2749,65,2775,47"/>
<area shape="rect" id="Node000044" href="$_point_solver_8h.html" title=" " alt="" coords="1219,94,1380,135"/> <area shape="rect" id="Node000045" href="$_point_solver_8h.html" title=" " alt="" coords="1233,94,1394,135"/>
<area shape="poly" id="edge55_Node000001_Node000044" title=" " alt="" coords="2606,33,1396,110,1395,104,2610,30"/> <area shape="poly" id="edge56_Node000001_Node000045" title=" " alt="" coords="2734,33,1409,110,1409,105,2738,30"/>
<area shape="rect" id="Node000060" href="$macros_8h.html" title=" " alt="" coords="2784,102,2930,127"/> <area shape="rect" id="Node000061" href="$macros_8h.html" title=" " alt="" coords="2912,102,3058,127"/>
<area shape="poly" id="edge88_Node000001_Node000060" title=" " alt="" coords="2725,44,2822,94,2817,94,2725,49"/> <area shape="poly" id="edge93_Node000001_Node000061" title=" " alt="" coords="2854,44,2951,94,2945,94,2853,49"/>
<area shape="rect" id="Node000061" href="$gf__omp_8h.html" title=" " alt="" coords="2613,102,2759,127"/> <area shape="rect" id="Node000062" href="$gf__omp_8h.html" title=" " alt="" coords="2742,102,2888,127"/>
<area shape="poly" id="edge89_Node000001_Node000061" title=" " alt="" coords="2688,44,2688,88,2684,84,2685,49"/> <area shape="poly" id="edge94_Node000001_Node000062" title=" " alt="" coords="2816,44,2817,88,2813,84,2813,49"/>
<area shape="rect" id="Node000063" title=" " alt="" coords="2954,102,3010,127"/> <area shape="rect" id="Node000064" title=" " alt="" coords="3082,102,3139,127"/>
<area shape="poly" id="edge92_Node000001_Node000063" title=" " alt="" coords="2765,41,2852,63,2943,91,2947,95,2942,95,2941,97,2850,68,2765,46"/> <area shape="poly" id="edge97_Node000001_Node000064" title=" " alt="" coords="2893,41,2980,63,3072,91,3076,95,3071,95,3070,97,2979,68,2893,46"/>
<area shape="rect" id="Node000064" title=" " alt="" coords="3035,102,3081,127"/> <area shape="rect" id="Node000065" title=" " alt="" coords="3164,102,3210,127"/>
<area shape="poly" id="edge93_Node000001_Node000064" title=" " alt="" coords="2765,33,2888,55,2956,71,3023,91,3027,95,3022,94,3021,97,2955,76,2887,60,2765,39"/> <area shape="poly" id="edge98_Node000001_Node000065" title=" " alt="" coords="2893,33,3017,55,3085,71,3152,91,3155,95,3150,94,3150,97,3084,76,3015,60,2893,39"/>
<area shape="rect" id="Node000003" href="$strategy__abstract_8h.html" title=" " alt="" coords="187,183,348,223"/> <area shape="rect" id="Node000003" href="$strategy__abstract_8h.html" title=" " alt="" coords="296,183,456,223"/>
<area shape="poly" id="edge2_Node000002_Node000003" title=" " alt="" coords="268,133,270,168,265,167,267,138"/> <area shape="poly" id="edge2_Node000002_Node000003" title=" " alt="" coords="377,133,379,168,373,166,375,138"/>
<area shape="rect" id="Node000029" title=" " alt="" coords="120,456,197,482"/> <area shape="rect" id="Node000031" title=" " alt="" coords="81,456,159,482"/>
<area shape="poly" id="edge52_Node000002_Node000029" title=" " alt="" coords="186,130,94,152,56,167,32,184,12,218,8,235,10,255,17,280,31,311,83,399,104,424,129,446,124,448,100,428,79,402,26,313,12,281,5,256,3,234,7,216,28,181,53,163,92,147,189,126"/> <area shape="poly" id="edge53_Node000002_Node000031" title=" " alt="" coords="293,125,235,135,173,147,121,164,103,173,90,184,73,215,64,249,62,284,67,321,86,389,109,442,104,443,81,391,61,322,57,285,59,248,68,213,86,181,100,169,119,159,172,142,234,129,297,122"/>
<area shape="rect" id="Node000004" href="$engine__abstract_8h.html" title="Abstract interfaces for reaction network engines in GridFire." alt="" coords="1111,271,1256,312"/> <area shape="rect" id="Node000004" href="$engine__abstract_8h.html" title="Abstract interfaces for reaction network engines in GridFire." alt="" coords="840,271,984,312"/>
<area shape="poly" id="edge3_Node000003_Node000004" title=" " alt="" coords="347,219,360,221,566,246,772,264,1099,286,1094,288,771,269,566,251,359,226,349,224"/> <area shape="poly" id="edge3_Node000003_Node000004" title=" " alt="" coords="456,219,468,221,659,252,827,278,822,279,658,257,468,226,457,224"/>
<area shape="rect" id="Node000012" title=" " alt="" coords="350,618,407,644"/> <area shape="rect" id="Node000012" title=" " alt="" coords="281,618,338,644"/>
<area shape="poly" id="edge49_Node000003_Node000012" title=" " alt="" coords="269,221,270,379,270,470,272,491,278,511,299,549,326,581,353,609,348,608,322,585,294,552,273,513,267,492,265,470,265,379,266,226"/> <area shape="poly" id="edge50_Node000003_Node000012" title=" " alt="" coords="367,222,337,285,305,361,289,424,287,489,286,526,289,563,301,605,296,603,284,563,281,526,281,489,283,423,300,359,332,283,363,226"/>
<area shape="rect" id="Node000016" href="$types_2types_8h.html" title=" " alt="" coords="364,368,507,393"/> <area shape="rect" id="Node000017" href="$types_2types_8h.html" title=" " alt="" coords="347,368,490,393"/>
<area shape="poly" id="edge46_Node000003_Node000016" title=" " alt="" coords="291,221,344,269,419,355,414,356,340,273,291,227"/> <area shape="poly" id="edge47_Node000003_Node000017" title=" " alt="" coords="382,221,415,353,409,352,379,226"/>
<area shape="rect" id="Node000022" title=" " alt="" coords="1722,537,1776,563"/> <area shape="rect" id="Node000024" title=" " alt="" coords="1848,537,1901,563"/>
<area shape="poly" id="edge51_Node000003_Node000022" title=" " alt="" coords="347,219,360,221,498,234,615,239,815,234,912,232,1015,235,1132,246,1268,269,1341,284,1397,299,1451,321,1516,358,1559,390,1588,420,1616,452,1656,487,1717,530,1711,528,1653,491,1612,455,1584,424,1555,394,1513,362,1449,326,1396,304,1340,289,1267,274,1131,251,1015,240,912,237,815,239,615,244,497,240,359,226,349,224"/> <area shape="poly" id="edge52_Node000003_Node000024" title=" " alt="" coords="456,219,468,221,602,233,717,237,913,229,1007,226,1108,229,1221,242,1353,269,1412,286,1455,305,1552,358,1718,450,1846,529,1840,528,1715,454,1549,362,1453,310,1410,291,1351,274,1220,247,1107,235,1007,232,913,234,717,242,602,239,468,226,457,224"/>
<area shape="rect" id="Node000028" title=" " alt="" coords="306,456,355,482"/> <area shape="rect" id="Node000030" title=" " alt="" coords="1597,456,1646,482"/>
<area shape="poly" id="edge50_Node000003_Node000028" title=" " alt="" coords="274,221,289,271,327,441,322,440,284,272,273,226"/> <area shape="poly" id="edge51_Node000003_Node000030" title=" " alt="" coords="456,219,468,221,628,238,765,242,1002,238,1114,242,1231,259,1294,274,1360,295,1430,323,1505,358,1535,376,1563,398,1605,445,1600,443,1559,402,1532,380,1503,362,1428,328,1358,301,1292,280,1230,264,1114,247,1002,243,765,247,627,243,468,226,457,224"/>
<area shape="poly" id="edge47_Node000003_Node000029" title=" " alt="" coords="262,222,171,443,167,441,257,225"/> <area shape="poly" id="edge48_Node000003_Node000031" title=" " alt="" coords="317,226,280,246,242,273,204,315,173,361,132,443,128,441,169,359,200,312,238,269,277,242,321,222"/>
<area shape="rect" id="Node000042" title=" " alt="" coords="721,279,763,304"/> <area shape="rect" id="Node000043" title=" " alt="" coords="1620,279,1662,304"/>
<area shape="poly" id="edge48_Node000003_Node000042" title=" " alt="" coords="347,219,360,221,708,283,703,286,359,226,349,224"/> <area shape="poly" id="edge49_Node000003_Node000043" title=" " alt="" coords="456,219,468,221,579,229,716,233,1037,234,1201,235,1356,240,1493,250,1602,269,1609,273,1603,273,1601,274,1492,256,1356,245,1201,240,1037,239,716,238,578,234,468,226,457,224"/>
<area shape="rect" id="Node000005" href="$reaction_8h.html" title="Defines classes for representing and managing nuclear reactions." alt="" coords="766,537,937,563"/> <area shape="rect" id="Node000005" href="$reaction_8h.html" title="Defines classes for representing and managing nuclear reactions." alt="" coords="600,537,771,563"/>
<area shape="poly" id="edge4_Node000004_Node000005" title=" " alt="" coords="1108,310,972,342,894,362,881,379,870,399,857,443,852,486,851,524,847,520,846,486,852,442,865,397,876,376,891,358,971,337,1113,308"/> <area shape="poly" id="edge4_Node000004_Node000005" title=" " alt="" coords="893,311,845,362,766,452,705,527,702,523,762,449,841,358,889,314"/>
<area shape="rect" id="Node000011" title=" " alt="" coords="1292,618,1403,644"/> <area shape="rect" id="Node000011" title=" " alt="" coords="981,618,1091,644"/>
<area shape="poly" id="edge43_Node000004_Node000011" title=" " alt="" coords="1256,294,1335,305,1378,316,1421,331,1461,351,1497,377,1527,409,1549,448,1554,477,1548,504,1533,529,1511,552,1455,589,1398,615,1397,610,1453,584,1507,548,1529,526,1543,502,1549,477,1544,450,1523,412,1494,381,1458,356,1419,336,1376,321,1334,311,1256,299"/> <area shape="poly" id="edge42_Node000004_Node000011" title=" " alt="" coords="984,291,1070,295,1175,306,1287,326,1343,340,1397,357,1442,373,1478,388,1509,410,1536,447,1543,470,1536,491,1507,516,1463,539,1409,559,1348,576,1219,605,1107,623,1106,618,1218,599,1346,571,1408,553,1461,534,1504,512,1531,488,1538,470,1531,450,1505,413,1476,392,1440,378,1395,363,1342,345,1286,331,1174,311,1070,300,985,296"/>
<area shape="poly" id="edge42_Node000004_Node000012" title=" " alt="" coords="1108,309,1093,315,1029,322,973,324,877,321,831,321,784,326,732,339,673,362,626,387,582,417,503,486,440,554,397,608,394,604,436,551,500,482,579,413,624,383,670,358,730,334,783,321,831,316,877,315,973,318,1028,317,1093,309,1114,308"/> <area shape="poly" id="edge41_Node000004_Node000012" title=" " alt="" coords="837,297,704,307,545,320,408,339,361,350,336,362,317,389,303,419,295,452,292,486,296,552,305,605,300,602,290,552,287,486,290,451,298,417,312,386,333,358,359,345,407,334,545,315,703,302,842,296"/>
<area shape="poly" id="edge14_Node000004_Node000016" title=" " alt="" coords="1108,304,1043,315,810,339,577,363,523,369,522,364,577,357,809,333,1042,309,1114,303"/> <area shape="rect" id="Node000014" title=" " alt="" coords="848,618,914,644"/>
<area shape="rect" id="Node000017" href="$screening__abstract_8h.html" title=" " alt="" coords="633,449,779,489"/> <area shape="poly" id="edge45_Node000004_Node000014" title=" " alt="" coords="910,311,899,374,888,449,883,533,883,605,879,601,878,533,883,448,893,373,906,314"/>
<area shape="poly" id="edge17_Node000004_Node000017" title=" " alt="" coords="1108,309,1093,315,1000,319,879,319,819,322,764,329,720,342,703,351,690,362,681,378,680,396,690,436,685,434,674,396,676,376,685,358,700,346,718,337,763,323,818,316,879,313,1000,313,1093,309,1114,308"/> <area shape="poly" id="edge12_Node000004_Node000017" title=" " alt="" coords="837,306,510,363,490,366,488,361,509,357,842,303"/>
<area shape="rect" id="Node000018" href="$screening__types_8h.html" title=" " alt="" coords="699,360,831,401"/> <area shape="rect" id="Node000018" title=" " alt="" coords="1839,456,1897,482"/>
<area shape="poly" id="edge22_Node000004_Node000018" title=" " alt="" coords="1108,309,1093,315,849,363,846,363,845,358,848,357,1092,309,1113,308"/> <area shape="poly" id="edge46_Node000004_Node000018" title=" " alt="" coords="984,294,1217,315,1361,333,1505,357,1595,379,1684,404,1827,452,1821,452,1682,409,1593,384,1503,363,1360,338,1217,320,985,300"/>
<area shape="rect" id="Node000020" href="$reporting_8h.html" title=" " alt="" coords="1396,449,1534,489"/> <area shape="rect" id="Node000019" href="$screening__abstract_8h.html" title=" " alt="" coords="528,449,674,489"/>
<area shape="poly" id="edge24_Node000004_Node000020" title=" " alt="" coords="1256,291,1302,297,1350,308,1397,328,1437,358,1450,375,1459,394,1466,434,1462,432,1454,396,1446,378,1434,362,1394,333,1348,313,1301,302,1256,296"/> <area shape="poly" id="edge16_Node000004_Node000019" title=" " alt="" coords="837,297,760,305,675,317,601,335,573,347,555,362,548,379,551,398,560,417,574,438,568,436,555,420,545,399,543,378,551,358,571,343,599,330,674,311,760,300,842,295"/>
<area shape="rect" id="Node000025" href="$jacobian_8h.html" title="Wrapper for handling the network Jacobian matrix in GridFire. Currently uses Eigen&#39;s SparseMatrix." alt="" coords="982,360,1121,401"/> <area shape="rect" id="Node000020" href="$screening__types_8h.html" title=" " alt="" coords="565,360,696,401"/>
<area shape="poly" id="edge27_Node000004_Node000025" title=" " alt="" coords="1156,311,1095,354,1093,349,1151,314"/> <area shape="poly" id="edge21_Node000004_Node000020" title=" " alt="" coords="845,314,710,358,708,353,850,312"/>
<area shape="rect" id="Node000026" title=" " alt="" coords="1062,449,1222,489"/> <area shape="rect" id="Node000022" href="$reporting_8h.html" title=" " alt="" coords="1047,449,1185,489"/>
<area shape="poly" id="edge41_Node000004_Node000026" title=" " alt="" coords="1181,311,1152,435,1148,432,1177,314"/> <area shape="poly" id="edge23_Node000004_Node000022" title=" " alt="" coords="985,302,1078,325,1116,340,1141,358,1149,377,1150,397,1137,437,1134,433,1145,397,1144,378,1137,362,1114,345,1076,330,985,307"/>
<area shape="rect" id="Node000031" href="$error__engine_8h.html" title=" " alt="" coords="1711,360,1838,401"/> <area shape="rect" id="Node000027" href="$jacobian_8h.html" title="Wrapper for handling the network Jacobian matrix in GridFire. Currently uses Eigen&#39;s SparseMatrix." alt="" coords="1204,360,1342,401"/>
<area shape="poly" id="edge34_Node000004_Node000031" title=" " alt="" coords="1256,301,1698,367,1693,368,1256,306"/> <area shape="poly" id="edge26_Node000004_Node000027" title=" " alt="" coords="985,308,1192,359,1186,359,985,313"/>
<area shape="rect" id="Node000034" href="$blob_8h.html" title="Container class for managing multiple scratchpad instances." alt="" coords="1247,360,1424,401"/> <area shape="rect" id="Node000028" title=" " alt="" coords="1361,449,1522,489"/>
<area shape="poly" id="edge38_Node000004_Node000034" title=" " alt="" coords="1219,310,1291,353,1286,352,1218,315"/> <area shape="poly" id="edge40_Node000004_Node000028" title=" " alt="" coords="984,295,1080,303,1188,316,1287,334,1326,345,1356,358,1378,374,1397,393,1426,436,1421,434,1393,396,1374,378,1353,362,1325,350,1286,339,1187,321,1079,308,985,300"/>
<area shape="rect" id="Node000040" title=" " alt="" coords="1246,456,1321,482"/> <area shape="rect" id="Node000032" href="$error__engine_8h.html" title=" " alt="" coords="2143,360,2270,401"/>
<area shape="poly" id="edge45_Node000004_Node000040" title=" " alt="" coords="1193,310,1212,353,1237,399,1267,445,1262,443,1232,402,1207,355,1190,315"/> <area shape="poly" id="edge33_Node000004_Node000032" title=" " alt="" coords="985,293,1547,315,1876,334,2017,345,2130,360,2125,360,2016,350,1875,339,1546,320,985,298"/>
<area shape="rect" id="Node000041" title=" " alt="" coords="905,368,958,393"/> <area shape="rect" id="Node000035" href="$blob_8h.html" title="Container class for managing multiple scratchpad instances." alt="" coords="950,360,1127,401"/>
<area shape="poly" id="edge44_Node000004_Node000041" title=" " alt="" coords="1114,312,1043,336,971,362,969,363,967,358,969,358,1042,331,1109,313"/> <area shape="poly" id="edge37_Node000004_Node000035" title=" " alt="" coords="941,310,1000,351,995,351,940,315"/>
<area shape="rect" id="Node000006" title=" " alt="" coords="805,618,866,644"/> <area shape="rect" id="Node000041" title=" " alt="" coords="898,456,972,482"/>
<area shape="poly" id="edge5_Node000005_Node000006" title=" " alt="" coords="851,562,843,605,839,601,847,565"/> <area shape="poly" id="edge44_Node000004_Node000041" title=" " alt="" coords="916,310,933,442,929,439,913,314"/>
<area shape="rect" id="Node000007" title=" " alt="" coords="889,618,977,644"/> <area shape="rect" id="Node000042" title=" " alt="" coords="720,368,773,393"/>
<area shape="poly" id="edge6_Node000005_Node000007" title=" " alt="" coords="865,561,912,608,907,607,863,566"/> <area shape="poly" id="edge43_Node000004_Node000042" title=" " alt="" coords="877,311,784,362,782,358,872,314"/>
<area shape="rect" id="Node000008" title=" " alt="" coords="576,618,781,644"/> <area shape="rect" id="Node000008" title=" " alt="" coords="1207,618,1412,644"/>
<area shape="poly" id="edge7_Node000005_Node000008" title=" " alt="" coords="827,563,719,614,718,609,822,564"/> <area shape="poly" id="edge5_Node000005_Node000008" title=" " alt="" coords="772,560,1201,616,1195,616,771,565"/>
<area shape="rect" id="Node000009" title=" " alt="" coords="2010,618,2173,644"/> <area shape="rect" id="Node000009" title=" " alt="" coords="2099,618,2261,644"/>
<area shape="poly" id="edge8_Node000005_Node000009" title=" " alt="" coords="938,554,1996,622,1993,626,938,560"/> <area shape="poly" id="edge6_Node000005_Node000009" title=" " alt="" coords="772,553,2084,622,2083,628,772,559"/>
<area shape="rect" id="Node000010" title=" " alt="" coords="1000,618,1098,644"/> <area shape="poly" id="edge7_Node000005_Node000011" title=" " alt="" coords="740,561,970,614,964,615,739,566"/>
<area shape="poly" id="edge9_Node000005_Node000010" title=" " alt="" coords="882,561,1007,613,1002,612,881,566"/> <area shape="poly" id="edge8_Node000005_Node000012" title=" " alt="" coords="630,564,353,624,353,618,625,563"/>
<area shape="poly" id="edge10_Node000005_Node000011" title=" " alt="" coords="938,559,1093,579,1269,608,1288,615,1283,614,1268,614,1092,584,938,564"/> <area shape="poly" id="edge9_Node000005_Node000014" title=" " alt="" coords="716,561,840,613,835,612,715,566"/>
<area shape="poly" id="edge11_Node000005_Node000012" title=" " alt="" coords="763,556,604,576,511,591,420,614,416,615,415,610,419,608,510,586,603,570,768,556"/> <area shape="rect" id="Node000015" title=" " alt="" coords="452,618,572,644"/>
<area shape="rect" id="Node000014" title=" " alt="" coords="431,618,552,644"/> <area shape="poly" id="edge10_Node000005_Node000015" title=" " alt="" coords="661,563,553,614,551,609,656,564"/>
<area shape="poly" id="edge12_Node000005_Node000014" title=" " alt="" coords="791,563,564,614,551,617,550,611,563,608,785,564"/> <area shape="rect" id="Node000016" title=" " alt="" coords="618,611,753,652"/>
<area shape="rect" id="Node000015" title=" " alt="" coords="1121,611,1257,652"/> <area shape="poly" id="edge11_Node000005_Node000016" title=" " alt="" coords="687,562,687,597,683,594,683,565"/>
<area shape="poly" id="edge13_Node000005_Node000015" title=" " alt="" coords="905,561,1109,610,1104,610,904,566"/> <area shape="poly" id="edge14_Node000017_Node000015" title=" " alt="" coords="419,391,421,467,429,516,445,562,462,586,485,609,479,608,458,590,440,564,424,517,416,468,416,396"/>
<area shape="poly" id="edge16_Node000016_Node000014" title=" " alt="" coords="440,392,488,604,483,603,436,395"/> <area shape="poly" id="edge13_Node000017_Node000016" title=" " alt="" coords="429,391,494,467,540,515,590,561,644,603,638,602,586,565,536,519,490,470,427,396"/>
<area shape="poly" id="edge15_Node000016_Node000015" title=" " alt="" coords="508,387,642,409,718,425,792,446,892,482,989,524,1143,604,1138,603,987,529,890,487,791,451,716,431,641,414,508,393"/> <area shape="poly" id="edge15_Node000017_Node000018" title=" " alt="" coords="491,391,554,398,863,420,1105,427,1347,431,1658,446,1826,463,1821,463,1657,451,1347,436,1105,432,863,425,553,403,491,396"/>
<area shape="poly" id="edge18_Node000017_Node000005" title=" " alt="" coords="743,487,819,530,814,530,742,493"/> <area shape="poly" id="edge17_Node000019_Node000005" title=" " alt="" coords="623,487,664,527,659,526,621,492"/>
<area shape="poly" id="edge19_Node000017_Node000008" title=" " alt="" coords="705,488,685,605,681,601,701,492"/> <area shape="poly" id="edge18_Node000019_Node000008" title=" " alt="" coords="675,484,1243,613,1239,616,675,490"/>
<area shape="poly" id="edge21_Node000017_Node000012" title=" " alt="" coords="669,490,417,614,415,609,663,490"/> <area shape="poly" id="edge20_Node000019_Node000012" title=" " alt="" coords="568,490,346,613,344,608,563,490"/>
<area shape="poly" id="edge20_Node000017_Node000014" title=" " alt="" coords="683,489,521,611,519,607,677,490"/> <area shape="poly" id="edge19_Node000019_Node000015" title=" " alt="" coords="593,489,528,607,524,603,588,491"/>
<area shape="poly" id="edge23_Node000018_Node000017" title=" " alt="" coords="754,400,730,438,726,434,749,403"/> <area shape="poly" id="edge22_Node000020_Node000019" title=" " alt="" coords="626,399,615,436,611,432,622,403"/>
<area shape="poly" id="edge26_Node000020_Node000015" title=" " alt="" coords="1434,489,1237,605,1235,600,1428,491"/> <area shape="poly" id="edge25_Node000022_Node000016" title=" " alt="" coords="1066,490,753,608,752,603,1061,490"/>
<area shape="poly" id="edge25_Node000020_Node000022" title=" " alt="" coords="1535,487,1710,538,1705,537,1534,492"/> <area shape="poly" id="edge24_Node000022_Node000024" title=" " alt="" coords="1186,475,1835,544,1830,545,1186,480"/>
<area shape="poly" id="edge28_Node000025_Node000008" title=" " alt="" coords="1003,400,884,458,818,495,756,539,722,573,696,608,693,603,718,569,753,535,815,491,881,453,997,402"/> <area shape="poly" id="edge27_Node000027_Node000008" title=" " alt="" coords="1281,399,1295,448,1306,533,1310,605,1306,601,1301,533,1289,449,1278,403"/>
<area shape="poly" id="edge30_Node000025_Node000010" title=" " alt="" coords="1036,400,1021,424,1009,449,1004,491,1010,534,1023,572,1037,606,1032,604,1018,574,1005,535,998,491,1004,448,1016,422,1032,403"/> <area shape="poly" id="edge31_Node000027_Node000011" title=" " alt="" coords="1278,399,1280,435,1278,479,1267,524,1257,546,1243,565,1214,590,1179,608,1143,620,1107,628,1106,622,1141,615,1177,603,1211,586,1239,561,1252,543,1262,522,1272,478,1275,435,1274,403"/>
<area shape="poly" id="edge33_Node000025_Node000011" title=" " alt="" coords="1047,399,1042,444,1044,467,1053,488,1067,504,1091,521,1156,555,1230,586,1299,613,1293,613,1228,591,1153,560,1088,526,1064,508,1048,491,1039,468,1037,444,1043,403"/> <area shape="poly" id="edge32_Node000027_Node000014" title=" " alt="" coords="1266,400,1239,446,1221,470,1199,491,1131,537,1058,574,988,601,930,620,929,615,987,596,1056,569,1129,533,1196,487,1217,467,1235,443,1262,403"/>
<area shape="poly" id="edge29_Node000025_Node000026" title=" " alt="" coords="1073,399,1113,438,1108,437,1071,404"/> <area shape="poly" id="edge28_Node000027_Node000028" title=" " alt="" coords="1312,399,1393,442,1387,441,1311,404"/>
<area shape="poly" id="edge31_Node000025_Node000028" title=" " alt="" coords="979,399,971,403,796,428,624,447,371,468,370,463,624,442,796,423,970,398,985,398"/> <area shape="poly" id="edge29_Node000027_Node000030" title=" " alt="" coords="1343,396,1584,458,1579,458,1343,402"/>
<area shape="poly" id="edge32_Node000025_Node000029" title=" " alt="" coords="979,399,971,403,781,425,632,432,484,437,293,451,213,462,211,457,293,446,483,431,632,427,781,420,970,398,985,398"/> <area shape="poly" id="edge30_Node000027_Node000031" title=" " alt="" coords="1201,393,1139,403,854,429,576,448,174,468,174,463,575,442,854,423,1138,398,1206,392"/>
<area shape="rect" id="Node000032" href="$error__gridfire_8h.html" title=" " alt="" coords="2065,449,2193,489"/> <area shape="rect" id="Node000033" href="$error__gridfire_8h.html" title=" " alt="" coords="2219,449,2346,489"/>
<area shape="poly" id="edge35_Node000031_Node000032" title=" " alt="" coords="1839,395,1851,398,2053,449,2047,449,1850,403,1838,400"/> <area shape="poly" id="edge34_Node000032_Node000033" title=" " alt="" coords="2225,399,2258,438,2253,436,2223,404"/>
<area shape="poly" id="edge37_Node000032_Node000022" title=" " alt="" coords="2068,483,1791,543,1790,538,2062,484"/> <area shape="poly" id="edge36_Node000033_Node000024" title=" " alt="" coords="2221,482,1917,543,1916,538,2216,483"/>
<area shape="rect" id="Node000033" title=" " alt="" coords="2090,537,2168,563"/> <area shape="rect" id="Node000034" title=" " alt="" coords="2244,537,2321,563"/>
<area shape="poly" id="edge36_Node000032_Node000033" title=" " alt="" coords="2131,488,2131,524,2127,520,2127,492"/> <area shape="poly" id="edge35_Node000033_Node000034" title=" " alt="" coords="2285,488,2285,524,2281,520,2281,492"/>
<area shape="poly" id="edge39_Node000034_Node000011" title=" " alt="" coords="1338,399,1348,604,1344,601,1335,403"/> <area shape="poly" id="edge38_Node000035_Node000011" title=" " alt="" coords="1039,399,1037,449,1037,605,1033,602,1032,449,1035,403"/>
<area shape="poly" id="edge40_Node000034_Node000040" title=" " alt="" coords="1326,400,1300,445,1297,441,1322,403"/> <area shape="poly" id="edge39_Node000035_Node000041" title=" " alt="" coords="1017,400,962,449,959,444,1013,402"/>
<area shape="poly" id="edge54_Node000043_Node000032" title=" " alt="" coords="2523,398,2509,403,2349,434,2208,458,2208,453,2348,429,2508,398,2518,398"/> <area shape="poly" id="edge55_Node000044_Node000033" title=" " alt="" coords="2652,398,2638,403,2362,457,2361,451,2637,398,2646,398"/>
<area shape="poly" id="edge56_Node000044_Node000003" title=" " alt="" coords="1217,119,853,138,611,157,364,185,362,180,611,152,853,133,1222,117"/> <area shape="poly" id="edge57_Node000045_Node000003" title=" " alt="" coords="1230,120,904,141,691,159,472,185,471,180,690,154,904,135,1235,118"/>
<area shape="poly" id="edge57_Node000044_Node000004" title=" " alt="" coords="1380,121,1449,134,1510,154,1533,167,1548,184,1550,203,1539,225,1521,239,1495,252,1427,270,1348,282,1272,289,1271,284,1347,277,1426,265,1494,247,1518,235,1535,222,1545,202,1543,186,1530,171,1508,159,1447,139,1380,127"/> <area shape="poly" id="edge58_Node000045_Node000004" title=" " alt="" coords="1394,120,1471,131,1542,151,1568,164,1585,181,1589,202,1575,225,1546,240,1492,253,1337,272,1156,284,1000,291,999,285,1156,279,1336,266,1491,248,1544,235,1571,221,1583,201,1580,184,1565,169,1540,156,1470,136,1394,125"/>
<area shape="poly" id="edge75_Node000044_Node000008" title=" " alt="" coords="1359,133,1398,150,1430,171,1441,183,1448,197,1447,211,1439,225,1412,244,1374,255,1328,262,1278,266,1177,268,1100,274,1023,294,945,315,903,321,866,323,801,322,771,323,741,329,709,341,673,362,643,388,625,416,619,449,624,489,643,552,667,606,662,604,638,554,618,490,614,448,620,414,639,385,670,358,706,336,739,324,770,318,801,317,866,318,902,316,944,309,1021,289,1099,269,1176,263,1277,260,1328,257,1373,250,1410,239,1435,222,1442,209,1442,198,1437,186,1427,175,1395,155,1359,138"/> <area shape="poly" id="edge78_Node000045_Node000008" title=" " alt="" coords="1394,120,1554,143,1629,159,1680,180,1712,203,1735,225,1749,253,1753,290,1753,471,1751,485,1743,498,1716,523,1676,545,1627,564,1514,596,1405,618,1404,613,1512,591,1625,559,1674,540,1713,518,1739,495,1746,483,1748,470,1748,290,1744,254,1731,228,1709,207,1677,185,1627,165,1553,148,1394,126"/>
<area shape="poly" id="edge80_Node000044_Node000012" title=" " alt="" coords="1216,117,955,122,611,132,443,141,296,152,184,167,146,175,121,185,89,206,68,227,56,254,52,290,52,470,54,492,60,512,83,545,117,572,159,592,205,606,252,616,337,628,331,629,251,622,204,611,157,597,114,576,79,549,55,514,49,493,46,470,46,290,50,253,63,224,86,201,118,180,144,170,183,162,296,147,443,135,611,127,955,117,1221,115"/> <area shape="poly" id="edge83_Node000045_Node000012" title=" " alt="" coords="1230,119,974,128,637,142,328,161,216,172,151,185,97,202,51,219,33,230,20,245,11,264,8,290,8,470,10,491,15,509,36,541,67,566,105,586,147,602,189,612,268,626,262,627,188,618,145,607,103,591,64,571,32,544,11,511,5,492,3,470,3,290,6,263,15,242,30,226,48,214,95,197,150,180,216,167,327,155,637,136,974,123,1235,117"/>
<area shape="poly" id="edge58_Node000044_Node000016" title=" " alt="" coords="1347,133,1381,151,1409,173,1419,185,1425,198,1424,212,1416,225,1388,245,1348,257,1299,265,1245,268,1138,270,1056,274,791,315,527,363,507,366,505,361,526,357,790,310,1055,269,1138,265,1245,263,1298,259,1346,252,1386,240,1412,222,1419,210,1419,199,1415,188,1406,177,1378,155,1347,138"/> <area shape="poly" id="edge86_Node000045_Node000014" title=" " alt="" coords="1230,119,985,129,671,142,396,161,306,173,279,179,266,185,241,219,229,252,229,285,239,317,258,349,283,379,315,408,350,435,427,483,501,522,589,561,635,575,701,591,836,621,830,621,700,596,634,581,587,565,498,526,424,488,347,440,311,412,280,383,253,352,234,320,224,286,224,251,236,216,262,181,277,174,305,167,395,156,671,137,985,123,1235,117"/>
<area shape="poly" id="edge79_Node000044_Node000022" title=" " alt="" coords="1380,114,1488,118,1609,129,1719,149,1761,163,1792,181,1820,210,1836,243,1837,277,1820,313,1807,328,1791,335,1759,339,1727,342,1713,348,1700,362,1691,381,1688,402,1689,425,1694,447,1712,489,1733,526,1729,524,1708,492,1689,448,1684,425,1682,402,1686,380,1696,358,1710,344,1725,337,1758,333,1790,330,1804,324,1816,311,1831,276,1831,244,1816,214,1789,185,1759,168,1717,154,1608,134,1488,124,1381,119"/> <area shape="poly" id="edge59_Node000045_Node000017" title=" " alt="" coords="1230,119,989,129,682,143,413,162,325,173,298,179,286,185,273,206,272,229,281,253,297,277,342,322,389,358,384,359,338,326,292,280,276,255,267,230,268,204,282,181,297,174,324,168,412,156,681,137,989,124,1235,117"/>
<area shape="poly" id="edge81_Node000044_Node000028" title=" " alt="" coords="1216,118,955,128,617,141,319,160,221,172,191,178,177,185,166,200,159,217,156,234,156,251,167,288,188,325,216,361,247,394,305,446,300,447,243,397,212,364,184,328,162,290,151,252,150,233,153,215,161,197,174,181,190,173,220,167,318,155,616,135,955,122,1222,117"/> <area shape="poly" id="edge82_Node000045_Node000024" title=" " alt="" coords="1393,115,1556,121,1747,133,1913,152,1970,165,1990,172,2002,181,2022,207,2033,231,2036,253,2031,272,2021,289,2005,304,1964,327,1918,344,1874,354,1828,362,1812,393,1809,422,1816,452,1829,488,1839,508,1853,527,1848,525,1835,510,1824,490,1811,454,1804,422,1807,391,1825,358,1872,349,1916,339,1962,323,2002,300,2016,286,2026,270,2030,253,2028,233,2018,210,1998,185,1987,177,1969,170,1912,157,1746,138,1555,126,1394,120"/>
<area shape="poly" id="edge77_Node000044_Node000029" title=" " alt="" coords="1216,118,949,127,602,140,296,160,195,172,165,178,151,185,131,213,120,246,115,282,117,318,131,388,150,442,144,442,126,389,111,319,110,281,114,245,126,211,147,181,163,173,194,166,295,154,602,135,949,122,1221,116"/> <area shape="poly" id="edge84_Node000045_Node000030" title=" " alt="" coords="1394,120,1465,128,1540,141,1605,158,1630,169,1648,181,1671,209,1683,243,1686,279,1682,317,1662,389,1636,445,1633,441,1657,387,1677,316,1680,279,1677,244,1666,212,1645,185,1628,173,1603,163,1539,146,1464,134,1394,125"/>
<area shape="poly" id="edge78_Node000044_Node000042" title=" " alt="" coords="1336,132,1365,152,1390,174,1402,199,1401,213,1393,225,1365,235,1306,244,1128,263,779,291,778,285,1127,258,1306,239,1364,230,1390,221,1396,211,1397,200,1385,178,1362,156,1335,138"/> <area shape="poly" id="edge80_Node000045_Node000031" title=" " alt="" coords="1230,119,970,129,632,143,334,162,236,173,206,179,191,185,166,211,147,243,134,278,125,315,118,385,120,441,114,440,113,385,120,314,128,277,142,241,162,208,188,180,204,174,235,168,334,157,632,138,969,124,1235,117"/>
<area shape="rect" id="Node000045" href="$exceptions_8h.html" title=" " alt="" coords="2065,271,2193,312"/> <area shape="poly" id="edge81_Node000045_Node000043" title=" " alt="" coords="1394,121,1458,130,1524,143,1581,159,1603,169,1619,181,1633,199,1641,221,1645,265,1641,262,1635,222,1628,202,1615,185,1601,174,1580,164,1523,148,1458,135,1394,126"/>
<area shape="poly" id="edge59_Node000044_Node000045" title=" " alt="" coords="1380,116,1478,122,1600,134,1732,153,1863,180,1922,198,1979,219,2079,264,2073,264,1977,224,1920,203,1862,185,1731,158,1599,139,1478,127,1380,121"/> <area shape="rect" id="Node000046" href="$exceptions_8h.html" title=" " alt="" coords="2219,271,2346,312"/>
<area shape="rect" id="Node000052" href="$config_8h.html" title=" " alt="" coords="1606,190,1756,216"/> <area shape="poly" id="edge60_Node000045_Node000046" title=" " alt="" coords="1393,112,1521,114,1684,123,1865,144,1956,160,2045,180,2098,197,2150,218,2238,264,2233,263,2147,223,2096,202,2043,185,1955,165,1864,149,1683,128,1520,119,1394,117"/>
<area shape="poly" id="edge73_Node000044_Node000052" title=" " alt="" coords="1380,131,1615,186,1610,187,1380,136"/> <area shape="rect" id="Node000052" href="$config_8h.html" title=" " alt="" coords="1839,190,1988,216"/>
<area shape="rect" id="Node000053" title=" " alt="" coords="1656,279,1807,304"/> <area shape="poly" id="edge76_Node000045_Node000052" title=" " alt="" coords="1394,122,1589,146,1820,180,1845,187,1840,187,1820,185,1588,151,1394,127"/>
<area shape="poly" id="edge76_Node000044_Node000053" title=" " alt="" coords="1380,112,1485,115,1601,125,1656,134,1704,146,1743,161,1770,181,1779,202,1776,225,1767,248,1753,268,1750,264,1762,245,1771,224,1774,203,1765,184,1740,166,1702,151,1655,139,1600,131,1484,121,1380,118"/> <area shape="rect" id="Node000053" title=" " alt="" coords="1813,279,1963,304"/>
<area shape="rect" id="Node000054" title=" " alt="" coords="372,190,478,216"/> <area shape="poly" id="edge79_Node000045_Node000053" title=" " alt="" coords="1394,119,1600,142,1700,159,1740,169,1771,180,1817,216,1869,268,1863,267,1814,220,1768,185,1738,174,1699,164,1599,147,1394,124"/>
<area shape="poly" id="edge82_Node000044_Node000054" title=" " alt="" coords="1216,118,1081,125,899,136,695,155,491,185,478,188,475,183,490,180,694,150,898,130,1080,119,1222,116"/> <area shape="rect" id="Node000054" title=" " alt="" coords="481,190,530,216"/>
<area shape="rect" id="Node000055" title=" " alt="" coords="502,190,673,216"/> <area shape="poly" id="edge85_Node000045_Node000054" title=" " alt="" coords="1230,119,1071,129,871,142,680,160,601,172,542,185,540,186,537,181,541,180,600,167,679,155,871,136,1071,124,1235,118"/>
<area shape="poly" id="edge83_Node000044_Node000055" title=" " alt="" coords="1216,123,980,148,687,185,662,189,660,184,686,180,980,143,1221,121"/> <area shape="rect" id="Node000055" title=" " alt="" coords="554,190,660,216"/>
<area shape="rect" id="Node000056" title=" " alt="" coords="698,190,880,216"/> <area shape="poly" id="edge87_Node000045_Node000055" title=" " alt="" coords="1230,120,982,142,827,160,673,185,660,188,658,183,671,180,826,155,981,136,1235,119"/>
<area shape="poly" id="edge84_Node000044_Node000056" title=" " alt="" coords="1216,130,893,185,870,189,868,184,892,180,1221,127"/> <area shape="rect" id="Node000056" title=" " alt="" coords="684,190,855,216"/>
<area shape="rect" id="Node000057" title=" " alt="" coords="905,183,1044,223"/> <area shape="poly" id="edge88_Node000045_Node000056" title=" " alt="" coords="1230,128,868,185,846,189,844,184,868,180,1235,126"/>
<area shape="poly" id="edge85_Node000044_Node000057" title=" " alt="" coords="1223,136,1060,182,1058,177,1228,134"/> <area shape="rect" id="Node000057" title=" " alt="" coords="880,190,1062,216"/>
<area shape="rect" id="Node000058" title=" " alt="" coords="1068,183,1195,223"/> <area shape="poly" id="edge89_Node000045_Node000057" title=" " alt="" coords="1233,136,1034,188,1033,183,1238,134"/>
<area shape="poly" id="edge86_Node000044_Node000058" title=" " alt="" coords="1264,134,1184,178,1182,173,1259,136"/> <area shape="rect" id="Node000058" title=" " alt="" coords="1086,183,1226,223"/>
<area shape="rect" id="Node000059" title=" " alt="" coords="1219,190,1380,216"/> <area shape="poly" id="edge90_Node000045_Node000058" title=" " alt="" coords="1280,134,1206,177,1204,173,1275,136"/>
<area shape="poly" id="edge87_Node000044_Node000059" title=" " alt="" coords="1301,133,1302,176,1297,173,1298,137"/> <area shape="rect" id="Node000059" title=" " alt="" coords="1250,183,1377,223"/>
<area shape="poly" id="edge61_Node000045_Node000031" title=" " alt="" coords="2067,308,1854,362,1852,357,2062,309"/> <area shape="poly" id="edge91_Node000045_Node000059" title=" " alt="" coords="1315,133,1316,169,1311,166,1312,137"/>
<area shape="poly" id="edge60_Node000045_Node000032" title=" " alt="" coords="2140,310,2157,359,2159,380,2157,401,2146,436,2142,432,2152,400,2154,380,2152,361,2137,315"/> <area shape="rect" id="Node000060" title=" " alt="" coords="1401,190,1562,216"/>
<area shape="poly" id="edge72_Node000045_Node000043" title=" " alt="" coords="2193,300,2333,324,2509,360,2503,359,2332,329,2193,306"/> <area shape="poly" id="edge92_Node000045_Node000060" title=" " alt="" coords="1352,133,1447,183,1442,183,1351,138"/>
<area shape="rect" id="Node000046" href="$error__utils_8h.html" title=" " alt="" coords="2217,360,2345,401"/> <area shape="poly" id="edge62_Node000046_Node000032" title=" " alt="" coords="2268,311,2235,351,2233,346,2263,314"/>
<area shape="poly" id="edge62_Node000045_Node000046" title=" " alt="" coords="2164,310,2236,353,2231,352,2163,315"/> <area shape="poly" id="edge61_Node000046_Node000033" title=" " alt="" coords="2347,302,2397,322,2419,338,2437,359,2445,380,2437,402,2422,420,2404,434,2362,454,2360,449,2401,430,2418,416,2432,399,2439,380,2432,361,2415,342,2394,327,2346,307"/>
<area shape="rect" id="Node000047" href="$error__debug_8h.html" title=" " alt="" coords="1863,360,1990,401"/> <area shape="poly" id="edge75_Node000046_Node000044" title=" " alt="" coords="2347,301,2637,359,2632,359,2347,307"/>
<area shape="poly" id="edge64_Node000045_Node000047" title=" " alt="" coords="2085,312,1987,356,1985,351,2080,313"/> <area shape="rect" id="Node000047" href="$error__utils_8h.html" title=" " alt="" coords="2498,360,2625,401"/>
<area shape="rect" id="Node000050" href="$error__policy_8h.html" title="Defines custom exception types related to network policy construction and verification." alt="" coords="2369,360,2497,401"/> <area shape="poly" id="edge63_Node000046_Node000047" title=" " alt="" coords="2347,310,2486,355,2481,355,2346,315"/>
<area shape="poly" id="edge67_Node000045_Node000050" title=" " alt="" coords="2193,308,2357,357,2352,357,2193,314"/> <area shape="rect" id="Node000048" href="$error__debug_8h.html" title=" " alt="" coords="1839,360,1966,401"/>
<area shape="rect" id="Node000051" href="$error__reaction_8h.html" title=" " alt="" coords="2015,360,2142,401"/> <area shape="poly" id="edge65_Node000046_Node000048" title=" " alt="" coords="2221,306,1982,362,1981,357,2216,307"/>
<area shape="poly" id="edge69_Node000045_Node000051" title=" " alt="" coords="2120,311,2099,349,2096,344,2115,314"/> <area shape="rect" id="Node000050" href="$error__policy_8h.html" title="Defines custom exception types related to network policy construction and verification." alt="" coords="2295,360,2422,401"/>
<area shape="poly" id="edge63_Node000046_Node000032" title=" " alt="" coords="2249,400,2177,443,2175,438,2244,402"/> <area shape="poly" id="edge69_Node000046_Node000050" title=" " alt="" coords="2301,310,2334,349,2329,347,2299,315"/>
<area shape="poly" id="edge65_Node000047_Node000022" title=" " alt="" coords="1908,400,1774,529,1771,524,1903,402"/> <area shape="rect" id="Node000051" href="$error__reaction_8h.html" title=" " alt="" coords="1991,360,2118,401"/>
<area shape="poly" id="edge66_Node000047_Node000032" title=" " alt="" coords="1973,399,2072,443,2066,442,1972,404"/> <area shape="poly" id="edge71_Node000046_Node000051" title=" " alt="" coords="2234,312,2121,357,2120,352,2228,313"/>
<area shape="poly" id="edge68_Node000050_Node000032" title=" " alt="" coords="2371,399,2208,448,2207,443,2366,400"/> <area shape="poly" id="edge64_Node000047_Node000033" title=" " alt="" coords="2500,401,2361,446,2360,441,2495,402"/>
<area shape="poly" id="edge70_Node000051_Node000022" title=" " alt="" coords="2042,401,1787,532,1785,527,2037,402"/> <area shape="poly" id="edge67_Node000048_Node000018" title=" " alt="" coords="1897,400,1880,444,1877,440,1893,403"/>
<area shape="poly" id="edge71_Node000051_Node000032" title=" " alt="" coords="2091,399,2112,436,2107,434,2089,404"/> <area shape="poly" id="edge66_Node000048_Node000024" title=" " alt="" coords="1909,399,1916,442,1916,466,1912,490,1894,527,1891,522,1907,489,1910,466,1911,442,1906,403"/>
<area shape="poly" id="edge74_Node000052_Node000053" title=" " alt="" coords="1689,214,1720,267,1715,265,1687,219"/> <area shape="poly" id="edge68_Node000048_Node000033" title=" " alt="" coords="1967,395,1979,398,2207,451,2201,451,1978,403,1967,401"/>
<area shape="poly" id="edge90_Node000061_Node000009" title=" " alt="" coords="2688,126,2689,290,2689,471,2685,490,2674,507,2656,523,2633,538,2574,563,2501,583,2420,599,2338,611,2188,627,2188,621,2337,606,2419,594,2500,578,2572,558,2631,533,2653,519,2670,504,2680,488,2684,470,2684,290,2684,129"/> <area shape="poly" id="edge70_Node000050_Node000033" title=" " alt="" coords="2344,400,2311,439,2309,435,2339,402"/>
<area shape="rect" id="Node000062" title=" " alt="" coords="2723,190,2847,216"/> <area shape="poly" id="edge73_Node000051_Node000018" title=" " alt="" coords="2015,400,1908,452,1907,447,2010,402"/>
<area shape="poly" id="edge91_Node000061_Node000062" title=" " alt="" coords="2701,125,2762,181,2757,179,2699,130"/> <area shape="poly" id="edge72_Node000051_Node000024" title=" " alt="" coords="2036,400,1900,529,1897,524,2031,402"/>
<area shape="poly" id="edge74_Node000051_Node000033" title=" " alt="" coords="2107,399,2219,443,2214,442,2106,404"/>
<area shape="poly" id="edge77_Node000052_Node000053" title=" " alt="" coords="1912,215,1898,266,1894,262,1908,218"/>
<area shape="poly" id="edge95_Node000062_Node000009" title=" " alt="" coords="2816,126,2817,290,2817,471,2813,491,2801,510,2782,527,2757,542,2692,567,2613,588,2525,603,2436,615,2277,628,2277,623,2435,610,2525,598,2612,582,2690,562,2754,537,2779,522,2797,506,2808,489,2812,470,2812,290,2813,129"/>
<area shape="rect" id="Node000063" title=" " alt="" coords="2852,190,2975,216"/>
<area shape="poly" id="edge96_Node000062_Node000063" title=" " alt="" coords="2829,125,2891,181,2886,179,2828,130"/>
</map> </map>

View File

@@ -1 +1 @@
f41e2b6f5137913b48cfbee132c3aad3 0a0c5c695b3c3b345fda4b430d2b8ed2

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 68 KiB

After

Width:  |  Height:  |  Size: 70 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 64 KiB

After

Width:  |  Height:  |  Size: 66 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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -1,112 +1,118 @@
<map id="src/include/gridfire/solver/strategies/GridSolver.h" name="src/include/gridfire/solver/strategies/GridSolver.h"> <map id="src/include/gridfire/solver/strategies/GridSolver.h" name="src/include/gridfire/solver/strategies/GridSolver.h">
<area shape="rect" id="Node000001" title=" " alt="" coords="2346,5,2543,46"/> <area shape="rect" id="Node000001" title=" " alt="" coords="1644,5,1841,46"/>
<area shape="rect" id="Node000002" href="$strategy__abstract_8h.html" title=" " alt="" coords="2280,94,2441,135"/> <area shape="rect" id="Node000002" href="$strategy__abstract_8h.html" title=" " alt="" coords="1141,94,1302,135"/>
<area shape="poly" id="edge1_Node000001_Node000002" title=" " alt="" coords="2428,45,2391,85,2389,80,2423,48"/> <area shape="poly" id="edge1_Node000001_Node000002" title=" " alt="" coords="1641,44,1318,100,1317,95,1647,43"/>
<area shape="rect" id="Node000028" title=" " alt="" coords="2454,368,2531,393"/> <area shape="rect" id="Node000030" title=" " alt="" coords="2332,368,2409,393"/>
<area shape="poly" id="edge69_Node000001_Node000028" title=" " alt="" coords="2467,44,2518,102,2543,140,2562,182,2567,206,2567,231,2555,279,2535,322,2513,357,2510,352,2530,320,2550,277,2561,230,2561,207,2557,183,2538,143,2514,105,2465,49"/> <area shape="poly" id="edge74_Node000001_Node000030" title=" " alt="" coords="1841,38,1975,60,2125,92,2196,111,2260,132,2313,156,2350,181,2365,199,2376,221,2386,267,2385,314,2379,354,2375,350,2380,314,2380,268,2371,222,2361,202,2346,185,2310,160,2258,137,2195,116,2124,97,1974,66,1842,43"/>
<area shape="rect" id="Node000003" href="$engine__abstract_8h.html" title="Abstract interfaces for reaction network engines in GridFire." alt="" coords="1423,183,1567,223"/> <area shape="rect" id="Node000003" href="$engine__abstract_8h.html" title="Abstract interfaces for reaction network engines in GridFire." alt="" coords="1033,183,1178,223"/>
<area shape="poly" id="edge2_Node000002_Node000003" title=" " alt="" coords="2277,124,1583,196,1583,190,2282,123"/> <area shape="poly" id="edge2_Node000002_Node000003" title=" " alt="" coords="1197,134,1145,175,1143,171,1193,136"/>
<area shape="rect" id="Node000011" title=" " alt="" coords="2277,545,2334,570"/> <area shape="rect" id="Node000011" title=" " alt="" coords="54,545,111,570"/>
<area shape="poly" id="edge66_Node000002_Node000011" title=" " alt="" coords="2372,133,2402,201,2414,245,2419,290,2419,382,2417,406,2410,429,2388,472,2360,508,2332,537,2330,532,2356,505,2384,469,2405,427,2412,405,2414,382,2414,290,2409,246,2397,203,2370,137"/> <area shape="poly" id="edge71_Node000002_Node000011" title=" " alt="" coords="1138,118,933,125,665,136,404,155,296,169,215,185,140,199,73,210,46,220,26,235,13,258,8,291,8,381,14,425,29,466,48,502,67,532,62,533,43,505,24,468,9,426,3,382,3,290,8,256,22,232,44,215,72,205,139,194,214,180,295,164,403,150,665,130,933,119,1143,116"/>
<area shape="rect" id="Node000015" href="$types_2types_8h.html" title=" " alt="" coords="626,279,770,304"/> <area shape="rect" id="Node000016" href="$types_2types_8h.html" title=" " alt="" coords="1080,368,1224,393"/>
<area shape="poly" id="edge63_Node000002_Node000015" title=" " alt="" coords="2278,120,1905,143,1660,161,1411,185,1235,207,1060,233,781,278,780,273,1059,227,1234,202,1411,180,1659,156,1905,138,2283,119"/> <area shape="poly" id="edge68_Node000002_Node000016" title=" " alt="" coords="1234,132,1253,169,1269,215,1275,265,1272,290,1262,313,1251,329,1236,343,1204,363,1202,358,1233,339,1247,326,1258,311,1266,288,1270,265,1264,216,1248,171,1232,137"/>
<area shape="rect" id="Node000021" title=" " alt="" coords="260,545,314,570"/> <area shape="rect" id="Node000023" title=" " alt="" coords="2081,545,2135,570"/>
<area shape="poly" id="edge68_Node000002_Node000021" title=" " alt="" coords="2277,119,1807,139,1140,173,817,197,545,225,439,240,358,257,307,274,294,283,290,291,290,382,290,530,285,529,284,382,285,290,290,279,304,269,356,252,438,235,544,220,817,192,1140,168,1807,133,2282,118"/> <area shape="poly" id="edge73_Node000002_Node000023" title=" " alt="" coords="1302,114,1521,122,1659,131,1803,145,1942,165,2069,191,2124,207,2172,226,2212,246,2243,269,2268,295,2287,321,2302,348,2310,375,2313,403,2309,431,2298,461,2281,491,2268,507,2253,517,2224,526,2191,530,2153,540,2149,541,2148,536,2151,535,2190,525,2223,521,2251,512,2264,503,2276,488,2294,458,2304,430,2308,403,2305,376,2297,350,2283,324,2264,299,2240,273,2209,251,2170,231,2122,212,2067,196,1941,170,1802,150,1659,136,1521,127,1302,119"/>
<area shape="rect" id="Node000027" title=" " alt="" coords="2278,368,2328,393"/> <area shape="rect" id="Node000029" title=" " alt="" coords="43,368,93,393"/>
<area shape="poly" id="edge67_Node000002_Node000027" title=" " alt="" coords="2358,133,2311,354,2307,351,2354,137"/> <area shape="poly" id="edge72_Node000002_Node000029" title=" " alt="" coords="1138,118,907,128,758,138,602,152,449,171,309,198,248,214,194,231,149,251,114,273,98,290,86,311,74,353,69,351,82,309,94,287,110,269,146,247,192,226,246,208,308,192,448,166,601,146,758,132,907,123,1143,116"/>
<area shape="poly" id="edge64_Node000002_Node000028" title=" " alt="" coords="2390,133,2416,155,2437,181,2460,225,2476,272,2492,353,2487,350,2470,273,2455,227,2433,184,2412,158,2389,138"/> <area shape="poly" id="edge69_Node000002_Node000030" title=" " alt="" coords="1302,113,1550,114,1868,123,2022,131,2156,143,2258,159,2293,169,2315,181,2333,198,2347,219,2365,266,2373,313,2374,354,2370,351,2367,314,2359,267,2342,222,2329,202,2312,185,2291,174,2257,164,2156,148,2022,136,1868,128,1550,120,1302,118"/>
<area shape="rect" id="Node000041" title=" " alt="" coords="2505,190,2547,216"/> <area shape="rect" id="Node000042" title=" " alt="" coords="967,190,1009,216"/>
<area shape="poly" id="edge65_Node000002_Node000041" title=" " alt="" coords="2398,133,2493,184,2488,183,2398,138"/> <area shape="poly" id="edge70_Node000002_Node000042" title=" " alt="" coords="1150,136,1093,158,1022,186,1020,181,1091,153,1155,134"/>
<area shape="rect" id="Node000004" href="$reaction_8h.html" title="Defines classes for representing and managing nuclear reactions." alt="" coords="1266,456,1437,482"/> <area shape="rect" id="Node000004" href="$reaction_8h.html" title="Defines classes for representing and managing nuclear reactions." alt="" coords="540,456,711,482"/>
<area shape="poly" id="edge3_Node000003_Node000004" title=" " alt="" coords="1487,222,1367,445,1363,441,1482,225"/> <area shape="poly" id="edge3_Node000003_Node000004" title=" " alt="" coords="1030,222,1022,226,931,231,814,232,755,235,701,242,657,254,627,273,614,291,606,312,601,358,607,403,618,443,613,440,602,404,596,358,601,311,609,289,624,269,655,249,700,236,754,229,813,226,931,226,1021,221,1035,221"/>
<area shape="rect" id="Node000010" title=" " alt="" coords="2083,545,2193,570"/> <area shape="rect" id="Node000010" title=" " alt="" coords="992,545,1102,570"/>
<area shape="poly" id="edge60_Node000003_Node000010" title=" " alt="" coords="1568,204,1724,210,1911,223,2074,242,2131,254,2162,269,2184,295,2197,321,2203,346,2204,371,2194,426,2176,490,2156,534,2153,529,2171,488,2189,425,2199,371,2198,346,2192,322,2179,298,2159,273,2129,259,2073,247,1910,228,1724,216,1568,209"/> <area shape="poly" id="edge63_Node000003_Node000010" title=" " alt="" coords="1067,223,1039,246,1018,272,1016,312,1023,384,1044,531,1040,528,1018,384,1011,312,1014,270,1035,242,1062,225"/>
<area shape="poly" id="edge59_Node000003_Node000011" title=" " alt="" coords="1568,205,1715,212,1896,225,2070,244,2141,255,2195,269,2243,283,2281,297,2314,320,2343,359,2352,381,2356,405,2352,452,2339,497,2322,534,2319,529,2334,495,2347,451,2351,405,2347,382,2338,361,2310,323,2279,302,2241,288,2193,274,2140,261,2069,249,1895,230,1714,217,1568,210"/> <area shape="poly" id="edge62_Node000003_Node000011" title=" " alt="" coords="1030,222,1022,226,955,232,873,235,681,239,490,248,409,258,346,274,300,296,258,325,220,360,186,398,132,473,97,533,93,529,127,470,182,395,216,357,255,321,298,291,344,269,408,253,489,242,680,233,873,230,955,227,1021,221,1035,221"/>
<area shape="poly" id="edge14_Node000003_Node000015" title=" " alt="" coords="1420,211,1161,238,829,274,786,280,784,275,828,269,1160,232,1425,210"/> <area shape="rect" id="Node000013" title=" " alt="" coords="135,545,201,570"/>
<area shape="rect" id="Node000016" href="$screening__abstract_8h.html" title=" " alt="" coords="1478,360,1624,401"/> <area shape="poly" id="edge66_Node000003_Node000013" title=" " alt="" coords="1030,222,1022,226,905,239,802,241,623,237,541,244,458,263,415,279,370,300,324,328,275,362,251,382,234,401,205,450,188,491,176,531,172,528,183,489,200,447,230,398,247,379,272,358,321,323,368,295,413,274,456,257,540,238,623,232,801,235,904,233,1021,221,1035,221"/>
<area shape="poly" id="edge17_Node000003_Node000016" title=" " alt="" coords="1503,221,1543,346,1538,344,1500,226"/> <area shape="poly" id="edge15_Node000003_Node000016" title=" " alt="" coords="1074,223,1049,246,1030,273,1024,292,1030,311,1042,326,1058,340,1094,362,1089,361,1055,344,1039,330,1026,313,1019,292,1026,270,1045,243,1069,225"/>
<area shape="rect" id="Node000017" href="$screening__types_8h.html" title=" " alt="" coords="1291,271,1422,312"/> <area shape="rect" id="Node000017" title=" " alt="" coords="1232,456,1290,482"/>
<area shape="poly" id="edge22_Node000003_Node000017" title=" " alt="" coords="1466,223,1402,265,1400,260,1461,225"/> <area shape="poly" id="edge67_Node000003_Node000017" title=" " alt="" coords="1178,215,1225,235,1246,251,1262,270,1273,291,1280,314,1284,361,1280,406,1271,443,1268,440,1275,405,1279,361,1275,315,1268,293,1258,273,1242,254,1222,240,1178,220"/>
<area shape="rect" id="Node000019" href="$reporting_8h.html" title=" " alt="" coords="111,449,250,489"/> <area shape="rect" id="Node000018" href="$screening__abstract_8h.html" title=" " alt="" coords="371,360,517,401"/>
<area shape="poly" id="edge25_Node000003_Node000019" title=" " alt="" coords="1420,208,1007,231,779,250,686,261,614,274,558,289,501,309,392,354,297,402,226,443,223,438,295,398,390,350,499,304,556,284,613,269,685,256,779,245,1007,226,1425,206"/> <area shape="poly" id="edge19_Node000003_Node000018" title=" " alt="" coords="1030,222,1022,226,914,234,775,238,638,248,581,258,537,274,515,289,495,308,464,348,460,345,491,304,511,285,535,269,579,253,637,242,774,232,914,228,1021,221,1035,221"/>
<area shape="rect" id="Node000024" href="$jacobian_8h.html" title="Wrapper for handling the network Jacobian matrix in GridFire. Currently uses Eigen&#39;s SparseMatrix." alt="" coords="1933,271,2071,312"/> <area shape="rect" id="Node000019" href="$screening__types_8h.html" title=" " alt="" coords="1040,271,1171,312"/>
<area shape="poly" id="edge31_Node000003_Node000024" title=" " alt="" coords="1568,214,1920,276,1915,276,1568,219"/> <area shape="poly" id="edge24_Node000003_Node000019" title=" " alt="" coords="1107,222,1108,257,1103,254,1104,226"/>
<area shape="rect" id="Node000025" title=" " alt="" coords="1648,360,1809,401"/> <area shape="rect" id="Node000021" href="$reporting_8h.html" title=" " alt="" coords="1824,449,1962,489"/>
<area shape="poly" id="edge58_Node000003_Node000025" title=" " alt="" coords="1522,221,1693,351,1688,350,1520,226"/> <area shape="poly" id="edge27_Node000003_Node000021" title=" " alt="" coords="1178,202,1374,210,1496,219,1622,233,1744,252,1853,279,1899,295,1939,314,1972,335,1996,359,2003,380,1996,402,1978,425,1955,443,1953,438,1974,421,1991,399,1998,380,1991,361,1968,339,1937,319,1897,300,1851,284,1743,258,1621,238,1495,224,1373,215,1178,208"/>
<area shape="rect" id="Node000030" href="$error__engine_8h.html" title=" " alt="" coords="841,271,968,312"/> <area shape="rect" id="Node000026" href="$jacobian_8h.html" title="Wrapper for handling the network Jacobian matrix in GridFire. Currently uses Eigen&#39;s SparseMatrix." alt="" coords="638,271,776,312"/>
<area shape="poly" id="edge40_Node000003_Node000030" title=" " alt="" coords="1420,214,1233,240,1004,274,984,277,983,272,1003,269,1232,235,1425,212"/> <area shape="poly" id="edge33_Node000003_Node000026" title=" " alt="" coords="1030,221,1022,226,792,275,790,270,1021,221,1036,220"/>
<area shape="rect" id="Node000033" href="$blob_8h.html" title="Container class for managing multiple scratchpad instances." alt="" coords="1014,271,1192,312"/> <area shape="rect" id="Node000027" title=" " alt="" coords="845,360,1006,401"/>
<area shape="poly" id="edge44_Node000003_Node000033" title=" " alt="" coords="1420,221,1208,270,1206,265,1425,220"/> <area shape="poly" id="edge61_Node000003_Node000027" title=" " alt="" coords="1036,223,974,248,950,261,935,273,927,289,922,307,921,346,917,343,917,307,922,287,931,270,947,256,972,244,1031,225"/>
<area shape="rect" id="Node000039" title=" " alt="" coords="1227,368,1302,393"/> <area shape="rect" id="Node000031" href="$error__engine_8h.html" title=" " alt="" coords="2102,271,2229,312"/>
<area shape="poly" id="edge62_Node000003_Node000039" title=" " alt="" coords="1420,208,1386,217,1347,229,1311,247,1281,273,1271,291,1265,311,1263,354,1259,350,1260,311,1266,289,1277,270,1308,243,1345,224,1384,212,1425,207"/> <area shape="poly" id="edge42_Node000003_Node000031" title=" " alt="" coords="1178,205,1547,227,1791,245,2038,269,2090,278,2084,278,2037,274,1790,250,1547,232,1178,210"/>
<area shape="rect" id="Node000040" title=" " alt="" coords="2096,279,2148,304"/> <area shape="rect" id="Node000034" href="$blob_8h.html" title="Container class for managing multiple scratchpad instances." alt="" coords="1487,271,1665,312"/>
<area shape="poly" id="edge61_Node000003_Node000040" title=" " alt="" coords="1568,202,1671,206,1800,216,1943,236,2015,251,2084,269,2090,273,2084,272,2082,274,2013,256,1942,242,1800,222,1670,211,1568,207"/> <area shape="poly" id="edge46_Node000003_Node000034" title=" " alt="" coords="1178,215,1474,271,1469,272,1178,220"/>
<area shape="rect" id="Node000005" title=" " alt="" coords="1457,545,1517,570"/> <area shape="rect" id="Node000040" title=" " alt="" coords="1350,368,1424,393"/>
<area shape="poly" id="edge4_Node000004_Node000005" title=" " alt="" coords="1371,480,1458,537,1453,536,1369,485"/> <area shape="poly" id="edge65_Node000003_Node000040" title=" " alt="" coords="1178,215,1243,236,1275,251,1306,269,1328,288,1347,310,1376,355,1371,353,1343,313,1324,292,1302,273,1273,256,1241,241,1178,221"/>
<area shape="rect" id="Node000006" title=" " alt="" coords="1158,545,1246,570"/> <area shape="rect" id="Node000041" title=" " alt="" coords="1195,279,1248,304"/>
<area shape="poly" id="edge5_Node000004_Node000006" title=" " alt="" coords="1333,482,1237,539,1235,534,1328,483"/> <area shape="poly" id="edge64_Node000003_Node000041" title=" " alt="" coords="1132,221,1196,270,1191,269,1131,226"/>
<area shape="rect" id="Node000007" title=" " alt="" coords="1542,545,1747,570"/> <area shape="rect" id="Node000005" title=" " alt="" coords="599,545,660,570"/>
<area shape="poly" id="edge6_Node000004_Node000007" title=" " alt="" coords="1393,480,1591,540,1586,540,1392,485"/> <area shape="poly" id="edge4_Node000004_Node000005" title=" " alt="" coords="628,480,630,531,626,528,624,484"/>
<area shape="rect" id="Node000008" title=" " alt="" coords="1270,545,1432,570"/> <area shape="rect" id="Node000006" title=" " alt="" coords="1254,545,1341,570"/>
<area shape="poly" id="edge7_Node000004_Node000008" title=" " alt="" coords="1353,480,1353,531,1349,527,1349,484"/> <area shape="poly" id="edge5_Node000004_Node000006" title=" " alt="" coords="712,471,952,490,1097,508,1242,535,1254,540,1249,540,1241,540,1096,514,951,495,711,476"/>
<area shape="rect" id="Node000009" title=" " alt="" coords="1857,545,1954,570"/> <area shape="rect" id="Node000007" title=" " alt="" coords="225,545,431,570"/>
<area shape="poly" id="edge8_Node000004_Node000009" title=" " alt="" coords="1416,480,1456,487,1845,548,1839,548,1455,492,1415,485"/> <area shape="poly" id="edge6_Node000004_Node000007" title=" " alt="" coords="586,482,385,543,384,538,581,483"/>
<area shape="poly" id="edge9_Node000004_Node000010" title=" " alt="" coords="1413,480,1456,487,1599,504,1711,514,1967,535,2070,548,2064,548,1967,540,1711,519,1598,509,1455,492,1412,485"/> <area shape="rect" id="Node000008" title=" " alt="" coords="684,545,846,570"/>
<area shape="poly" id="edge10_Node000004_Node000011" title=" " alt="" coords="1438,471,1774,492,1989,510,2205,535,2265,547,2259,547,2204,540,1988,516,1774,497,1437,477"/> <area shape="poly" id="edge7_Node000004_Node000008" title=" " alt="" coords="646,480,735,537,730,536,644,485"/>
<area shape="rect" id="Node000012" title=" " alt="" coords="1030,545,1134,570"/> <area shape="rect" id="Node000009" title=" " alt="" coords="870,545,967,570"/>
<area shape="poly" id="edge11_Node000004_Node000012" title=" " alt="" coords="1316,482,1135,542,1133,537,1311,483"/> <area shape="poly" id="edge8_Node000004_Node000009" title=" " alt="" coords="669,480,859,535,869,540,864,539,858,540,668,485"/>
<area shape="rect" id="Node000013" title=" " alt="" coords="886,545,1006,570"/> <area shape="poly" id="edge9_Node000004_Node000010" title=" " alt="" coords="701,480,832,503,981,535,995,541,989,540,979,540,831,509,700,485"/>
<area shape="poly" id="edge12_Node000004_Node000013" title=" " alt="" coords="1288,482,1018,540,1005,543,1004,538,1017,535,1282,483"/> <area shape="poly" id="edge10_Node000004_Node000011" title=" " alt="" coords="537,474,452,483,347,495,234,513,123,540,120,541,118,536,122,535,233,508,346,489,451,478,542,473"/>
<area shape="rect" id="Node000014" title=" " alt="" coords="338,537,474,578"/> <area shape="rect" id="Node000012" title=" " alt="" coords="1126,545,1229,570"/>
<area shape="poly" id="edge13_Node000004_Node000014" title=" " alt="" coords="1268,478,1126,492,948,503,808,508,668,517,489,540,488,534,667,512,808,503,948,497,1126,487,1262,478"/> <area shape="poly" id="edge11_Node000004_Node000012" title=" " alt="" coords="712,475,897,498,1006,514,1114,535,1128,540,1123,540,1113,540,1005,519,897,503,711,481"/>
<area shape="poly" id="edge16_Node000015_Node000013" title=" " alt="" coords="703,303,719,339,743,387,776,440,817,487,856,516,898,539,893,538,853,520,813,491,772,443,739,390,714,341,701,308"/> <area shape="poly" id="edge12_Node000004_Node000013" title=" " alt="" coords="537,479,386,502,299,519,214,540,209,542,207,536,213,535,298,513,386,497,542,478"/>
<area shape="poly" id="edge15_Node000015_Node000014" title=" " alt="" coords="623,304,542,326,498,342,456,362,425,381,401,397,382,418,366,450,362,468,365,487,382,525,377,523,359,489,357,468,361,448,378,415,397,393,422,376,454,358,496,337,541,321,628,302"/> <area shape="rect" id="Node000014" title=" " alt="" coords="454,545,575,570"/>
<area shape="poly" id="edge18_Node000016_Node000004" title=" " alt="" coords="1508,401,1394,452,1392,447,1503,402"/> <area shape="poly" id="edge13_Node000004_Node000014" title=" " alt="" coords="612,481,543,538,541,533,607,483"/>
<area shape="poly" id="edge19_Node000016_Node000007" title=" " alt="" coords="1563,399,1633,532,1629,530,1560,403"/> <area shape="rect" id="Node000015" title=" " alt="" coords="1366,537,1501,578"/>
<area shape="poly" id="edge21_Node000016_Node000011" title=" " alt="" coords="1625,396,2265,546,2259,546,1625,401"/> <area shape="poly" id="edge14_Node000004_Node000015" title=" " alt="" coords="712,472,992,491,1169,509,1353,537,1348,537,1169,515,992,497,712,477"/>
<area shape="poly" id="edge20_Node000016_Node000013" title=" " alt="" coords="1481,395,1372,421,1255,451,1110,498,991,541,990,536,1108,493,1253,446,1371,416,1475,396"/> <area shape="poly" id="edge17_Node000016_Node000014" title=" " alt="" coords="1077,393,1018,403,968,406,906,406,761,404,689,406,623,413,568,428,547,438,530,451,518,468,512,488,512,531,507,528,507,487,513,465,526,447,544,433,566,423,622,408,688,401,761,398,906,400,968,401,1017,398,1082,392"/>
<area shape="poly" id="edge23_Node000017_Node000016" title=" " alt="" coords="1401,310,1495,353,1490,353,1400,315"/> <area shape="poly" id="edge16_Node000016_Node000015" title=" " alt="" coords="1158,391,1181,439,1199,465,1222,487,1243,499,1275,512,1353,537,1348,536,1273,517,1241,504,1218,491,1195,468,1176,441,1155,396"/>
<area shape="rect" id="Node000018" title=" " alt="" coords="880,456,948,482"/> <area shape="poly" id="edge18_Node000016_Node000017" title=" " alt="" coords="1168,391,1236,447,1231,445,1166,396"/>
<area shape="poly" id="edge24_Node000017_Node000018" title=" " alt="" coords="1357,311,1346,358,1333,383,1315,403,1176,429,964,463,963,457,1175,424,1313,398,1329,380,1341,357,1353,314"/> <area shape="poly" id="edge20_Node000018_Node000004" title=" " alt="" coords="486,399,589,449,584,449,485,404"/>
<area shape="poly" id="edge30_Node000019_Node000014" title=" " alt="" coords="232,487,343,531,338,532,231,492"/> <area shape="poly" id="edge21_Node000018_Node000007" title=" " alt="" coords="434,400,346,533,343,530,429,402"/>
<area shape="rect" id="Node000020" title=" " alt="" coords="5,545,52,570"/> <area shape="poly" id="edge23_Node000018_Node000011" title=" " alt="" coords="405,404,122,540,120,535,402,399"/>
<area shape="poly" id="edge26_Node000019_Node000020" title=" " alt="" coords="147,492,64,539,62,535,145,487"/> <area shape="poly" id="edge22_Node000018_Node000014" title=" " alt="" coords="452,399,486,488,505,532,500,530,482,490,449,403"/>
<area shape="poly" id="edge27_Node000019_Node000021" title=" " alt="" coords="206,487,264,535,258,535,204,492"/> <area shape="poly" id="edge25_Node000019_Node000018" title=" " alt="" coords="1038,303,533,370,532,365,1041,300"/>
<area shape="rect" id="Node000022" title=" " alt="" coords="76,545,144,570"/> <area shape="rect" id="Node000020" title=" " alt="" coords="1595,456,1664,482"/>
<area shape="poly" id="edge28_Node000019_Node000022" title=" " alt="" coords="167,489,131,535,127,531,162,491"/> <area shape="poly" id="edge26_Node000019_Node000020" title=" " alt="" coords="1142,310,1230,354,1338,398,1468,434,1582,460,1577,459,1467,439,1336,403,1228,359,1141,315"/>
<area shape="rect" id="Node000023" title=" " alt="" coords="168,545,236,570"/> <area shape="poly" id="edge32_Node000021_Node000015" title=" " alt="" coords="1826,487,1813,492,1517,546,1516,540,1811,487,1821,487"/>
<area shape="poly" id="edge29_Node000019_Node000023" title=" " alt="" coords="187,488,198,531,193,529,184,492"/> <area shape="rect" id="Node000022" title=" " alt="" coords="1870,545,1916,570"/>
<area shape="poly" id="edge32_Node000024_Node000007" title=" " alt="" coords="1960,312,1916,336,1873,362,1784,437,1670,537,1668,532,1780,433,1870,358,1913,332,1955,313"/> <area shape="poly" id="edge28_Node000021_Node000022" title=" " alt="" coords="1895,488,1895,531,1891,528,1891,492"/>
<area shape="poly" id="edge34_Node000024_Node000009" title=" " alt="" coords="2059,310,2091,330,2116,359,2123,380,2116,402,2101,427,2083,449,2040,488,1994,518,1951,541,1950,535,1991,514,2037,484,2079,446,2097,424,2111,400,2118,380,2112,361,2088,334,2058,315"/> <area shape="poly" id="edge29_Node000021_Node000023" title=" " alt="" coords="1943,487,2070,540,2064,539,1942,492"/>
<area shape="poly" id="edge38_Node000024_Node000010" title=" " alt="" coords="2072,309,2109,329,2125,342,2137,359,2148,380,2155,403,2159,450,2155,494,2147,532,2144,528,2150,493,2154,450,2149,404,2143,382,2133,361,2121,346,2106,333,2071,314"/> <area shape="rect" id="Node000024" title=" " alt="" coords="1940,545,2009,570"/>
<area shape="poly" id="edge33_Node000024_Node000025" title=" " alt="" coords="1942,312,1806,357,1805,352,1937,313"/> <area shape="poly" id="edge30_Node000021_Node000024" title=" " alt="" coords="1913,487,1956,535,1951,533,1911,492"/>
<area shape="rect" id="Node000026" title=" " alt="" coords="1884,368,2011,393"/> <area shape="rect" id="Node000025" title=" " alt="" coords="1778,545,1846,570"/>
<area shape="poly" id="edge35_Node000024_Node000026" title=" " alt="" coords="1992,311,1964,357,1961,352,1987,314"/> <area shape="poly" id="edge31_Node000021_Node000025" title=" " alt="" coords="1877,489,1835,536,1832,531,1872,491"/>
<area shape="poly" id="edge36_Node000024_Node000027" title=" " alt="" coords="2071,310,2266,368,2261,367,2070,315"/> <area shape="poly" id="edge34_Node000026_Node000007" title=" " alt="" coords="634,298,561,307,479,319,406,337,379,349,361,362,346,380,336,401,325,447,323,492,326,531,321,528,318,492,320,446,331,399,342,377,357,358,376,344,404,332,478,314,560,302,640,296"/>
<area shape="poly" id="edge37_Node000024_Node000028" title=" " alt="" coords="2072,307,2084,309,2279,344,2441,371,2436,371,2279,349,2083,315,2071,312"/> <area shape="poly" id="edge36_Node000026_Node000009" title=" " alt="" coords="676,311,651,335,633,361,627,381,633,399,651,419,671,428,696,435,724,446,791,487,883,538,878,537,788,492,721,451,694,440,670,433,648,424,628,402,622,381,628,359,647,331,671,314"/>
<area shape="rect" id="Node000029" title=" " alt="" coords="2035,368,2102,393"/> <area shape="poly" id="edge40_Node000026_Node000010" title=" " alt="" coords="729,310,835,399,935,474,1020,536,1014,535,932,478,832,403,728,315"/>
<area shape="poly" id="edge39_Node000024_Node000029" title=" " alt="" coords="2018,310,2052,356,2048,354,2016,315"/> <area shape="poly" id="edge41_Node000026_Node000013" title=" " alt="" coords="635,301,468,325,386,342,331,362,281,400,239,447,206,494,183,533,179,530,201,491,235,444,277,397,328,358,385,337,467,320,640,298"/>
<area shape="rect" id="Node000031" href="$error__gridfire_8h.html" title=" " alt="" coords="376,449,503,489"/> <area shape="poly" id="edge35_Node000026_Node000027" title=" " alt="" coords="757,310,864,354,859,354,756,315"/>
<area shape="poly" id="edge41_Node000030_Node000031" title=" " alt="" coords="838,304,494,362,478,377,466,396,449,435,445,432,461,393,474,374,491,358,843,302"/> <area shape="rect" id="Node000028" title=" " alt="" coords="643,368,770,393"/>
<area shape="poly" id="edge43_Node000031_Node000021" title=" " alt="" coords="407,489,323,539,321,534,402,490"/> <area shape="poly" id="edge37_Node000026_Node000028" title=" " alt="" coords="708,310,709,354,704,351,705,315"/>
<area shape="rect" id="Node000032" title=" " alt="" coords="498,545,575,570"/> <area shape="poly" id="edge38_Node000026_Node000029" title=" " alt="" coords="637,305,109,376,107,371,637,300"/>
<area shape="poly" id="edge42_Node000031_Node000032" title=" " alt="" coords="462,487,514,535,509,534,460,492"/> <area shape="poly" id="edge39_Node000026_Node000030" title=" " alt="" coords="776,295,1028,309,1358,322,1615,328,1872,337,2202,357,2319,372,2314,372,2201,363,1872,342,1615,334,1358,328,1028,315,776,300"/>
<area shape="poly" id="edge54_Node000033_Node000010" title=" " alt="" coords="1165,310,1303,352,1467,398,1803,480,2070,542,2065,541,1802,485,1465,403,1302,357,1165,315"/> <area shape="rect" id="Node000032" href="$error__gridfire_8h.html" title=" " alt="" coords="2139,449,2266,489"/>
<area shape="poly" id="edge57_Node000033_Node000012" title=" " alt="" coords="1011,308,881,335,829,349,802,362,794,381,794,400,802,420,815,439,847,470,868,487,1030,540,1025,540,866,492,844,474,811,442,798,422,789,401,788,379,799,358,827,344,880,330,1016,306"/> <area shape="poly" id="edge43_Node000031_Node000032" title=" " alt="" coords="2180,310,2194,333,2204,359,2209,397,2208,435,2204,432,2204,398,2199,361,2189,336,2178,315"/>
<area shape="poly" id="edge55_Node000033_Node000018" title=" " alt="" coords="1011,309,889,336,840,350,816,362,810,373,810,384,822,407,847,428,877,449,872,448,843,433,818,410,804,385,805,372,812,358,838,345,888,331,1017,307"/> <area shape="poly" id="edge45_Node000032_Node000023" title=" " alt="" coords="2184,489,2133,537,2131,532,2179,491"/>
<area shape="rect" id="Node000034" href="$scratchpad__abstract_8h.html" title="Abstract base class for scratchpad memory used during engine computations." alt="" coords="825,360,1002,401"/> <area shape="rect" id="Node000033" title=" " alt="" coords="2164,545,2241,570"/>
<area shape="poly" id="edge45_Node000033_Node000034" title=" " alt="" coords="1063,312,971,356,969,351,1058,313"/> <area shape="poly" id="edge44_Node000032_Node000033" title=" " alt="" coords="2205,488,2205,531,2201,528,2201,492"/>
<area shape="rect" id="Node000035" href="$engine_2scratchpads_2types_8h.html" title="Type definitions and utilities for the scratchpad system." alt="" coords="1026,360,1204,401"/> <area shape="poly" id="edge57_Node000034_Node000010" title=" " alt="" coords="1554,312,1438,403,1374,452,1344,471,1304,492,1252,511,1210,521,1168,528,1114,540,1104,543,1103,537,1113,535,1167,523,1209,515,1251,506,1302,487,1341,467,1370,448,1434,399,1549,314"/>
<area shape="poly" id="edge47_Node000033_Node000035" title=" " alt="" coords="1107,310,1113,346,1108,343,1104,315"/> <area shape="poly" id="edge60_Node000034_Node000012" title=" " alt="" coords="1567,311,1541,361,1527,399,1520,432,1508,462,1482,491,1451,512,1423,524,1395,530,1368,531,1311,531,1279,533,1242,540,1231,543,1230,537,1241,535,1278,528,1311,526,1368,526,1395,525,1421,519,1448,507,1478,487,1504,459,1515,430,1522,398,1536,359,1563,314"/>
<area shape="rect" id="Node000037" href="$error__scratchpad_8h.html" title=" " alt="" coords="504,360,638,401"/> <area shape="poly" id="edge58_Node000034_Node000020" title=" " alt="" coords="1665,306,1708,326,1727,341,1742,359,1750,380,1742,402,1731,414,1714,427,1670,451,1668,446,1711,423,1728,410,1738,399,1744,380,1738,361,1723,344,1705,331,1665,311"/>
<area shape="poly" id="edge50_Node000033_Node000037" title=" " alt="" coords="1012,308,654,368,653,363,1017,307"/> <area shape="rect" id="Node000035" href="$scratchpad__abstract_8h.html" title="Abstract base class for scratchpad memory used during engine computations." alt="" coords="1550,360,1727,401"/>
<area shape="poly" id="edge56_Node000033_Node000039" title=" " alt="" coords="1140,310,1231,360,1226,360,1139,315"/> <area shape="poly" id="edge47_Node000034_Node000035" title=" " alt="" coords="1591,310,1618,348,1613,347,1589,315"/>
<area shape="poly" id="edge46_Node000034_Node000018" title=" " alt="" coords="916,399,916,442,912,439,912,403"/> <area shape="rect" id="Node000036" href="$engine_2scratchpads_2types_8h.html" title="Type definitions and utilities for the scratchpad system." alt="" coords="1803,360,1981,401"/>
<area shape="poly" id="edge49_Node000035_Node000006" title=" " alt="" coords="1126,399,1191,532,1187,529,1123,403"/> <area shape="poly" id="edge49_Node000034_Node000036" title=" " alt="" coords="1648,310,1809,356,1803,355,1648,315"/>
<area shape="rect" id="Node000036" title=" " alt="" coords="1053,456,1113,482"/> <area shape="rect" id="Node000038" href="$error__scratchpad_8h.html" title=" " alt="" coords="2056,360,2189,401"/>
<area shape="poly" id="edge48_Node000035_Node000036" title=" " alt="" coords="1110,400,1095,444,1091,440,1106,403"/> <area shape="poly" id="edge53_Node000034_Node000038" title=" " alt="" coords="1665,304,2043,366,2038,366,1665,310"/>
<area shape="poly" id="edge51_Node000037_Node000021" title=" " alt="" coords="568,399,551,447,536,471,517,491,492,508,469,518,426,525,381,527,355,531,327,540,324,541,323,536,325,535,354,526,380,522,425,520,468,513,490,503,513,487,532,468,546,445,564,403"/> <area shape="poly" id="edge59_Node000034_Node000040" title=" " alt="" coords="1536,312,1428,363,1426,358,1530,313"/>
<area shape="poly" id="edge53_Node000037_Node000031" title=" " alt="" coords="544,400,483,442,481,437,539,402"/> <area shape="poly" id="edge48_Node000035_Node000020" title=" " alt="" coords="1638,399,1634,443,1630,439,1635,403"/>
<area shape="rect" id="Node000038" title=" " alt="" coords="577,456,656,482"/> <area shape="poly" id="edge51_Node000036_Node000006" title=" " alt="" coords="1834,401,1781,424,1728,451,1704,472,1693,482,1677,492,1631,509,1590,519,1518,525,1445,526,1403,531,1354,540,1344,542,1344,537,1353,535,1402,525,1444,521,1518,520,1589,514,1629,504,1675,487,1690,478,1700,468,1725,446,1779,420,1829,402"/>
<area shape="poly" id="edge52_Node000037_Node000038" title=" " alt="" coords="583,399,606,443,601,442,580,404"/> <area shape="poly" id="edge52_Node000036_Node000017" title=" " alt="" coords="1806,394,1306,464,1305,459,1800,394"/>
<area shape="rect" id="Node000037" title=" " alt="" coords="1739,456,1800,482"/>
<area shape="poly" id="edge50_Node000036_Node000037" title=" " alt="" coords="1867,400,1799,450,1798,445,1862,402"/>
<area shape="poly" id="edge54_Node000038_Node000023" title=" " alt="" coords="2123,399,2112,531,2108,527,2119,403"/>
<area shape="poly" id="edge56_Node000038_Node000032" title=" " alt="" coords="2142,399,2177,438,2172,436,2140,404"/>
<area shape="rect" id="Node000039" title=" " alt="" coords="1986,456,2064,482"/>
<area shape="poly" id="edge55_Node000038_Node000039" title=" " alt="" coords="2103,400,2051,448,2049,443,2098,402"/>
</map> </map>

View File

@@ -1 +1 @@
f9da2f20ef2e083cae086863c4b8a245 679b9b9c936121d6e5eeb0ac73dacfb6

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 52 KiB

After

Width:  |  Height:  |  Size: 55 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 48 KiB

After

Width:  |  Height:  |  Size: 51 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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -1,164 +1,153 @@
<map id="src/lib/solver/strategies/PointSolver.cpp" name="src/lib/solver/strategies/PointSolver.cpp"> <map id="src/lib/solver/strategies/PointSolver.cpp" name="src/lib/solver/strategies/PointSolver.cpp">
<area shape="rect" id="Node000001" title=" " alt="" coords="2315,5,2472,46"/> <area shape="rect" id="Node000001" title=" " alt="" coords="3532,5,3689,46"/>
<area shape="rect" id="Node000002" href="$_point_solver_8h.html" title=" " alt="" coords="2085,198,2246,238"/> <area shape="rect" id="Node000002" href="$_point_solver_8h.html" title=" " alt="" coords="2132,198,2292,238"/>
<area shape="poly" id="edge1_Node000001_Node000002" title=" " alt="" coords="2376,45,2270,152,2213,192,2210,187,2266,148,2371,48"/> <area shape="poly" id="edge1_Node000001_Node000002" title=" " alt="" coords="3529,38,2308,206,2307,201,3534,37"/>
<area shape="rect" id="Node000011" title=" " alt="" coords="2549,722,2659,748"/> <area shape="rect" id="Node000017" href="$types_2types_8h.html" title=" " alt="" coords="1958,471,2101,497"/>
<area shape="poly" id="edge77_Node000001_Node000011" title=" " alt="" coords="2472,26,2763,33,3144,46,3483,66,3596,78,3631,84,3650,92,3672,119,3679,148,3676,217,3676,574,3674,584,3667,594,3641,612,3603,628,3552,642,3421,668,3264,689,3096,705,2932,718,2675,733,2675,728,2931,713,3095,700,3263,683,3420,662,3550,637,3601,623,3639,607,3663,590,3669,582,3671,574,3671,217,3674,148,3667,122,3646,96,3630,90,3595,83,3483,71,3144,52,2762,38,2472,31"/> <area shape="poly" id="edge43_Node000001_Node000017" title=" " alt="" coords="3588,45,3564,69,3545,95,3528,127,3519,153,3514,181,3513,217,3513,309,3510,315,3500,323,3447,346,3325,378,3110,418,2905,440,2625,459,2117,482,2116,477,2624,453,2905,435,3109,413,3324,373,3445,341,3497,319,3506,312,3508,307,3508,217,3509,180,3513,152,3523,125,3540,93,3560,66,3583,47"/>
<area shape="rect" id="Node000015" title=" " alt="" coords="699,715,834,755"/> <area shape="rect" id="Node000016" title=" " alt="" coords="2119,552,2254,593"/>
<area shape="poly" id="edge73_Node000001_Node000015" title=" " alt="" coords="2312,29,1481,51,984,70,776,83,619,97,566,100,513,100,406,90,303,76,208,66,166,65,127,67,93,74,64,87,40,107,23,134,12,170,8,217,8,574,13,597,28,618,52,637,85,654,169,682,271,702,383,716,494,724,686,734,681,734,494,730,382,721,270,707,167,687,83,659,50,642,24,622,8,599,3,574,3,217,7,169,18,132,36,103,61,83,91,69,126,62,166,59,209,61,304,71,407,85,513,95,566,95,618,91,775,77,983,65,1481,46,2317,27"/> <area shape="poly" id="edge64_Node000001_Node000016" title=" " alt="" coords="3604,45,3579,121,3568,168,3564,217,3564,397,3557,428,3536,454,3504,474,3462,489,3411,500,3355,507,3227,513,3091,511,2959,507,2844,504,2759,507,2623,520,2515,527,2407,536,2269,555,2269,549,2407,531,2515,522,2622,515,2758,502,2844,498,2959,501,3091,506,3227,508,3354,502,3411,495,3460,484,3501,469,3532,450,3552,426,3559,396,3559,217,3563,167,3574,120,3600,48"/>
<area shape="rect" id="Node000016" href="$types_2types_8h.html" title=" " alt="" coords="1362,471,1505,497"/> <area shape="rect" id="Node000011" title=" " alt="" coords="2278,560,2388,586"/>
<area shape="poly" id="edge53_Node000001_Node000016" title=" " alt="" coords="2312,29,2053,38,1709,50,1393,70,1279,82,1213,97,1135,130,1077,166,1054,188,1032,215,992,287,985,307,992,325,1009,339,1044,356,1148,394,1378,466,1373,467,1147,399,1042,361,1006,343,987,329,980,307,987,285,1028,212,1050,184,1074,162,1132,126,1211,91,1278,77,1392,64,1709,45,2052,33,2317,28"/> <area shape="poly" id="edge68_Node000001_Node000011" title=" " alt="" coords="3689,24,3928,26,4233,34,4380,42,4508,54,4605,70,4638,80,4659,92,4681,120,4688,148,4685,217,4685,397,4679,409,4662,420,4601,440,4506,458,4382,475,4065,503,3690,527,3297,545,2925,558,2404,573,2404,567,2925,553,3297,540,3690,521,4065,498,4381,469,4505,453,4600,435,4660,415,4675,406,4680,396,4680,217,4683,148,4676,122,4655,96,4636,85,4604,76,4507,59,4380,48,4232,39,3927,31,3689,29"/>
<area shape="rect" id="Node000022" title=" " alt="" coords="1285,382,1339,408"/> <area shape="rect" id="Node000024" title=" " alt="" coords="945,382,998,408"/>
<area shape="poly" id="edge76_Node000001_Node000022" title=" " alt="" coords="2312,33,2159,50,1950,79,1835,101,1716,128,1599,161,1486,200,1402,231,1370,252,1338,288,1328,307,1321,327,1314,369,1310,365,1316,326,1323,305,1334,285,1367,248,1399,227,1484,195,1598,156,1715,123,1833,96,1949,74,2158,44,2317,31"/> <area shape="poly" id="edge67_Node000001_Node000024" title=" " alt="" coords="3529,28,3086,37,2443,50,1829,70,1604,82,1472,97,1389,110,1315,119,1247,126,1185,137,1129,154,1075,182,1024,226,974,288,966,306,963,327,966,369,962,366,957,327,960,305,970,285,1021,222,1073,178,1127,149,1184,132,1246,121,1314,114,1389,105,1471,91,1604,77,1829,64,2443,44,3086,32,3534,28"/>
<area shape="rect" id="Node000050" href="$error__solver_8h.html" title=" " alt="" coords="3387,375,3514,416"/> <area shape="rect" id="Node000050" href="$error__solver_8h.html" title=" " alt="" coords="3650,375,3777,416"/>
<area shape="poly" id="edge107_Node000001_Node000050" title=" " alt="" coords="2383,45,2371,71,2362,98,2360,125,2364,137,2371,148,2393,160,2430,169,2543,180,2691,181,2857,178,3174,173,3291,179,3331,185,3357,195,3377,211,3394,231,3420,274,3438,320,3447,362,3443,359,3433,321,3416,277,3390,234,3374,215,3355,200,3330,191,3290,184,3174,178,2857,183,2691,186,2542,185,2429,175,2391,165,2368,152,2359,139,2355,126,2356,97,2366,69,2379,48"/> <area shape="poly" id="edge96_Node000001_Node000050" title=" " alt="" coords="3689,25,3871,30,4092,40,4197,49,4287,60,4354,74,4377,83,4391,92,4417,128,4427,162,4422,194,4405,222,4376,247,4338,270,4292,291,4240,309,4124,340,4002,363,3887,379,3793,390,3792,385,3887,374,4001,358,4123,335,4238,304,4290,286,4335,266,4373,243,4400,218,4417,192,4422,163,4412,131,4387,96,4374,87,4353,79,4286,65,4197,54,4092,46,3871,35,3689,31"/>
<area shape="rect" id="Node000051" href="$config_8h.html" title=" " alt="" coords="2899,382,3048,408"/> <area shape="rect" id="Node000051" href="$config_8h.html" title=" " alt="" coords="2948,382,3097,408"/>
<area shape="poly" id="edge112_Node000001_Node000051" title=" " alt="" coords="2472,24,2632,27,2829,37,2926,45,3016,57,3092,72,3148,92,3214,128,3261,167,3295,216,3326,285,3333,307,3332,318,3326,329,3309,343,3284,355,3217,373,3139,385,3064,392,3063,387,3138,380,3216,368,3282,350,3306,338,3322,325,3327,316,3328,308,3322,287,3291,219,3257,171,3211,133,3146,96,3090,77,3015,62,2926,50,2828,42,2632,32,2472,30"/> <area shape="poly" id="edge101_Node000001_Node000051" title=" " alt="" coords="3561,46,3524,69,3494,96,3474,126,3464,156,3459,216,3457,245,3451,273,3437,302,3412,329,3390,342,3360,354,3283,372,3196,384,3113,392,3113,386,3195,379,3282,366,3359,349,3388,338,3409,325,3433,299,3446,272,3452,244,3454,215,3459,155,3469,124,3490,92,3521,64,3556,47"/>
<area shape="rect" id="Node000059" href="$table__format_8h.html" title=" " alt="" coords="453,286,574,327"/> <area shape="rect" id="Node000060" href="$table__format_8h.html" title=" " alt="" coords="406,286,527,327"/>
<area shape="poly" id="edge54_Node000001_Node000059" title=" " alt="" coords="2312,27,1950,29,1444,36,1192,44,969,56,798,74,738,84,700,96,671,113,644,133,597,181,559,231,532,275,528,271,555,228,593,178,641,129,668,108,698,92,737,79,797,68,969,51,1192,39,1444,31,1950,24,2317,26"/> <area shape="poly" id="edge44_Node000001_Node000060" title=" " alt="" coords="3529,27,2902,30,1954,37,1479,45,1067,57,766,74,671,84,622,96,596,113,573,133,533,181,502,230,481,274,477,271,498,228,528,177,569,129,593,108,620,92,670,79,765,69,1067,52,1479,39,1954,31,2902,25,3534,26"/>
<area shape="rect" id="Node000061" title=" " alt="" coords="627,382,701,408"/> <area shape="rect" id="Node000062" title=" " alt="" coords="591,382,665,408"/>
<area shape="poly" id="edge79_Node000001_Node000061" title=" " alt="" coords="2312,29,1968,39,1496,52,1070,72,927,84,883,90,860,96,822,123,788,156,759,193,734,232,697,309,674,369,670,366,692,307,730,230,755,190,784,153,819,119,858,92,882,85,927,78,1070,67,1496,47,1967,33,2317,28"/> <area shape="poly" id="edge70_Node000001_Node000062" title=" " alt="" coords="3529,28,3023,34,2272,44,1890,53,1550,64,1285,79,1192,87,1130,97,994,126,938,139,888,155,840,176,792,203,741,240,686,288,670,307,656,327,638,369,634,366,652,325,665,303,682,284,738,236,789,199,837,171,886,150,937,134,992,120,1129,91,1191,82,1285,73,1550,59,1890,48,2272,39,3023,29,3535,27"/>
<area shape="rect" id="Node000066" href="$dynamic__engine__diagnostics_8h.html" title="Diagnostics utilities for DynamicEngine instances." alt="" coords="1016,286,1219,327"/> <area shape="rect" id="Node000067" href="$dynamic__engine__diagnostics_8h.html" title="Diagnostics utilities for DynamicEngine instances." alt="" coords="1057,286,1260,327"/>
<area shape="poly" id="edge66_Node000001_Node000066" title=" " alt="" coords="2312,29,2067,36,1746,48,1453,67,1349,81,1313,88,1289,96,1262,113,1237,134,1193,181,1159,231,1135,274,1131,271,1154,228,1189,178,1233,130,1259,109,1287,92,1311,83,1348,75,1453,62,1746,42,2067,31,2317,28"/> <area shape="poly" id="edge56_Node000001_Node000067" title=" " alt="" coords="3529,28,3119,37,2530,50,1971,69,1767,82,1647,97,1582,114,1518,135,1394,185,1286,237,1205,281,1203,276,1284,233,1392,180,1516,130,1581,108,1646,91,1767,77,1971,64,2530,44,3119,32,3535,28"/>
<area shape="rect" id="Node000067" title=" " alt="" coords="2381,109,2504,135"/> <area shape="rect" id="Node000068" title=" " alt="" coords="3598,109,3722,135"/>
<area shape="poly" id="edge72_Node000001_Node000067" title=" " alt="" coords="2405,44,2432,97,2427,95,2402,49"/> <area shape="poly" id="edge63_Node000001_Node000068" title=" " alt="" coords="3622,44,3649,97,3644,94,3619,49"/>
<area shape="rect" id="Node000037" title=" " alt="" coords="2528,109,2589,135"/> <area shape="rect" id="Node000038" title=" " alt="" coords="3746,109,3806,135"/>
<area shape="poly" id="edge74_Node000001_Node000037" title=" " alt="" coords="2430,44,2517,92,2530,101,2524,100,2515,96,2430,49"/> <area shape="poly" id="edge65_Node000001_Node000038" title=" " alt="" coords="3648,44,3734,92,3747,101,3741,100,3732,96,3647,49"/>
<area shape="rect" id="Node000068" title=" " alt="" coords="2612,109,2665,135"/> <area shape="rect" id="Node000069" title=" " alt="" coords="3830,109,3882,135"/>
<area shape="poly" id="edge75_Node000001_Node000068" title=" " alt="" coords="2472,44,2537,64,2603,92,2614,100,2609,100,2600,96,2535,69,2472,49"/> <area shape="poly" id="edge66_Node000001_Node000069" title=" " alt="" coords="3690,44,3754,64,3820,92,3832,100,3826,99,3817,96,3753,69,3689,49"/>
<area shape="rect" id="Node000039" title=" " alt="" coords="2689,109,2767,135"/> <area shape="rect" id="Node000040" title=" " alt="" coords="3906,109,3984,135"/>
<area shape="poly" id="edge78_Node000001_Node000039" title=" " alt="" coords="2472,37,2572,59,2678,91,2697,102,2692,101,2676,97,2570,64,2472,43"/> <area shape="poly" id="edge69_Node000001_Node000040" title=" " alt="" coords="3689,37,3789,59,3895,91,3914,102,3909,101,3894,97,3788,64,3689,43"/>
<area shape="rect" id="Node000069" title=" " alt="" coords="2791,109,2956,135"/> <area shape="rect" id="Node000070" title=" " alt="" coords="4008,109,4173,135"/>
<area shape="poly" id="edge80_Node000001_Node000069" title=" " alt="" coords="2472,36,2616,59,2779,91,2822,104,2816,104,2778,97,2615,64,2472,41"/> <area shape="poly" id="edge71_Node000001_Node000070" title=" " alt="" coords="3689,36,3833,59,3996,91,4039,104,4034,104,3995,97,3832,64,3689,41"/>
<area shape="rect" id="Node000070" title=" " alt="" coords="2980,94,3135,150"/> <area shape="rect" id="Node000071" title=" " alt="" coords="4197,94,4352,150"/>
<area shape="poly" id="edge81_Node000001_Node000070" title=" " alt="" coords="2472,29,2691,49,2826,67,2967,93,2962,94,2825,72,2690,55,2472,35"/> <area shape="poly" id="edge72_Node000001_Node000071" title=" " alt="" coords="3689,29,3908,49,4043,67,4184,94,4179,93,4042,72,3907,55,3689,35"/>
<area shape="rect" id="Node000071" href="$engine__graph_8h.html" title=" " alt="" coords="1781,286,1926,327"/> <area shape="rect" id="Node000072" href="$engine__graph_8h.html" title=" " alt="" coords="1916,286,2060,327"/>
<area shape="poly" id="edge82_Node000001_Node000071" title=" " alt="" coords="2312,31,2257,39,2193,51,2127,69,2064,96,2005,136,1953,185,1909,234,1877,276,1874,271,1905,230,1949,181,2002,132,2061,92,2125,64,2192,46,2257,34,2317,30"/> <area shape="poly" id="edge73_Node000001_Node000072" title=" " alt="" coords="3529,30,3234,47,2821,77,2609,99,2411,127,2244,160,2176,179,2121,200,2091,216,2064,236,2017,277,2015,273,2060,232,2088,212,2119,195,2174,174,2242,155,2410,121,2608,94,2821,71,3233,41,3535,29"/>
<area shape="rect" id="Node000085" href="$engine__partitioning__trigger_8h.html" title="CVODE&#45;specific triggers that decide when to (re)partition the reaction network engine." alt="" coords="2075,94,2256,150"/> <area shape="rect" id="Node000085" href="$engine__partitioning__trigger_8h.html" title="CVODE&#45;specific triggers that decide when to (re)partition the reaction network engine." alt="" coords="1659,94,1839,150"/>
<area shape="poly" id="edge100_Node000001_Node000085" title=" " alt="" coords="2348,46,2246,90,2244,85,2343,47"/> <area shape="poly" id="edge89_Node000001_Node000085" title=" " alt="" coords="3529,29,2908,51,2470,70,2023,97,1855,112,1854,106,2022,91,2470,65,2907,46,3535,28"/>
<area shape="rect" id="Node000089" href="$trigger__pprint_8h.html" title=" " alt="" coords="3468,102,3636,142"/> <area shape="rect" id="Node000089" href="$trigger__pprint_8h.html" title=" " alt="" coords="4477,102,4645,142"/>
<area shape="poly" id="edge106_Node000001_Node000089" title=" " alt="" coords="2472,24,2648,27,2891,37,3169,57,3311,72,3450,91,3471,98,3466,98,3449,97,3310,77,3168,62,2891,42,2648,32,2472,30"/> <area shape="poly" id="edge95_Node000001_Node000089" title=" " alt="" coords="3689,26,3833,31,4025,43,4241,62,4459,91,4480,98,4475,97,4458,97,4241,67,4025,48,3833,37,3689,31"/>
<area shape="rect" id="Node000091" href="$sundials_8h.html" title=" " alt="" coords="3476,205,3628,231"/> <area shape="rect" id="Node000091" href="$sundials_8h.html" title=" " alt="" coords="3618,205,3769,231"/>
<area shape="poly" id="edge108_Node000001_Node000091" title=" " alt="" coords="2472,26,2699,34,2987,47,3250,66,3344,78,3400,92,3419,104,3431,117,3442,132,3458,148,3523,197,3518,196,3454,152,3438,135,3427,120,3416,108,3398,96,3343,83,3250,72,2987,53,2699,39,2472,32"/> <area shape="poly" id="edge97_Node000001_Node000091" title=" " alt="" coords="3689,25,3866,30,4079,41,4179,50,4266,61,4330,75,4352,83,4366,92,4376,107,4379,122,4376,137,4366,152,4336,167,4282,179,4125,198,3943,210,3785,217,3784,212,3943,205,4125,193,4281,174,4334,162,4362,148,4371,135,4374,122,4371,109,4362,96,4350,88,4329,80,4265,66,4179,55,4078,47,3866,36,3689,31"/>
<area shape="rect" id="Node000003" href="$strategy__abstract_8h.html" title=" " alt="" coords="1445,286,1606,327"/> <area shape="rect" id="Node000003" href="$strategy__abstract_8h.html" title=" " alt="" coords="1334,286,1495,327"/>
<area shape="poly" id="edge2_Node000002_Node000003" title=" " alt="" coords="2082,228,1876,254,1624,289,1621,289,1620,284,1624,284,1875,249,2087,227"/> <area shape="poly" id="edge2_Node000002_Node000003" title=" " alt="" coords="2128,227,1875,254,1557,289,1511,295,1510,290,1557,284,1875,249,2134,226"/>
<area shape="rect" id="Node000004" href="$engine__abstract_8h.html" title="Abstract interfaces for reaction network engines in GridFire." alt="" coords="1565,375,1710,416"/> <area shape="rect" id="Node000004" href="$engine__abstract_8h.html" title="Abstract interfaces for reaction network engines in GridFire." alt="" coords="1225,375,1369,416"/>
<area shape="poly" id="edge34_Node000002_Node000004" title=" " alt="" coords="2082,227,1896,251,1806,268,1744,289,1719,304,1697,324,1661,365,1658,360,1693,320,1716,300,1742,284,1805,263,1896,246,2087,226"/> <area shape="poly" id="edge22_Node000002_Node000004" title=" " alt="" coords="2128,220,1926,227,1672,237,1550,246,1446,257,1367,271,1340,280,1324,288,1312,303,1304,321,1297,361,1293,358,1299,320,1307,300,1321,284,1338,275,1366,266,1445,252,1550,241,1671,232,1926,222,2134,220"/>
<area shape="rect" id="Node000008" title=" " alt="" coords="1471,722,1676,748"/> <area shape="poly" id="edge23_Node000002_Node000017" title=" " alt="" coords="2270,236,2325,258,2380,284,2408,305,2437,325,2460,333,2481,337,2521,339,2557,345,2575,356,2591,374,2600,395,2598,407,2591,418,2567,430,2524,442,2397,460,2249,473,2116,481,2116,476,2249,468,2397,454,2523,436,2565,426,2587,414,2593,405,2595,396,2587,376,2571,360,2555,350,2520,344,2481,342,2458,338,2435,329,2405,309,2377,289,2322,262,2270,242"/>
<area shape="poly" id="edge40_Node000002_Node000008" title=" " alt="" coords="2082,220,1919,227,1713,237,1517,257,1437,271,1378,289,1343,305,1318,322,1298,345,1276,376,1237,434,1209,485,1203,510,1202,536,1209,562,1225,592,1246,618,1271,641,1330,677,1393,702,1458,721,1453,720,1392,707,1327,682,1268,645,1242,622,1220,594,1204,564,1197,536,1197,509,1204,483,1233,431,1271,374,1293,341,1315,318,1341,301,1376,284,1436,266,1516,251,1713,232,1919,221,2088,220"/> <area shape="rect" id="Node000012" title=" " alt="" coords="1032,471,1090,497"/>
<area shape="rect" id="Node000012" title=" " alt="" coords="1093,722,1150,748"/> <area shape="poly" id="edge33_Node000002_Node000012" title=" " alt="" coords="2128,221,1886,228,1559,239,1235,259,1101,273,1000,289,930,300,873,309,848,317,825,330,803,349,781,376,773,391,771,404,773,416,780,426,805,444,842,457,886,467,933,473,1020,482,1015,482,932,479,885,472,840,462,802,448,776,430,768,418,765,404,768,390,776,374,799,345,822,325,846,312,872,304,930,295,999,284,1101,267,1235,254,1558,234,1886,223,2134,220"/>
<area shape="poly" id="edge45_Node000002_Node000012" title=" " alt="" coords="2082,221,1810,231,1455,244,1141,263,1037,275,1006,282,991,288,953,333,929,379,916,425,916,473,926,520,945,568,974,617,1011,665,1044,693,1081,717,1076,716,1041,698,1007,668,970,620,941,571,921,522,910,473,911,425,924,377,949,330,988,284,1004,277,1037,270,1140,258,1454,239,1810,226,2087,221"/> <area shape="rect" id="Node000014" title=" " alt="" coords="1779,471,1845,497"/>
<area shape="poly" id="edge35_Node000002_Node000016" title=" " alt="" coords="2082,221,1813,231,1462,244,1153,263,1051,275,1020,282,1006,288,1000,297,998,306,1006,325,1028,347,1051,358,1075,362,1099,362,1154,359,1185,362,1217,373,1247,392,1275,413,1331,441,1387,466,1382,465,1329,446,1272,418,1244,397,1215,377,1183,367,1154,364,1100,367,1074,368,1049,363,1025,351,1002,329,992,307,995,295,1002,284,1019,277,1050,270,1152,258,1462,238,1813,225,2087,221"/> <area shape="poly" id="edge36_Node000002_Node000014" title=" " alt="" coords="2197,237,2182,260,2171,283,2167,306,2169,316,2175,325,2196,345,2217,357,2239,365,2262,367,2310,362,2358,348,2408,335,2456,330,2480,332,2503,340,2526,353,2547,373,2554,384,2557,395,2554,407,2547,418,2533,427,2510,434,2442,446,2353,453,2253,458,2061,463,1945,466,1860,478,1860,472,1945,461,2061,457,2253,453,2353,448,2441,440,2508,429,2531,422,2543,414,2550,405,2552,395,2549,386,2543,377,2522,357,2501,345,2479,337,2456,335,2409,340,2360,354,2311,367,2262,372,2238,370,2215,362,2193,349,2171,329,2164,318,2162,306,2166,281,2178,257,2192,240"/>
<area shape="rect" id="Node000029" title=" " alt="" coords="1851,382,1928,408"/> <area shape="rect" id="Node000031" title=" " alt="" coords="1634,382,1712,408"/>
<area shape="poly" id="edge42_Node000002_Node000029" title=" " alt="" coords="2082,222,1997,229,1903,240,1822,260,1791,273,1771,288,1765,300,1765,312,1770,323,1780,335,1809,356,1845,376,1840,376,1807,361,1776,339,1765,326,1759,313,1760,299,1767,285,1789,268,1820,254,1902,235,1997,224,2087,221"/> <area shape="poly" id="edge30_Node000002_Node000031" title=" " alt="" coords="2134,227,2022,251,1962,267,1905,289,1888,298,1876,308,1848,329,1720,379,1718,374,1845,325,1873,304,1885,294,1903,284,1961,262,2021,246,2129,228"/>
<area shape="rect" id="Node000042" title=" " alt="" coords="1784,382,1826,408"/> <area shape="rect" id="Node000043" title=" " alt="" coords="1495,382,1537,408"/>
<area shape="poly" id="edge43_Node000002_Node000042" title=" " alt="" coords="2082,221,1994,228,1896,239,1811,259,1779,272,1758,288,1753,297,1751,307,1755,329,1768,350,1784,372,1779,370,1763,353,1750,331,1745,307,1748,295,1754,285,1776,267,1809,254,1895,234,1994,223,2087,220"/> <area shape="poly" id="edge31_Node000002_Node000043" title=" " alt="" coords="2128,219,2057,226,1972,236,1882,257,1839,271,1797,289,1784,298,1776,308,1767,319,1753,329,1724,343,1698,351,1652,357,1606,362,1550,378,1549,378,1548,373,1548,372,1605,357,1652,352,1697,345,1722,338,1750,325,1763,315,1772,305,1780,294,1795,284,1837,266,1881,251,1971,231,2057,220,2134,218"/>
<area shape="rect" id="Node000028" title=" " alt="" coords="2509,382,2558,408"/> <area shape="rect" id="Node000030" title=" " alt="" coords="1560,382,1610,408"/>
<area shape="poly" id="edge46_Node000002_Node000028" title=" " alt="" coords="2245,219,2393,227,2562,239,2709,258,2759,270,2787,284,2797,298,2801,311,2799,322,2793,333,2770,351,2737,365,2653,384,2574,394,2573,388,2652,379,2735,360,2768,346,2789,330,2794,321,2795,311,2792,300,2784,288,2758,275,2708,263,2562,244,2392,232,2246,225"/> <area shape="poly" id="edge34_Node000002_Node000030" title=" " alt="" coords="2128,223,2068,232,1995,244,1920,262,1848,289,1833,298,1823,308,1813,319,1797,329,1750,348,1711,356,1672,363,1623,378,1621,378,1620,373,1622,372,1670,358,1710,351,1748,343,1795,325,1809,315,1819,304,1829,294,1845,284,1918,257,1994,238,2067,227,2134,222"/>
<area shape="poly" id="edge44_Node000002_Node000022" title=" " alt="" coords="2082,221,1930,228,1741,239,1561,258,1488,272,1434,289,1414,302,1388,324,1335,374,1333,369,1384,320,1411,298,1432,284,1487,267,1560,253,1740,233,1930,222,2088,220"/> <area shape="poly" id="edge32_Node000002_Node000024" title=" " alt="" coords="2129,220,1870,226,1530,237,1365,245,1220,256,1109,271,1071,279,1046,289,1025,305,1008,326,983,370,980,366,1004,323,1022,301,1044,284,1069,274,1108,266,1219,251,1364,240,1530,231,1870,221,2134,220"/>
<area shape="rect" id="Node000043" href="$exceptions_8h.html" title=" " alt="" coords="2950,286,3077,327"/> <area shape="rect" id="Node000044" href="$exceptions_8h.html" title=" " alt="" coords="3060,286,3188,327"/>
<area shape="poly" id="edge36_Node000002_Node000043" title=" " alt="" coords="2246,220,2548,240,2739,258,2931,284,2937,287,2932,287,2930,289,2738,263,2547,245,2246,225"/> <area shape="poly" id="edge24_Node000002_Node000044" title=" " alt="" coords="2292,219,2620,238,2830,257,3042,284,3048,287,3043,287,3041,289,2830,262,2620,243,2292,225"/>
<area shape="poly" id="edge38_Node000002_Node000051" title=" " alt="" coords="2245,217,2398,220,2583,230,2675,238,2758,250,2829,265,2881,284,2907,301,2929,323,2962,370,2957,368,2925,327,2904,305,2879,289,2827,270,2757,255,2674,244,2583,235,2398,225,2246,222"/> <area shape="poly" id="edge26_Node000002_Node000051" title=" " alt="" coords="2292,218,2475,224,2696,236,2892,255,2960,268,2984,276,2999,284,3013,302,3022,324,3026,369,3022,365,3017,325,3009,305,2995,288,2982,281,2959,273,2891,260,2696,241,2475,229,2293,224"/>
<area shape="rect" id="Node000052" title=" " alt="" coords="2789,471,2939,497"/> <area shape="rect" id="Node000052" title=" " alt="" coords="2597,471,2747,497"/>
<area shape="poly" id="edge41_Node000002_Node000052" title=" " alt="" coords="2245,220,2397,228,2574,241,2728,260,2782,271,2812,284,2829,302,2843,323,2860,370,2867,417,2867,458,2863,454,2862,417,2854,371,2838,326,2825,306,2809,289,2780,276,2727,265,2573,246,2397,233,2246,225"/> <area shape="poly" id="edge29_Node000002_Node000052" title=" " alt="" coords="2293,235,2360,255,2428,284,2455,304,2481,325,2518,339,2549,344,2580,352,2614,373,2631,392,2646,413,2666,458,2661,455,2641,416,2627,395,2610,377,2578,357,2548,350,2516,344,2479,329,2452,309,2425,289,2358,260,2292,240"/>
<area shape="rect" id="Node000053" title=" " alt="" coords="1950,294,2056,320"/> <area shape="rect" id="Node000008" title=" " alt="" coords="2328,382,2533,408"/>
<area shape="poly" id="edge47_Node000002_Node000053" title=" " alt="" coords="2131,238,2040,289,2038,284,2126,240"/> <area shape="poly" id="edge28_Node000002_Node000008" title=" " alt="" coords="2181,238,2156,260,2135,281,2125,304,2126,315,2131,325,2157,338,2208,351,2341,379,2335,379,2207,357,2155,343,2127,329,2120,316,2119,303,2130,278,2152,256,2176,240"/>
<area shape="rect" id="Node000054" title=" " alt="" coords="2080,294,2251,320"/> <area shape="rect" id="Node000053" title=" " alt="" coords="2806,294,2855,320"/>
<area shape="poly" id="edge48_Node000002_Node000054" title=" " alt="" coords="2167,237,2167,280,2163,277,2164,241"/> <area shape="poly" id="edge35_Node000002_Node000053" title=" " alt="" coords="2292,217,2395,220,2522,231,2659,251,2728,266,2795,284,2800,287,2794,287,2794,289,2727,271,2659,256,2521,236,2395,226,2293,222"/>
<area shape="rect" id="Node000055" title=" " alt="" coords="2276,294,2458,320"/> <area shape="rect" id="Node000054" title=" " alt="" coords="2879,294,2985,320"/>
<area shape="poly" id="edge49_Node000002_Node000055" title=" " alt="" coords="2211,236,2327,288,2322,287,2211,241"/> <area shape="poly" id="edge37_Node000002_Node000054" title=" " alt="" coords="2292,220,2550,239,2709,258,2868,284,2883,289,2878,289,2867,289,2709,263,2550,244,2292,225"/>
<area shape="rect" id="Node000056" title=" " alt="" coords="2482,286,2622,327"/> <area shape="rect" id="Node000055" title=" " alt="" coords="1569,294,1740,320"/>
<area shape="poly" id="edge50_Node000002_Node000056" title=" " alt="" coords="2246,234,2470,286,2465,286,2246,240"/> <area shape="poly" id="edge38_Node000002_Node000055" title=" " alt="" coords="2128,231,1759,289,1734,293,1733,288,1758,284,2134,230"/>
<area shape="rect" id="Node000057" title=" " alt="" coords="2646,286,2773,327"/> <area shape="rect" id="Node000056" title=" " alt="" coords="2185,294,2367,320"/>
<area shape="poly" id="edge51_Node000002_Node000057" title=" " alt="" coords="2246,226,2419,248,2633,286,2628,286,2418,253,2246,231"/> <area shape="poly" id="edge39_Node000002_Node000056" title=" " alt="" coords="2227,236,2261,282,2256,280,2225,241"/>
<area shape="rect" id="Node000058" title=" " alt="" coords="3152,294,3312,320"/> <area shape="rect" id="Node000057" title=" " alt="" coords="2492,286,2631,327"/>
<area shape="poly" id="edge52_Node000002_Node000058" title=" " alt="" coords="2246,221,2611,244,2849,262,3090,284,3139,292,3134,292,3089,289,2849,267,2611,249,2246,226"/> <area shape="poly" id="edge40_Node000002_Node000057" title=" " alt="" coords="2292,236,2479,285,2474,284,2291,242"/>
<area shape="poly" id="edge3_Node000003_Node000004" title=" " alt="" coords="1551,325,1603,366,1598,365,1550,330"/> <area shape="rect" id="Node000058" title=" " alt="" coords="2655,286,2782,327"/>
<area shape="poly" id="edge31_Node000003_Node000012" title=" " alt="" coords="1442,321,1325,346,1195,381,1137,403,1090,427,1059,454,1051,468,1048,483,1048,574,1054,612,1067,649,1086,682,1104,711,1099,709,1081,685,1063,652,1048,614,1043,574,1043,482,1046,466,1055,451,1087,423,1135,398,1193,376,1324,341,1448,320"/> <area shape="poly" id="edge41_Node000002_Node000058" title=" " alt="" coords="2292,227,2449,250,2642,286,2637,286,2449,255,2292,232"/>
<area shape="poly" id="edge28_Node000003_Node000016" title=" " alt="" coords="1517,326,1448,459,1445,455,1513,329"/> <area shape="rect" id="Node000059" title=" " alt="" coords="3212,294,3372,320"/>
<area shape="poly" id="edge29_Node000003_Node000029" title=" " alt="" coords="1606,319,1718,342,1839,372,1848,377,1843,377,1838,378,1716,347,1606,325"/> <area shape="poly" id="edge42_Node000002_Node000059" title=" " alt="" coords="2292,218,2458,224,2684,236,2941,255,3200,284,3227,290,3222,290,3199,289,2940,260,2684,241,2458,229,2292,224"/>
<area shape="poly" id="edge30_Node000003_Node000042" title=" " alt="" coords="1606,324,1685,346,1766,372,1773,377,1767,377,1764,378,1683,351,1606,329"/> <area shape="poly" id="edge3_Node000003_Node000004" title=" " alt="" coords="1390,327,1337,368,1334,363,1385,329"/>
<area shape="poly" id="edge32_Node000003_Node000028" title=" " alt="" coords="1606,312,2496,390,2491,391,1606,318"/> <area shape="poly" id="edge16_Node000003_Node000017" title=" " alt="" coords="1422,325,1445,372,1462,395,1484,413,1659,438,1945,473,1939,473,1659,443,1481,418,1458,398,1441,374,1420,330"/>
<area shape="poly" id="edge33_Node000003_Node000022" title=" " alt="" coords="1478,327,1358,377,1354,379,1353,374,1356,373,1473,328"/> <area shape="poly" id="edge19_Node000003_Node000012" title=" " alt="" coords="1331,319,1211,344,1157,360,1120,377,1103,394,1089,415,1070,458,1067,454,1084,413,1099,391,1117,373,1155,355,1210,339,1337,318"/>
<area shape="rect" id="Node000005" href="$reaction_8h.html" title="Defines classes for representing and managing nuclear reactions." alt="" coords="1805,641,1976,667"/> <area shape="poly" id="edge17_Node000003_Node000031" title=" " alt="" coords="1478,325,1623,372,1630,377,1625,376,1622,378,1478,330"/>
<area shape="poly" id="edge4_Node000004_Node000005" title=" " alt="" coords="1695,414,1736,434,1775,462,1812,502,1842,547,1883,628,1878,625,1838,549,1808,505,1772,466,1734,439,1694,419"/> <area shape="poly" id="edge18_Node000003_Node000043" title=" " alt="" coords="1438,325,1493,373,1488,372,1437,330"/>
<area shape="poly" id="edge26_Node000004_Node000011" title=" " alt="" coords="1695,414,1752,435,1811,461,1844,482,1877,502,1967,540,2060,575,2244,636,2410,684,2538,718,2533,718,2409,689,2243,642,2058,580,1965,545,1875,507,1841,487,1808,466,1750,440,1695,419"/> <area shape="poly" id="edge20_Node000003_Node000030" title=" " alt="" coords="1455,325,1552,375,1546,375,1454,330"/>
<area shape="poly" id="edge25_Node000004_Node000012" title=" " alt="" coords="1620,415,1575,460,1519,506,1421,572,1321,632,1161,717,1159,712,1318,627,1418,568,1516,502,1572,456,1616,417"/> <area shape="poly" id="edge21_Node000003_Node000024" title=" " alt="" coords="1331,324,1068,378,1014,388,1013,383,1067,372,1337,323"/>
<area shape="poly" id="edge11_Node000004_Node000016" title=" " alt="" coords="1594,415,1477,467,1475,462,1588,417"/> <area shape="poly" id="edge4_Node000004_Node000017" title=" " alt="" coords="1370,404,1439,413,1944,473,1939,473,1438,418,1370,409"/>
<area shape="rect" id="Node000017" href="$screening__abstract_8h.html" title=" " alt="" coords="1631,552,1777,593"/> <area shape="rect" id="Node000018" title=" " alt="" coords="1719,560,1777,586"/>
<area shape="poly" id="edge14_Node000004_Node000017" title=" " alt="" coords="1629,415,1617,459,1615,481,1621,503,1636,524,1656,544,1651,542,1632,528,1616,505,1610,482,1611,458,1625,418"/> <area shape="poly" id="edge15_Node000004_Node000018" title=" " alt="" coords="1348,414,1707,555,1702,554,1347,419"/>
<area shape="rect" id="Node000018" href="$screening__types_8h.html" title=" " alt="" coords="1630,464,1762,504"/> <area shape="rect" id="Node000035" href="$blob_8h.html" title="Container class for managing multiple scratchpad instances." alt="" coords="1208,464,1386,504"/>
<area shape="poly" id="edge19_Node000004_Node000018" title=" " alt="" coords="1652,414,1677,452,1672,450,1650,419"/> <area shape="poly" id="edge8_Node000004_Node000035" title=" " alt="" coords="1299,414,1299,450,1295,446,1295,418"/>
<area shape="rect" id="Node000034" href="$blob_8h.html" title="Container class for managing multiple scratchpad instances." alt="" coords="1887,464,2065,504"/> <area shape="poly" id="edge12_Node000004_Node000011" title=" " alt="" coords="1370,412,1376,413,1571,462,1656,482,1767,502,1907,518,2017,523,2127,530,2267,550,2283,556,2278,555,2266,555,2127,535,2017,529,1907,524,1766,507,1655,487,1570,467,1375,418,1369,417"/>
<area shape="poly" id="edge22_Node000004_Node000034" title=" " alt="" coords="1710,412,1887,459,1881,459,1710,418"/> <area shape="poly" id="edge11_Node000004_Node000012" title=" " alt="" coords="1246,416,1105,470,1103,464,1241,417"/>
<area shape="rect" id="Node000041" title=" " alt="" coords="1286,471,1338,497"/> <area shape="rect" id="Node000042" title=" " alt="" coords="544,471,597,497"/>
<area shape="poly" id="edge27_Node000004_Node000041" title=" " alt="" coords="1562,409,1462,433,1350,466,1348,467,1347,462,1348,461,1461,428,1568,408"/> <area shape="poly" id="edge13_Node000004_Node000042" title=" " alt="" coords="1223,407,613,480,612,475,1226,403"/>
<area shape="poly" id="edge5_Node000005_Node000008" title=" " alt="" coords="1844,667,1637,721,1637,715,1839,668"/> <area shape="poly" id="edge14_Node000004_Node000014" title=" " alt="" coords="1370,410,1388,413,1555,437,1722,461,1766,472,1761,472,1721,466,1554,442,1387,418,1370,415"/>
<area shape="rect" id="Node000009" title=" " alt="" coords="2224,722,2386,748"/> <area shape="poly" id="edge5_Node000017_Node000016" title=" " alt="" coords="2052,495,2141,545,2135,544,2051,500"/>
<area shape="poly" id="edge6_Node000005_Node000009" title=" " alt="" coords="1955,665,2229,719,2224,719,1954,670"/> <area shape="rect" id="Node000015" title=" " alt="" coords="1970,560,2091,586"/>
<area shape="poly" id="edge7_Node000005_Node000011" title=" " alt="" coords="1977,662,2536,726,2531,726,1977,667"/> <area shape="poly" id="edge6_Node000017_Node000015" title=" " alt="" coords="2031,495,2032,546,2028,542,2027,499"/>
<area shape="poly" id="edge8_Node000005_Node000012" title=" " alt="" coords="1807,664,1166,732,1165,726,1802,664"/> <area shape="poly" id="edge7_Node000017_Node000018" title=" " alt="" coords="1992,497,1793,560,1792,555,1987,498"/>
<area shape="rect" id="Node000014" title=" " alt="" coords="1769,722,1890,748"/> <area shape="poly" id="edge9_Node000035_Node000011" title=" " alt="" coords="1386,488,1878,518,2125,536,2267,550,2284,556,2279,555,2266,555,2124,541,1878,523,1386,493"/>
<area shape="poly" id="edge9_Node000005_Node000014" title=" " alt="" coords="1884,666,1849,712,1847,707,1879,668"/> <area shape="rect" id="Node000021" title=" " alt="" coords="966,560,1034,586"/>
<area shape="poly" id="edge10_Node000005_Node000015" title=" " alt="" coords="1805,664,850,731,850,725,1804,659"/> <area shape="poly" id="edge10_Node000035_Node000021" title=" " alt="" coords="1232,505,1049,560,1048,555,1227,505"/>
<area shape="poly" id="edge13_Node000016_Node000014" title=" " alt="" coords="1453,495,1800,714,1794,713,1452,500"/> <area shape="poly" id="edge25_Node000044_Node000050" title=" " alt="" coords="3188,322,3200,324,3437,361,3637,387,3632,387,3436,366,3199,330,3188,327"/>
<area shape="poly" id="edge12_Node000016_Node000015" title=" " alt="" coords="1426,496,1382,546,1352,573,1317,595,1258,624,1196,649,1069,687,949,713,850,728,850,723,948,707,1067,682,1194,644,1256,619,1315,591,1348,568,1379,542,1421,499"/> <area shape="poly" id="edge27_Node000051_Node000052" title=" " alt="" coords="2976,408,2736,470,2735,464,2970,409"/>
<area shape="poly" id="edge15_Node000017_Node000005" title=" " alt="" coords="1751,591,1851,635,1846,634,1750,596"/> <area shape="poly" id="edge52_Node000060_Node000021" title=" " alt="" coords="432,326,406,350,386,376,380,396,386,414,415,452,446,473,484,487,533,502,589,519,647,534,763,553,869,564,953,571,947,571,868,569,763,559,646,539,587,525,531,507,483,492,444,478,411,456,381,417,375,396,381,374,402,346,428,329"/>
<area shape="poly" id="edge16_Node000017_Node000008" title=" " alt="" coords="1706,592,1703,630,1697,650,1687,668,1658,697,1622,718,1621,713,1655,693,1683,665,1692,648,1698,629,1703,595"/> <area shape="poly" id="edge46_Node000060_Node000012" title=" " alt="" coords="487,325,580,413,616,426,665,438,788,457,916,470,1020,480,1014,480,915,475,787,462,664,443,614,431,577,418,485,330"/>
<area shape="poly" id="edge18_Node000017_Node000012" title=" " alt="" coords="1678,593,1613,634,1534,669,1433,697,1330,716,1238,728,1166,734,1166,729,1237,723,1330,711,1432,692,1532,664,1611,629,1673,594"/> <area shape="poly" id="edge45_Node000060_Node000042" title=" " alt="" coords="479,325,558,458,553,457,477,330"/>
<area shape="poly" id="edge17_Node000017_Node000014" title=" " alt="" coords="1721,591,1813,711,1808,709,1718,596"/> <area shape="poly" id="edge47_Node000060_Node000024" title=" " alt="" coords="527,308,609,314,711,326,823,345,934,372,939,376,934,376,932,378,822,350,711,331,609,319,528,313"/>
<area shape="poly" id="edge20_Node000018_Node000017" title=" " alt="" coords="1700,503,1703,538,1699,535,1696,507"/> <area shape="rect" id="Node000026" title=" " alt="" coords="396,382,465,408"/>
<area shape="rect" id="Node000019" title=" " alt="" coords="1235,560,1304,586"/> <area shape="poly" id="edge48_Node000060_Node000026" title=" " alt="" coords="460,326,443,370,439,367,456,329"/>
<area shape="poly" id="edge21_Node000018_Node000019" title=" " alt="" coords="1632,498,1319,564,1318,559,1627,499"/> <area shape="rect" id="Node000061" title=" " alt="" coords="5,382,72,408"/>
<area shape="poly" id="edge23_Node000034_Node000011" title=" " alt="" coords="2026,502,2562,716,2557,716,2025,507"/> <area shape="poly" id="edge49_Node000060_Node000061" title=" " alt="" coords="404,316,258,338,171,356,85,378,80,379,77,375,83,372,170,350,258,333,408,313"/>
<area shape="poly" id="edge24_Node000034_Node000019" title=" " alt="" coords="1884,497,1319,568,1319,563,1889,496"/> <area shape="poly" id="edge50_Node000060_Node000062" title=" " alt="" coords="503,325,595,375,589,375,503,330"/>
<area shape="poly" id="edge37_Node000043_Node000050" title=" " alt="" coords="3078,318,3374,379,3369,378,3077,323"/> <area shape="rect" id="Node000063" title=" " alt="" coords="96,382,163,408"/>
<area shape="poly" id="edge39_Node000051_Node000052" title=" " alt="" coords="2961,408,2892,464,2890,459,2956,410"/> <area shape="poly" id="edge51_Node000060_Node000063" title=" " alt="" coords="404,320,299,345,177,378,172,379,169,375,175,372,297,339,408,318"/>
<area shape="poly" id="edge56_Node000059_Node000012" title=" " alt="" coords="512,325,514,369,519,393,528,414,563,469,598,511,634,544,673,570,762,614,876,664,928,686,983,703,1080,727,1075,726,982,708,927,691,874,669,760,618,670,575,631,548,594,515,559,472,523,417,514,394,509,370,510,330"/> <area shape="rect" id="Node000064" title=" " alt="" coords="187,382,234,408"/>
<area shape="poly" id="edge62_Node000059_Node000019" title=" " alt="" coords="517,325,531,371,543,394,560,414,583,429,612,443,686,470,775,494,874,515,1071,546,1223,566,1217,567,1070,551,873,520,774,499,684,476,609,448,580,434,557,418,539,397,526,373,515,330"/> <area shape="poly" id="edge53_Node000060_Node000064" title=" " alt="" coords="404,324,329,347,246,377,246,378,243,373,244,373,328,342,408,321"/>
<area shape="poly" id="edge55_Node000059_Node000041" title=" " alt="" coords="526,325,563,372,588,395,616,413,654,424,722,434,912,453,1273,480,1267,481,911,458,722,439,653,429,614,418,584,399,559,375,525,330"/> <area shape="rect" id="Node000065" title=" " alt="" coords="258,382,321,408"/>
<area shape="poly" id="edge57_Node000059_Node000022" title=" " alt="" coords="574,312,1272,387,1268,391,574,317"/> <area shape="poly" id="edge54_Node000060_Node000065" title=" " alt="" coords="424,329,329,378,326,373,429,326"/>
<area shape="rect" id="Node000024" title=" " alt="" coords="130,382,198,408"/> <area shape="rect" id="Node000066" title=" " alt="" coords="791,382,921,408"/>
<area shape="poly" id="edge58_Node000059_Node000024" title=" " alt="" coords="451,320,340,344,211,378,207,379,204,375,210,372,339,339,455,317"/> <area shape="poly" id="edge55_Node000060_Node000066" title=" " alt="" coords="527,319,789,378,784,380,527,324"/>
<area shape="rect" id="Node000060" title=" " alt="" coords="223,382,289,408"/> <area shape="poly" id="edge57_Node000067_Node000004" title=" " alt="" coords="1191,325,1256,367,1250,366,1189,330"/>
<area shape="poly" id="edge59_Node000059_Node000060" title=" " alt="" coords="451,327,302,378,299,379,296,374,300,372,455,324"/> <area shape="poly" id="edge58_Node000067_Node000035" title=" " alt="" coords="1167,325,1187,368,1215,414,1257,455,1252,453,1211,417,1182,371,1164,330"/>
<area shape="poly" id="edge60_Node000059_Node000061" title=" " alt="" coords="548,325,633,374,627,375,547,330"/> <area shape="poly" id="edge59_Node000067_Node000012" title=" " alt="" coords="1120,326,1092,350,1070,376,1063,396,1059,416,1059,458,1055,454,1054,416,1057,394,1066,374,1088,346,1116,329"/>
<area shape="rect" id="Node000062" title=" " alt="" coords="313,382,380,408"/> <area shape="poly" id="edge61_Node000067_Node000014" title=" " alt="" coords="1246,325,1314,345,1382,373,1400,383,1412,394,1424,404,1441,413,1516,437,1578,446,1641,450,1722,461,1766,472,1761,472,1721,466,1641,456,1578,451,1515,443,1439,418,1421,408,1408,398,1397,388,1380,377,1312,350,1246,330"/>
<area shape="poly" id="edge61_Node000059_Node000062" title=" " alt="" coords="473,329,385,377,382,373,478,326"/> <area shape="poly" id="edge60_Node000067_Node000024" title=" " alt="" coords="1119,327,1012,378,1011,373,1114,328"/>
<area shape="rect" id="Node000063" title=" " alt="" coords="405,382,451,408"/> <area shape="poly" id="edge62_Node000067_Node000066" title=" " alt="" coords="1092,327,913,380,912,375,1087,328"/>
<area shape="poly" id="edge63_Node000059_Node000063" title=" " alt="" coords="496,326,452,373,449,369,492,329"/> <area shape="poly" id="edge79_Node000072_Node000004" title=" " alt="" coords="1913,317,1385,386,1384,380,1918,317"/>
<area shape="rect" id="Node000064" title=" " alt="" coords="43,382,106,408"/> <area shape="poly" id="edge78_Node000072_Node000017" title=" " alt="" coords="2018,325,2041,347,2058,374,2063,396,2061,419,2046,460,2042,456,2056,418,2058,397,2053,376,2037,350,2016,330"/>
<area shape="poly" id="edge64_Node000059_Node000064" title=" " alt="" coords="450,315,299,337,208,354,118,378,115,378,111,374,117,372,207,349,298,332,455,312"/> <area shape="poly" id="edge75_Node000072_Node000016" title=" " alt="" coords="2040,325,2077,345,2110,373,2138,413,2159,457,2182,539,2178,536,2154,459,2133,416,2106,377,2074,350,2039,330"/>
<area shape="rect" id="Node000065" title=" " alt="" coords="726,382,856,408"/> <area shape="poly" id="edge88_Node000072_Node000015" title=" " alt="" coords="2023,325,2053,346,2079,373,2104,415,2116,463,2120,485,2116,505,2095,533,2069,554,2067,549,2091,529,2111,503,2115,485,2111,464,2099,417,2075,377,2049,351,2022,330"/>
<area shape="poly" id="edge65_Node000059_Node000065" title=" " alt="" coords="574,324,740,377,735,378,574,329"/> <area shape="poly" id="edge81_Node000072_Node000035" title=" " alt="" coords="1982,326,1956,375,1936,399,1912,418,1872,435,1817,449,1682,468,1533,479,1402,484,1401,479,1533,474,1681,463,1816,444,1870,430,1909,413,1933,395,1952,372,1978,329"/>
<area shape="poly" id="edge67_Node000066_Node000004" title=" " alt="" coords="1219,322,1553,379,1547,380,1219,328"/> <area shape="poly" id="edge83_Node000072_Node000011" title=" " alt="" coords="2047,325,2095,346,2143,373,2197,416,2246,464,2318,549,2313,547,2242,467,2193,420,2140,377,2093,350,2046,330"/>
<area shape="poly" id="edge69_Node000066_Node000012" title=" " alt="" coords="1078,326,1050,350,1029,376,996,454,988,488,985,521,988,554,996,588,1029,665,1051,693,1082,716,1077,715,1048,697,1024,668,991,590,982,555,980,521,983,487,991,452,1024,374,1046,346,1073,329"/> <area shape="poly" id="edge85_Node000072_Node000021" title=" " alt="" coords="1994,326,1998,370,1995,394,1986,417,1963,443,1928,469,1890,492,1858,507,1786,525,1690,540,1457,560,1222,570,1050,574,1050,568,1222,565,1457,554,1690,535,1785,520,1856,502,1887,487,1925,465,1960,439,1982,414,1989,393,1992,370,1990,330"/>
<area shape="poly" id="edge68_Node000066_Node000034" title=" " alt="" coords="1219,310,1348,318,1493,330,1627,348,1681,360,1722,373,1739,382,1749,392,1759,403,1773,413,1826,438,1883,459,1877,459,1824,443,1771,418,1755,407,1745,396,1735,386,1720,377,1680,365,1626,353,1492,335,1347,323,1219,315"/> <area shape="poly" id="edge84_Node000072_Node000012" title=" " alt="" coords="1913,315,1214,378,1177,395,1141,417,1085,463,1083,458,1138,413,1174,390,1212,372,1918,314"/>
<area shape="poly" id="edge70_Node000066_Node000022" title=" " alt="" coords="1162,325,1274,376,1268,376,1161,330"/> <area shape="poly" id="edge87_Node000072_Node000014" title=" " alt="" coords="1988,326,1980,372,1971,396,1957,417,1935,437,1911,453,1861,474,1859,468,1908,448,1932,433,1952,414,1966,393,1975,370,1985,329"/>
<area shape="poly" id="edge71_Node000066_Node000065" title=" " alt="" coords="1040,329,852,381,850,376,1045,327"/> <area shape="poly" id="edge86_Node000072_Node000031" title=" " alt="" coords="1918,324,1824,349,1725,378,1718,380,1717,374,1723,372,1823,344,1913,325"/>
<area shape="poly" id="edge89_Node000071_Node000004" title=" " alt="" coords="1807,327,1702,371,1700,366,1802,328"/> <area shape="poly" id="edge82_Node000072_Node000024" title=" " alt="" coords="1912,314,1752,330,1435,351,1119,378,1014,391,1013,385,1118,372,1435,346,1752,324,1918,314"/>
<area shape="poly" id="edge88_Node000071_Node000005" title=" " alt="" coords="1926,322,1938,324,1971,329,2002,330,2057,328,2082,330,2106,336,2129,350,2153,373,2173,406,2178,438,2172,470,2154,506,2136,532,2114,555,2063,592,2008,620,1956,639,1955,633,2006,615,2060,588,2111,551,2132,528,2150,503,2167,469,2173,438,2168,408,2149,377,2126,354,2104,341,2081,335,2057,333,2002,336,1971,335,1937,330,1926,327"/> <area shape="poly" id="edge80_Node000072_Node000051" title=" " alt="" coords="2060,313,2173,324,2599,360,2935,388,2930,388,2598,365,2173,330,2060,319"/>
<area shape="poly" id="edge83_Node000071_Node000008" title=" " alt="" coords="1908,325,1981,357,2017,377,2050,400,2077,424,2093,450,2095,478,2089,492,2079,506,2063,519,2042,528,1988,537,1922,538,1851,534,1780,530,1713,530,1658,537,1637,544,1620,554,1606,570,1595,588,1580,630,1575,671,1573,709,1569,705,1569,671,1575,628,1590,586,1602,567,1617,550,1635,539,1657,532,1713,525,1780,525,1851,529,1923,533,1987,532,2040,523,2060,514,2075,502,2085,490,2089,477,2088,452,2073,427,2047,404,2015,382,1978,362,1908,330"/> <area shape="poly" id="edge77_Node000072_Node000052" title=" " alt="" coords="2061,316,2157,337,2209,353,2260,373,2277,383,2289,394,2300,404,2317,413,2384,437,2453,454,2584,476,2578,476,2452,459,2382,442,2315,418,2297,408,2285,398,2274,387,2257,377,2208,358,2156,342,2060,321"/>
<area shape="poly" id="edge85_Node000071_Node000009" title=" " alt="" coords="1926,322,1938,324,2016,334,2079,335,2140,343,2174,354,2212,373,2250,394,2281,415,2301,442,2306,461,2308,483,2308,574,2307,708,2303,705,2303,574,2303,483,2301,462,2296,445,2277,419,2247,398,2209,377,2172,359,2139,348,2079,340,2016,339,1937,330,1926,327"/> <area shape="poly" id="edge74_Node000072_Node000008" title=" " alt="" coords="2061,321,2079,324,2353,379,2348,379,2078,330,2060,326"/>
<area shape="poly" id="edge95_Node000071_Node000011" title=" " alt="" coords="1926,322,1938,324,2034,335,2116,338,2258,332,2326,331,2398,335,2478,348,2571,372,2637,388,2696,402,2720,413,2738,429,2750,451,2755,482,2755,574,2752,598,2743,621,2715,661,2679,693,2643,717,2641,712,2676,688,2711,657,2739,618,2746,597,2749,574,2749,483,2745,453,2734,432,2717,417,2694,407,2636,393,2570,378,2477,353,2397,340,2326,336,2258,338,2116,343,2033,340,1937,330,1926,328"/> <area shape="rect" id="Node000009" title=" " alt="" coords="1736,382,1898,408"/>
<area shape="poly" id="edge96_Node000071_Node000012" title=" " alt="" coords="1778,314,1571,338,1468,356,1427,366,1396,377,1382,386,1374,396,1352,418,1325,432,1301,440,1280,448,1256,466,1231,494,1209,526,1172,594,1147,658,1130,709,1127,705,1142,656,1168,592,1204,523,1227,491,1253,462,1277,443,1300,435,1323,427,1349,414,1370,392,1379,382,1393,373,1425,361,1467,351,1571,333,1783,313"/> <area shape="poly" id="edge76_Node000072_Node000009" title=" " alt="" coords="1952,327,1855,378,1854,373,1947,328"/>
<area shape="poly" id="edge99_Node000071_Node000014" title=" " alt="" coords="1926,322,1938,324,1976,329,2011,330,2073,325,2101,326,2129,332,2156,347,2182,373,2201,403,2209,433,2208,462,2198,490,2181,517,2160,544,2106,595,2050,636,1990,671,1931,698,1880,719,1879,714,1929,694,1987,666,2047,632,2102,591,2156,540,2177,514,2193,487,2202,461,2204,433,2196,405,2178,377,2152,352,2127,337,2101,331,2073,330,2011,335,1976,335,1937,330,1926,327"/> <area shape="poly" id="edge90_Node000085_Node000002" title=" " alt="" coords="1840,139,2119,197,2114,198,1839,144"/>
<area shape="poly" id="edge84_Node000071_Node000015" title=" " alt="" coords="1778,315,1490,346,1352,362,1274,378,1199,411,1125,452,1054,497,988,544,876,635,798,706,796,701,872,631,985,540,1051,492,1122,447,1196,406,1273,372,1351,357,1490,340,1783,314"/> <area shape="poly" id="edge94_Node000085_Node000021" title=" " alt="" coords="1656,129,1459,147,1211,177,1088,198,977,223,886,254,850,270,821,288,788,317,764,346,757,361,755,378,757,395,765,414,782,440,803,464,852,503,904,532,953,556,948,555,902,537,849,507,799,467,778,444,760,417,752,396,749,378,752,360,759,343,784,313,818,284,847,266,884,249,976,218,1087,193,1210,172,1458,142,1661,128"/>
<area shape="poly" id="edge87_Node000071_Node000016" title=" " alt="" coords="1778,314,1671,336,1611,353,1555,377,1509,413,1457,462,1454,458,1505,409,1552,373,1610,348,1670,331,1783,313"/> <area shape="poly" id="edge93_Node000085_Node000024" title=" " alt="" coords="1656,132,1494,153,1298,184,1203,205,1118,229,1049,257,1022,272,1002,288,989,306,980,326,973,368,969,365,975,324,984,303,998,284,1019,268,1047,252,1116,224,1202,200,1297,179,1493,147,1661,131"/>
<area shape="poly" id="edge90_Node000071_Node000017" title=" " alt="" coords="1926,322,2052,353,2123,373,2144,407,2151,440,2145,473,2123,506,2101,523,2069,537,1983,557,1885,568,1793,573,1792,567,1884,562,1982,551,2067,532,2098,519,2119,503,2140,471,2146,440,2139,409,2120,377,2051,358,1926,328"/> <area shape="poly" id="edge92_Node000085_Node000051" title=" " alt="" coords="1839,123,2205,135,2445,147,2696,163,2936,184,3145,211,3231,227,3302,244,3354,263,3386,284,3398,301,3403,316,3403,330,3396,342,3369,361,3329,375,3278,385,3222,392,3113,397,3113,392,3222,386,3277,380,3327,370,3367,357,3392,339,3397,328,3398,317,3393,303,3382,288,3352,268,3300,249,3230,232,3144,216,2936,190,2695,168,2445,152,2204,140,1840,128"/>
<area shape="poly" id="edge91_Node000071_Node000018" title=" " alt="" coords="1889,325,1915,344,1938,366,1949,391,1949,404,1942,417,1916,436,1875,452,1777,474,1776,469,1874,447,1914,432,1938,414,1943,403,1944,392,1933,369,1912,348,1888,330"/> <area shape="poly" id="edge91_Node000085_Node000009" title=" " alt="" coords="1692,149,1632,187,1603,207,1578,229,1559,253,1548,277,1547,301,1559,325,1580,333,1627,347,1751,378,1745,378,1626,352,1578,338,1555,329,1542,302,1543,275,1554,250,1574,225,1600,203,1629,182,1687,151"/>
<area shape="poly" id="edge97_Node000071_Node000019" title=" " alt="" coords="1778,318,1649,343,1499,378,1275,466,1267,484,1263,504,1265,546,1261,543,1258,504,1262,482,1272,462,1498,372,1648,337,1783,317"/> <area shape="poly" id="edge98_Node000091_Node000011" title=" " alt="" coords="3691,230,3634,385,3602,466,3582,506,3555,519,3513,530,3391,547,3232,559,3050,567,2680,574,2404,575,2404,569,2680,569,3050,562,3232,554,3391,541,3512,524,3553,514,3578,502,3597,464,3629,383,3687,233"/>
<area shape="poly" id="edge93_Node000071_Node000034" title=" " alt="" coords="1924,325,1959,345,1986,374,1994,392,1996,412,1990,451,1986,447,1991,412,1989,393,1982,376,1956,349,1923,330"/> <area shape="poly" id="edge100_Node000091_Node000050" title=" " alt="" coords="3696,229,3711,362,3707,358,3693,233"/>
<area shape="poly" id="edge98_Node000071_Node000029" title=" " alt="" coords="1863,325,1881,370,1876,367,1860,330"/> <area shape="poly" id="edge99_Node000091_Node000059" title=" " alt="" coords="3639,231,3364,293,3363,287,3634,232"/>
<area shape="poly" id="edge94_Node000071_Node000022" title=" " alt="" coords="1778,312,1588,333,1472,352,1358,378,1352,379,1351,374,1357,372,1471,347,1587,328,1783,311"/>
<area shape="poly" id="edge92_Node000071_Node000051" title=" " alt="" coords="1926,323,1938,324,2072,341,2186,350,2380,355,2575,357,2689,362,2824,372,2886,381,2881,382,2824,378,2689,368,2575,363,2380,361,2185,355,2071,346,1937,330,1926,328"/>
<area shape="poly" id="edge86_Node000071_Node000052" title=" " alt="" coords="1926,323,1938,324,2019,330,2122,331,2360,327,2482,328,2596,334,2695,348,2737,359,2772,373,2798,390,2820,411,2853,458,2848,456,2816,415,2795,394,2769,377,2735,364,2694,353,2596,339,2482,333,2360,333,2122,337,2019,336,1937,330,1926,328"/>
<area shape="poly" id="edge101_Node000085_Node000002" title=" " alt="" coords="2167,148,2167,184,2163,181,2164,152"/>
<area shape="poly" id="edge102_Node000085_Node000009" title=" " alt="" coords="2256,134,2352,147,2450,154,2575,157,2866,164,3011,175,3143,197,3201,212,3251,232,3294,256,3326,285,3348,314,3364,341,3373,368,3377,394,3374,419,3367,442,3355,464,3338,486,3292,524,3231,559,3159,590,3078,617,2990,641,2898,661,2712,694,2540,716,2402,729,2402,724,2539,711,2711,689,2897,656,2989,636,3076,612,3157,585,3229,554,3289,520,3334,482,3350,461,3362,440,3369,418,3371,394,3368,370,3359,344,3344,317,3322,288,3291,260,3249,237,3199,217,3142,202,3011,180,2866,169,2575,162,2450,160,2352,152,2256,139"/>
<area shape="poly" id="edge105_Node000085_Node000019" title=" " alt="" coords="2072,129,1804,152,1460,186,1294,207,1152,232,1046,259,1011,273,991,288,978,308,972,327,972,347,977,366,1001,405,1038,442,1085,476,1136,506,1229,554,1223,553,1133,511,1082,480,1035,446,996,408,972,368,967,348,967,327,974,305,987,284,1009,269,1044,254,1151,226,1293,202,1459,180,1803,146,2077,128"/>
<area shape="poly" id="edge104_Node000085_Node000022" title=" " alt="" coords="2072,133,1905,157,1700,190,1600,211,1509,234,1433,260,1379,289,1360,306,1344,327,1323,370,1319,366,1340,324,1356,302,1376,284,1431,255,1507,229,1598,206,1699,185,1904,152,2077,132"/>
<area shape="poly" id="edge103_Node000085_Node000051" title=" " alt="" coords="2256,136,2757,221,2989,263,3091,284,3099,299,3099,313,3093,326,3083,338,3053,360,3019,378,3017,373,3050,356,3079,335,3089,323,3094,312,3094,300,3088,288,2988,268,2757,227,2256,141"/>
<area shape="poly" id="edge109_Node000091_Node000011" title=" " alt="" coords="3554,229,3555,394,3555,575,3547,592,3525,608,3491,623,3447,636,3333,661,3196,682,2905,714,2675,732,2675,727,2904,709,3196,677,3332,656,3445,631,3489,618,3522,603,3543,589,3549,573,3549,394,3550,233"/>
<area shape="poly" id="edge111_Node000091_Node000050" title=" " alt="" coords="3547,230,3471,364,3468,359,3543,233"/>
<area shape="poly" id="edge110_Node000091_Node000058" title=" " alt="" coords="3509,231,3292,292,3291,287,3504,232"/>
</map> </map>

View File

@@ -1 +1 @@
251fe1728f099374d84bf5594bd88691 dd373c71e0ec465ef3f2df69a0ac821b

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 77 KiB

After

Width:  |  Height:  |  Size: 72 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 73 KiB

After

Width:  |  Height:  |  Size: 68 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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>
@@ -118,6 +118,8 @@ $(function(){initNavTree('_point_solver_8h.html',''); initResizable(true); });
<code>#include &lt;string&gt;</code><br /> <code>#include &lt;string&gt;</code><br />
<code>#include &lt;vector&gt;</code><br /> <code>#include &lt;vector&gt;</code><br />
<code>#include &lt;tuple&gt;</code><br /> <code>#include &lt;tuple&gt;</code><br />
<code>#include &lt;span&gt;</code><br />
<code>#include &lt;optional&gt;</code><br />
<code>#include &lt;cvode/cvode.h&gt;</code><br /> <code>#include &lt;cvode/cvode.h&gt;</code><br />
<code>#include &lt;sundials/sundials_types.h&gt;</code><br /> <code>#include &lt;sundials/sundials_types.h&gt;</code><br />
<code>#include &lt;sundials/sundials_context.h&gt;</code><br /> <code>#include &lt;sundials/sundials_context.h&gt;</code><br />

View File

@@ -1,144 +1,149 @@
<map id="src/include/gridfire/solver/strategies/PointSolver.h" name="src/include/gridfire/solver/strategies/PointSolver.h"> <map id="src/include/gridfire/solver/strategies/PointSolver.h" name="src/include/gridfire/solver/strategies/PointSolver.h">
<area shape="rect" id="Node000001" title=" " alt="" coords="2043,5,2246,46"/> <area shape="rect" id="Node000001" title=" " alt="" coords="2592,5,2794,46"/>
<area shape="rect" id="Node000002" href="$strategy__abstract_8h.html" title=" " alt="" coords="1748,94,1909,135"/> <area shape="rect" id="Node000002" href="$strategy__abstract_8h.html" title=" " alt="" coords="2293,94,2454,135"/>
<area shape="poly" id="edge1_Node000001_Node000002" title=" " alt="" coords="2075,46,1915,92,1914,87,2070,47"/> <area shape="poly" id="edge1_Node000001_Node000002" title=" " alt="" coords="2623,46,2461,92,2460,87,2618,47"/>
<area shape="rect" id="Node000003" href="$engine__abstract_8h.html" title="Abstract interfaces for reaction network engines in GridFire." alt="" coords="1115,183,1259,223"/> <area shape="rect" id="Node000003" href="$engine__abstract_8h.html" title="Abstract interfaces for reaction network engines in GridFire." alt="" coords="1725,183,1870,223"/>
<area shape="poly" id="edge61_Node000001_Node000003" title=" " alt="" coords="2040,35,1826,58,1699,75,1573,97,1404,137,1261,180,1259,175,1403,132,1572,91,1698,70,1826,53,2046,34"/> <area shape="poly" id="edge62_Node000001_Node000003" title=" " alt="" coords="2589,37,2409,62,2199,97,2025,138,1875,180,1874,175,2023,133,2198,91,2408,57,2594,36"/>
<area shape="rect" id="Node000007" title=" " alt="" coords="472,530,678,556"/> <area shape="rect" id="Node000007" title=" " alt="" coords="2139,530,2344,556"/>
<area shape="poly" id="edge80_Node000001_Node000007" title=" " alt="" coords="2040,27,1614,31,1333,37,1042,51,770,72,649,86,543,103,455,123,388,147,363,159,345,173,335,187,331,202,331,381,335,410,347,434,365,456,387,475,442,504,500,526,495,525,440,509,385,479,361,460,343,437,330,411,326,382,326,201,330,185,342,169,360,155,385,142,453,118,542,98,649,81,770,67,1042,45,1332,32,1614,25,2046,25"/> <area shape="poly" id="edge83_Node000001_Node000007" title=" " alt="" coords="2589,34,2506,45,2416,57,2337,74,2306,85,2283,96,2254,118,2234,140,2223,166,2220,202,2220,382,2226,454,2237,516,2233,513,2221,454,2215,382,2215,202,2218,165,2230,137,2250,114,2280,92,2303,80,2335,69,2415,52,2506,39,2595,33"/>
<area shape="rect" id="Node000011" title=" " alt="" coords="1618,530,1676,556"/> <area shape="rect" id="Node000011" title=" " alt="" coords="2369,530,2426,556"/>
<area shape="poly" id="edge85_Node000001_Node000011" title=" " alt="" coords="2040,33,1957,42,1868,54,1789,72,1760,83,1738,96,1716,119,1705,142,1701,168,1700,202,1700,382,1697,420,1687,456,1662,518,1659,514,1682,455,1692,419,1695,382,1695,202,1696,168,1700,140,1712,116,1735,92,1757,78,1788,67,1867,49,1957,37,2045,32"/> <area shape="poly" id="edge88_Node000001_Node000011" title=" " alt="" coords="2691,44,2678,115,2671,202,2670,383,2643,406,2580,444,2434,525,2433,520,2577,440,2640,402,2666,381,2665,202,2673,114,2687,48"/>
<area shape="rect" id="Node000015" href="$types_2types_8h.html" title=" " alt="" coords="1517,279,1660,304"/> <area shape="rect" id="Node000013" title=" " alt="" coords="2450,530,2516,556"/>
<area shape="poly" id="edge62_Node000001_Node000015" title=" " alt="" coords="2041,31,1944,40,1838,51,1744,70,1707,82,1681,96,1662,113,1645,134,1620,180,1604,226,1594,266,1591,262,1599,224,1615,177,1641,131,1658,110,1678,92,1705,77,1742,65,1837,46,1944,34,2046,30"/> <area shape="poly" id="edge91_Node000001_Node000013" title=" " alt="" coords="2700,44,2714,114,2721,202,2721,382,2721,410,2717,434,2707,455,2688,476,2653,503,2612,522,2570,533,2532,540,2531,535,2569,528,2610,517,2650,498,2685,472,2703,452,2712,432,2715,410,2716,382,2716,202,2708,115,2696,48"/>
<area shape="rect" id="Node000021" title=" " alt="" coords="2595,449,2648,474"/> <area shape="rect" id="Node000016" href="$types_2types_8h.html" title=" " alt="" coords="1056,279,1200,304"/>
<area shape="poly" id="edge84_Node000001_Node000021" title=" " alt="" coords="2149,44,2163,90,2176,113,2193,133,2220,151,2245,160,2270,163,2294,164,2347,163,2376,168,2408,180,2424,191,2434,202,2444,212,2459,221,2509,232,2576,235,2735,228,2815,227,2889,230,2949,243,2973,255,2992,270,3007,290,3012,310,3010,329,3000,346,2984,362,2963,376,2910,401,2846,421,2779,437,2664,457,2664,452,2778,432,2844,416,2908,396,2961,371,2981,358,2996,343,3005,327,3007,311,3002,293,2988,273,2970,259,2948,248,2888,236,2815,232,2735,234,2576,240,2509,237,2457,226,2441,216,2430,205,2421,195,2406,185,2375,174,2346,169,2294,169,2269,169,2244,165,2217,155,2189,137,2171,116,2158,92,2146,49"/> <area shape="poly" id="edge63_Node000001_Node000016" title=" " alt="" coords="2589,32,2381,49,2095,76,1935,96,1771,120,1606,150,1446,185,1295,230,1173,275,1171,270,1293,225,1445,180,1605,145,1770,115,1935,91,2094,71,2381,43,2594,31"/>
<area shape="rect" id="Node000027" title=" " alt="" coords="1786,368,1836,393"/> <area shape="rect" id="Node000023" title=" " alt="" coords="787,449,840,474"/>
<area shape="poly" id="edge86_Node000001_Node000027" title=" " alt="" coords="2129,45,2088,96,2043,161,2023,191,1994,225,1914,302,1841,360,1839,355,1910,298,1991,222,2019,187,2038,158,2084,92,2124,48"/> <area shape="poly" id="edge87_Node000001_Node000023" title=" " alt="" coords="2589,29,1981,42,1558,54,1115,70,695,93,341,122,202,140,97,159,30,180,13,191,8,202,8,293,15,320,33,344,63,365,103,383,150,399,205,413,327,434,456,447,582,454,774,460,769,461,582,459,456,452,326,439,203,418,149,405,101,388,60,369,30,348,10,322,3,293,3,201,9,188,28,176,96,154,202,134,340,117,694,88,1115,65,1558,48,1981,37,2594,28"/>
<area shape="rect" id="Node000028" title=" " alt="" coords="1862,368,1939,393"/> <area shape="rect" id="Node000029" title=" " alt="" coords="2559,368,2609,393"/>
<area shape="poly" id="edge82_Node000001_Node000028" title=" " alt="" coords="2138,45,2098,127,2039,225,1979,300,1925,359,1922,354,1975,296,2034,222,2093,124,2134,48"/> <area shape="poly" id="edge89_Node000001_Node000029" title=" " alt="" coords="2680,45,2652,95,2627,166,2609,238,2589,354,2585,350,2603,237,2622,164,2647,93,2676,48"/>
<area shape="rect" id="Node000041" title=" " alt="" coords="1938,190,1980,216"/> <area shape="rect" id="Node000030" title=" " alt="" coords="2457,368,2535,393"/>
<area shape="poly" id="edge83_Node000001_Node000041" title=" " alt="" coords="2077,46,2036,68,2001,96,1988,114,1978,135,1965,177,1961,173,1973,133,1983,111,1997,92,2033,64,2072,48"/> <area shape="poly" id="edge85_Node000001_Node000030" title=" " alt="" coords="2674,45,2631,96,2590,165,2554,238,2507,355,2503,351,2549,236,2585,163,2627,92,2669,48"/>
<area shape="rect" id="Node000042" href="$exceptions_8h.html" title=" " alt="" coords="2268,183,2395,223"/> <area shape="rect" id="Node000042" title=" " alt="" coords="2487,190,2529,216"/>
<area shape="poly" id="edge63_Node000001_Node000042" title=" " alt="" coords="2142,45,2139,90,2143,113,2153,133,2173,154,2198,170,2225,181,2255,192,2249,192,2223,186,2195,174,2170,158,2149,136,2138,114,2134,90,2138,49"/> <area shape="poly" id="edge86_Node000001_Node000042" title=" " alt="" coords="2626,46,2585,68,2550,96,2537,114,2526,135,2514,177,2510,173,2521,133,2532,111,2546,92,2582,64,2621,47"/>
<area shape="rect" id="Node000050" href="$config_8h.html" title=" " alt="" coords="2258,102,2407,127"/> <area shape="rect" id="Node000043" href="$exceptions_8h.html" title=" " alt="" coords="499,183,626,223"/>
<area shape="poly" id="edge78_Node000001_Node000050" title=" " alt="" coords="2187,44,2295,95,2290,94,2187,49"/> <area shape="poly" id="edge64_Node000001_Node000043" title=" " alt="" coords="2589,28,2354,35,2023,46,1642,66,1255,97,1083,117,913,142,642,189,641,184,912,137,1082,112,1254,91,1641,60,2022,41,2354,30,2595,28"/>
<area shape="rect" id="Node000051" title=" " alt="" coords="2469,190,2620,216"/> <area shape="rect" id="Node000050" href="$config_8h.html" title=" " alt="" coords="2807,102,2956,127"/>
<area shape="poly" id="edge81_Node000001_Node000051" title=" " alt="" coords="2158,44,2195,90,2220,113,2247,132,2331,153,2474,186,2469,186,2330,159,2245,137,2216,117,2191,93,2156,49"/> <area shape="poly" id="edge81_Node000001_Node000050" title=" " alt="" coords="2736,44,2844,95,2839,94,2736,49"/>
<area shape="rect" id="Node000052" title=" " alt="" coords="2431,102,2538,127"/> <area shape="rect" id="Node000051" title=" " alt="" coords="2781,190,2931,216"/>
<area shape="poly" id="edge87_Node000001_Node000052" title=" " alt="" coords="2229,44,2420,91,2432,97,2426,97,2418,97,2229,49"/> <area shape="poly" id="edge84_Node000001_Node000051" title=" " alt="" coords="2712,44,2837,179,2832,178,2710,49"/>
<area shape="rect" id="Node000053" title=" " alt="" coords="2562,102,2733,127"/> <area shape="rect" id="Node000052" title=" " alt="" coords="2981,102,3030,127"/>
<area shape="poly" id="edge88_Node000001_Node000053" title=" " alt="" coords="2246,40,2550,91,2574,98,2569,98,2549,97,2246,46"/> <area shape="poly" id="edge90_Node000001_Node000052" title=" " alt="" coords="2795,43,2881,64,2969,91,2973,95,2967,94,2967,97,2879,69,2795,49"/>
<area shape="rect" id="Node000054" title=" " alt="" coords="2757,102,2940,127"/> <area shape="rect" id="Node000053" title=" " alt="" coords="3054,102,3160,127"/>
<area shape="poly" id="edge89_Node000001_Node000054" title=" " alt="" coords="2246,34,2475,57,2745,91,2774,98,2768,98,2744,97,2474,62,2246,39"/> <area shape="poly" id="edge92_Node000001_Node000053" title=" " alt="" coords="2795,41,2914,63,3043,91,3056,97,3051,97,3042,97,2913,68,2795,46"/>
<area shape="rect" id="Node000055" title=" " alt="" coords="2964,94,3104,135"/> <area shape="rect" id="Node000054" title=" " alt="" coords="3184,102,3355,127"/>
<area shape="poly" id="edge90_Node000001_Node000055" title=" " alt="" coords="2246,28,2556,47,2750,66,2951,94,2946,94,2750,71,2556,53,2246,33"/> <area shape="poly" id="edge93_Node000001_Node000054" title=" " alt="" coords="2795,37,2972,61,3172,91,3198,98,3192,98,3172,97,2971,66,2795,42"/>
<area shape="rect" id="Node000056" title=" " alt="" coords="3128,94,3255,135"/> <area shape="rect" id="Node000055" title=" " alt="" coords="3380,102,3562,127"/>
<area shape="poly" id="edge91_Node000001_Node000056" title=" " alt="" coords="2246,25,2410,30,2624,41,2866,60,3115,94,3110,94,2865,66,2624,46,2410,35,2246,31"/> <area shape="poly" id="edge94_Node000001_Node000055" title=" " alt="" coords="2795,32,3055,55,3367,91,3397,98,3392,98,3366,97,3054,60,2795,37"/>
<area shape="rect" id="Node000057" title=" " alt="" coords="3279,102,3439,127"/> <area shape="rect" id="Node000056" title=" " alt="" coords="3586,94,3726,135"/>
<area shape="poly" id="edge92_Node000001_Node000057" title=" " alt="" coords="2246,26,2436,30,2690,41,2978,61,3268,91,3295,98,3289,98,3267,97,2977,66,2690,46,2436,36,2246,31"/> <area shape="poly" id="edge95_Node000001_Node000056" title=" " alt="" coords="2795,27,2944,33,3135,45,3351,64,3573,94,3568,94,3350,69,3135,50,2944,39,2795,32"/>
<area shape="poly" id="edge2_Node000002_Node000003" title=" " alt="" coords="1745,127,1276,193,1275,187,1751,126"/> <area shape="rect" id="Node000057" title=" " alt="" coords="3750,94,3877,135"/>
<area shape="poly" id="edge58_Node000002_Node000011" title=" " alt="" coords="1815,134,1795,165,1774,203,1758,245,1751,291,1751,382,1749,410,1744,432,1719,476,1699,501,1676,522,1674,517,1695,497,1714,473,1739,430,1744,409,1746,382,1746,290,1753,244,1769,200,1791,163,1810,137"/> <area shape="poly" id="edge96_Node000001_Node000057" title=" " alt="" coords="2795,25,2971,29,3203,39,3466,59,3601,73,3737,94,3731,94,3600,78,3465,64,3202,44,2970,34,2795,30"/>
<area shape="poly" id="edge55_Node000002_Node000015" title=" " alt="" coords="1801,134,1731,185,1617,271,1614,267,1728,181,1796,136"/> <area shape="rect" id="Node000058" title=" " alt="" coords="3901,102,4062,127"/>
<area shape="poly" id="edge60_Node000002_Node000021" title=" " alt="" coords="1843,133,1873,172,1915,220,1968,269,2028,310,2103,344,2181,373,2260,396,2338,415,2479,441,2583,457,2577,456,2478,446,2337,421,2259,402,2179,378,2101,349,2026,314,1965,273,1912,224,1869,175,1841,138"/> <area shape="poly" id="edge97_Node000001_Node000058" title=" " alt="" coords="2795,25,2997,29,3269,39,3578,59,3735,73,3890,91,3917,98,3912,98,3889,97,3735,79,3577,64,3269,45,2997,34,2795,30"/>
<area shape="poly" id="edge59_Node000002_Node000027" title=" " alt="" coords="1829,133,1815,354,1811,351,1825,137"/> <area shape="poly" id="edge2_Node000002_Node000003" title=" " alt="" coords="2290,128,1885,191,1884,186,2295,127"/>
<area shape="poly" id="edge56_Node000002_Node000028" title=" " alt="" coords="1835,133,1896,354,1891,351,1832,137"/> <area shape="poly" id="edge59_Node000002_Node000011" title=" " alt="" coords="2376,133,2398,516,2394,513,2372,137"/>
<area shape="poly" id="edge57_Node000002_Node000041" title=" " alt="" coords="1859,133,1931,182,1925,181,1858,138"/> <area shape="poly" id="edge56_Node000002_Node000016" title=" " alt="" coords="2290,122,2035,148,1714,185,1459,224,1207,274,1192,277,1190,272,1206,269,1459,219,1713,180,2034,143,2295,122"/>
<area shape="rect" id="Node000004" href="$reaction_8h.html" title="Defines classes for representing and managing nuclear reactions." alt="" coords="931,449,1102,474"/> <area shape="poly" id="edge61_Node000002_Node000023" title=" " alt="" coords="2290,115,2018,122,1838,129,1648,141,1460,161,1288,188,1213,206,1146,225,1090,248,1046,273,1029,288,1019,303,1007,335,995,369,985,386,968,403,942,421,912,436,856,454,855,449,910,431,939,417,965,399,980,383,990,367,1002,334,1014,301,1025,285,1042,269,1087,243,1144,220,1211,200,1287,183,1460,155,1647,136,1838,124,2018,116,2295,115"/>
<area shape="poly" id="edge3_Node000003_Node000004" title=" " alt="" coords="1182,222,1145,305,1117,355,1084,402,1045,441,1043,436,1080,399,1112,352,1140,303,1177,225"/> <area shape="poly" id="edge60_Node000002_Node000029" title=" " alt="" coords="2390,133,2568,357,2563,355,2388,137"/>
<area shape="rect" id="Node000010" title=" " alt="" coords="5,530,116,556"/> <area shape="poly" id="edge57_Node000002_Node000030" title=" " alt="" coords="2381,133,2411,213,2454,311,2481,356,2476,353,2450,313,2406,215,2378,137"/>
<area shape="poly" id="edge52_Node000003_Node000010" title=" " alt="" coords="1112,206,866,212,541,222,382,230,243,242,136,256,100,264,76,274,51,292,31,312,19,334,11,358,9,383,11,411,24,474,33,495,45,516,40,517,28,498,19,475,5,412,4,383,6,356,14,332,27,309,47,288,74,269,98,259,135,251,242,236,382,225,541,217,866,206,1117,204"/> <area shape="poly" id="edge58_Node000002_Node000042" title=" " alt="" coords="2404,133,2479,182,2474,181,2403,138"/>
<area shape="poly" id="edge51_Node000003_Node000011" title=" " alt="" coords="1253,221,1314,243,1383,273,1453,311,1518,358,1557,397,1590,439,1637,517,1632,515,1586,442,1553,400,1515,362,1451,316,1381,278,1312,248,1253,227"/> <area shape="rect" id="Node000004" href="$reaction_8h.html" title="Defines classes for representing and managing nuclear reactions." alt="" coords="1677,449,1848,474"/>
<area shape="poly" id="edge14_Node000003_Node000015" title=" " alt="" coords="1260,217,1520,275,1514,275,1260,223"/> <area shape="poly" id="edge3_Node000003_Node000004" title=" " alt="" coords="1799,222,1794,267,1787,292,1774,314,1763,325,1751,331,1728,338,1706,344,1696,350,1688,361,1682,380,1688,399,1704,421,1726,441,1721,440,1700,425,1683,402,1676,380,1683,359,1693,347,1703,339,1726,332,1749,327,1760,320,1770,310,1782,289,1789,266,1795,226"/>
<area shape="rect" id="Node000016" href="$screening__abstract_8h.html" title=" " alt="" coords="1145,360,1291,401"/> <area shape="rect" id="Node000010" title=" " alt="" coords="1229,530,1339,556"/>
<area shape="poly" id="edge17_Node000003_Node000016" title=" " alt="" coords="1192,222,1214,346,1209,343,1189,226"/> <area shape="poly" id="edge51_Node000003_Node000010" title=" " alt="" coords="1722,213,1526,242,1437,258,1389,274,1363,298,1341,327,1324,360,1311,394,1294,461,1287,516,1283,512,1289,460,1305,393,1319,358,1336,324,1359,294,1387,269,1436,253,1525,237,1727,212"/>
<area shape="rect" id="Node000017" href="$screening__types_8h.html" title=" " alt="" coords="668,271,800,312"/> <area shape="poly" id="edge50_Node000003_Node000011" title=" " alt="" coords="1870,208,2048,230,2134,247,2168,257,2194,269,2228,306,2281,375,2383,518,2378,516,2277,378,2224,309,2190,274,2166,262,2133,252,2048,235,1870,213"/>
<area shape="poly" id="edge22_Node000003_Node000017" title=" " alt="" coords="1112,217,980,242,816,273,814,268,979,236,1117,215"/> <area shape="poly" id="edge54_Node000003_Node000013" title=" " alt="" coords="1870,207,2067,229,2163,247,2202,257,2231,269,2272,295,2311,325,2380,394,2434,462,2470,518,2465,515,2430,465,2376,398,2308,329,2269,299,2228,274,2200,262,2162,252,2066,235,1870,213"/>
<area shape="rect" id="Node000019" href="$reporting_8h.html" title=" " alt="" coords="1366,360,1504,401"/> <area shape="poly" id="edge15_Node000003_Node000016" title=" " alt="" coords="1722,211,1499,236,1219,274,1197,278,1196,273,1218,269,1498,231,1727,210"/>
<area shape="poly" id="edge25_Node000003_Node000019" title=" " alt="" coords="1197,221,1225,266,1243,290,1265,310,1307,336,1354,358,1348,357,1304,341,1262,314,1239,293,1221,269,1195,226"/> <area shape="rect" id="Node000017" title=" " alt="" coords="896,368,954,393"/>
<area shape="rect" id="Node000024" href="$jacobian_8h.html" title="Wrapper for handling the network Jacobian matrix in GridFire. Currently uses Eigen&#39;s SparseMatrix." alt="" coords="823,271,962,312"/> <area shape="poly" id="edge55_Node000003_Node000017" title=" " alt="" coords="1722,211,1455,241,1328,258,1257,274,1244,283,1236,293,1227,304,1213,314,1176,326,1111,342,970,373,969,367,1110,337,1175,321,1211,310,1224,300,1232,290,1240,279,1255,269,1327,253,1454,236,1727,210"/>
<area shape="poly" id="edge31_Node000003_Node000024" title=" " alt="" coords="1117,225,975,269,973,264,1122,223"/> <area shape="rect" id="Node000018" href="$screening__abstract_8h.html" title=" " alt="" coords="1932,360,2078,401"/>
<area shape="rect" id="Node000025" title=" " alt="" coords="910,360,1070,401"/> <area shape="poly" id="edge19_Node000003_Node000018" title=" " alt="" coords="1821,221,1926,310,1972,350,1967,349,1922,314,1819,226"/>
<area shape="poly" id="edge50_Node000003_Node000025" title=" " alt="" coords="1157,223,1090,273,1051,312,1016,350,1014,346,1047,308,1087,269,1152,225"/> <area shape="rect" id="Node000019" href="$screening__types_8h.html" title=" " alt="" coords="1629,271,1760,312"/>
<area shape="rect" id="Node000030" href="$error__engine_8h.html" title=" " alt="" coords="2040,271,2167,312"/> <area shape="poly" id="edge24_Node000003_Node000019" title=" " alt="" coords="1776,223,1731,263,1728,259,1772,225"/>
<area shape="poly" id="edge40_Node000003_Node000030" title=" " alt="" coords="1260,208,2027,282,2021,284,1260,214"/> <area shape="rect" id="Node000021" href="$reporting_8h.html" title=" " alt="" coords="1034,360,1172,401"/>
<area shape="rect" id="Node000033" href="$blob_8h.html" title="Container class for managing multiple scratchpad instances." alt="" coords="88,271,265,312"/> <area shape="poly" id="edge27_Node000003_Node000021" title=" " alt="" coords="1722,211,1507,238,1398,255,1321,274,1302,283,1289,292,1257,314,1168,356,1166,351,1255,310,1286,288,1299,278,1319,269,1397,249,1506,232,1727,210"/>
<area shape="poly" id="edge43_Node000003_Node000033" title=" " alt="" coords="1114,213,281,284,280,279,1115,208"/> <area shape="rect" id="Node000026" href="$jacobian_8h.html" title="Wrapper for handling the network Jacobian matrix in GridFire. Currently uses Eigen&#39;s SparseMatrix." alt="" coords="2042,271,2180,312"/>
<area shape="rect" id="Node000039" title=" " alt="" coords="366,368,440,393"/> <area shape="poly" id="edge33_Node000003_Node000026" title=" " alt="" coords="1869,221,2030,267,2024,267,1869,227"/>
<area shape="poly" id="edge54_Node000003_Node000039" title=" " alt="" coords="1112,208,1022,216,907,228,782,247,657,274,596,293,537,317,440,362,438,358,534,312,594,288,656,269,781,241,907,222,1022,211,1117,207"/> <area shape="rect" id="Node000027" title=" " alt="" coords="1697,360,1858,401"/>
<area shape="rect" id="Node000040" title=" " alt="" coords="1276,279,1328,304"/> <area shape="poly" id="edge49_Node000003_Node000027" title=" " alt="" coords="1807,221,1820,264,1822,288,1819,313,1802,349,1799,345,1813,311,1816,288,1814,265,1804,226"/>
<area shape="poly" id="edge53_Node000003_Node000040" title=" " alt="" coords="1214,221,1277,270,1272,269,1213,226"/> <area shape="rect" id="Node000031" href="$error__engine_8h.html" title=" " alt="" coords="550,271,677,312"/>
<area shape="rect" id="Node000005" title=" " alt="" coords="1122,530,1183,556"/> <area shape="poly" id="edge41_Node000003_Node000031" title=" " alt="" coords="1722,204,1545,209,1291,218,996,238,843,254,693,274,691,269,843,249,996,233,1291,213,1545,204,1728,204"/>
<area shape="poly" id="edge4_Node000004_Node000005" title=" " alt="" coords="1038,472,1121,522,1116,521,1036,477"/> <area shape="rect" id="Node000034" href="$blob_8h.html" title="Container class for managing multiple scratchpad instances." alt="" coords="1427,271,1605,312"/>
<area shape="rect" id="Node000006" title=" " alt="" coords="824,530,911,556"/> <area shape="poly" id="edge44_Node000003_Node000034" title=" " alt="" coords="1736,223,1595,269,1594,264,1731,225"/>
<area shape="poly" id="edge5_Node000004_Node000006" title=" " alt="" coords="996,474,904,525,903,520,991,475"/> <area shape="rect" id="Node000040" title=" " alt="" coords="1354,368,1428,393"/>
<area shape="poly" id="edge6_Node000004_Node000007" title=" " alt="" coords="951,475,658,529,657,524,946,475"/> <area shape="poly" id="edge53_Node000003_Node000040" title=" " alt="" coords="1722,213,1539,241,1458,258,1431,266,1416,273,1404,290,1396,311,1391,353,1387,350,1391,309,1399,288,1413,269,1429,261,1457,252,1538,236,1727,212"/>
<area shape="rect" id="Node000008" title=" " alt="" coords="935,530,1098,556"/> <area shape="rect" id="Node000041" title=" " alt="" coords="1936,279,1989,304"/>
<area shape="poly" id="edge7_Node000004_Node000008" title=" " alt="" coords="1018,473,1019,516,1014,512,1015,477"/> <area shape="poly" id="edge52_Node000003_Node000041" title=" " alt="" coords="1835,221,1929,272,1923,271,1834,226"/>
<area shape="rect" id="Node000009" title=" " alt="" coords="702,530,800,556"/> <area shape="rect" id="Node000005" title=" " alt="" coords="1635,530,1696,556"/>
<area shape="poly" id="edge8_Node000004_Node000009" title=" " alt="" coords="976,475,812,525,804,527,803,522,810,520,971,475"/> <area shape="poly" id="edge4_Node000004_Node000005" title=" " alt="" coords="1750,474,1693,523,1691,518,1745,476"/>
<area shape="poly" id="edge9_Node000004_Node000010" title=" " alt="" coords="931,472,273,525,132,537,131,532,272,520,930,467"/> <area shape="rect" id="Node000006" title=" " alt="" coords="1719,530,1806,556"/>
<area shape="poly" id="edge10_Node000004_Node000011" title=" " alt="" coords="1103,471,1499,520,1606,536,1600,535,1499,525,1102,476"/> <area shape="poly" id="edge5_Node000004_Node000006" title=" " alt="" coords="1765,473,1765,516,1761,512,1761,477"/>
<area shape="rect" id="Node000012" title=" " alt="" coords="285,530,388,556"/> <area shape="poly" id="edge6_Node000004_Node000007" title=" " alt="" coords="1837,472,2127,520,2156,527,2151,527,2126,525,1837,478"/>
<area shape="poly" id="edge11_Node000004_Node000012" title=" " alt="" coords="933,471,717,495,461,525,404,533,403,528,460,520,717,490,928,471"/> <area shape="rect" id="Node000008" title=" " alt="" coords="1831,530,1993,556"/>
<area shape="rect" id="Node000013" title=" " alt="" coords="1207,530,1327,556"/> <area shape="poly" id="edge7_Node000004_Node000008" title=" " alt="" coords="1786,472,1878,523,1873,522,1785,477"/>
<area shape="poly" id="edge12_Node000004_Node000013" title=" " alt="" coords="1056,472,1217,525,1212,525,1055,478"/> <area shape="rect" id="Node000009" title=" " alt="" coords="2017,530,2114,556"/>
<area shape="rect" id="Node000014" title=" " alt="" coords="1352,522,1487,563"/> <area shape="poly" id="edge8_Node000004_Node000009" title=" " alt="" coords="1817,472,2006,520,2017,525,2011,524,2005,525,1816,478"/>
<area shape="poly" id="edge13_Node000004_Node000014" title=" " alt="" coords="1088,472,1339,522,1334,522,1088,478"/> <area shape="poly" id="edge9_Node000004_Node000010" title=" " alt="" coords="1679,472,1525,495,1353,525,1339,528,1338,523,1351,520,1524,489,1674,472"/>
<area shape="poly" id="edge16_Node000015_Node000013" title=" " alt="" coords="1519,298,1477,309,1435,321,1393,338,1356,362,1324,397,1300,439,1285,480,1274,517,1271,513,1279,478,1296,436,1319,394,1352,358,1390,333,1433,315,1476,303,1514,299"/> <area shape="poly" id="edge10_Node000004_Node000011" title=" " alt="" coords="1849,460,1953,463,2081,473,2219,490,2357,520,2363,524,2358,523,2355,525,2219,496,2080,478,1952,469,1849,465"/>
<area shape="poly" id="edge15_Node000015_Node000014" title=" " alt="" coords="1593,303,1599,337,1600,382,1594,431,1586,454,1573,476,1559,492,1542,506,1503,525,1501,520,1539,501,1555,488,1569,473,1581,452,1589,429,1595,381,1593,337,1590,307"/> <area shape="rect" id="Node000012" title=" " alt="" coords="1508,530,1612,556"/>
<area shape="poly" id="edge18_Node000016_Node000004" title=" " alt="" coords="1170,401,1062,445,1061,440,1165,402"/> <area shape="poly" id="edge11_Node000004_Node000012" title=" " alt="" coords="1734,474,1606,526,1605,521,1729,475"/>
<area shape="poly" id="edge19_Node000016_Node000007" title=" " alt="" coords="1147,397,920,451,633,528,632,522,919,446,1142,398"/> <area shape="poly" id="edge12_Node000004_Node000013" title=" " alt="" coords="1849,459,1967,461,2115,470,2278,488,2360,502,2439,520,2447,524,2442,524,2438,525,2359,507,2277,493,2115,475,1967,467,1849,464"/>
<area shape="poly" id="edge21_Node000016_Node000011" title=" " alt="" coords="1234,399,1270,437,1293,456,1318,472,1372,491,1450,508,1606,536,1601,535,1449,513,1371,496,1315,477,1290,461,1267,441,1232,404"/> <area shape="rect" id="Node000014" title=" " alt="" coords="1364,530,1484,556"/>
<area shape="poly" id="edge20_Node000016_Node000013" title=" " alt="" coords="1199,400,1185,419,1175,436,1170,455,1174,473,1196,500,1226,523,1221,522,1192,504,1169,475,1164,455,1170,434,1181,416,1194,403"/> <area shape="poly" id="edge13_Node000004_Node000014" title=" " alt="" coords="1708,475,1497,525,1484,528,1483,523,1495,520,1703,475"/>
<area shape="poly" id="edge23_Node000017_Node000016" title=" " alt="" coords="800,307,812,309,980,340,1132,366,1126,367,980,346,811,315,800,312"/> <area shape="rect" id="Node000015" title=" " alt="" coords="1070,522,1205,563"/>
<area shape="rect" id="Node000018" title=" " alt="" coords="117,449,185,474"/> <area shape="poly" id="edge14_Node000004_Node000015" title=" " alt="" coords="1679,469,1473,490,1348,506,1220,525,1220,519,1348,500,1472,485,1674,469"/>
<area shape="poly" id="edge24_Node000017_Node000018" title=" " alt="" coords="665,308,591,331,511,362,495,373,483,383,471,393,454,403,387,426,333,436,278,441,209,451,202,453,200,448,208,446,278,436,333,430,386,421,451,398,468,389,480,379,491,368,509,358,590,326,670,306"/> <area shape="poly" id="edge17_Node000016_Node000014" title=" " alt="" coords="1143,303,1401,520,1395,519,1141,307"/>
<area shape="poly" id="edge30_Node000019_Node000014" title=" " alt="" coords="1377,400,1344,423,1319,450,1315,468,1322,484,1337,499,1359,516,1354,514,1334,503,1317,487,1309,468,1314,447,1340,419,1372,402"/> <area shape="poly" id="edge16_Node000016_Node000015" title=" " alt="" coords="1144,303,1168,327,1187,359,1193,399,1188,440,1175,478,1159,511,1156,506,1170,476,1182,439,1188,399,1181,361,1163,330,1142,308"/>
<area shape="rect" id="Node000020" title=" " alt="" coords="1328,449,1374,474"/> <area shape="poly" id="edge18_Node000016_Node000017" title=" " alt="" coords="1102,304,968,364,967,359,1097,306"/>
<area shape="poly" id="edge26_Node000019_Node000020" title=" " alt="" coords="1417,400,1376,440,1374,435,1412,402"/> <area shape="poly" id="edge20_Node000018_Node000004" title=" " alt="" coords="1947,401,1815,446,1814,441,1942,402"/>
<area shape="poly" id="edge27_Node000019_Node000021" title=" " alt="" coords="1505,384,2582,457,2577,458,1505,389"/> <area shape="poly" id="edge21_Node000018_Node000007" title=" " alt="" coords="2022,399,2056,435,2099,472,2147,500,2196,524,2190,523,2144,505,2096,477,2052,439,2020,404"/>
<area shape="rect" id="Node000022" title=" " alt="" coords="1398,449,1467,474"/> <area shape="poly" id="edge23_Node000018_Node000011" title=" " alt="" coords="2057,399,2357,520,2361,524,2355,523,2355,525,2056,404"/>
<area shape="poly" id="edge28_Node000019_Node000022" title=" " alt="" coords="1436,399,1435,435,1431,431,1433,403"/> <area shape="poly" id="edge22_Node000018_Node000014" title=" " alt="" coords="1934,397,1914,403,1789,424,1735,434,1666,451,1557,489,1465,526,1464,521,1555,484,1665,446,1734,429,1788,419,1913,398,1929,397"/>
<area shape="rect" id="Node000023" title=" " alt="" coords="1490,449,1559,474"/> <area shape="poly" id="edge25_Node000019_Node000018" title=" " alt="" coords="1761,309,1923,355,1917,355,1761,314"/>
<area shape="poly" id="edge29_Node000019_Node000023" title=" " alt="" coords="1458,399,1502,439,1497,437,1456,404"/> <area shape="rect" id="Node000020" title=" " alt="" coords="1554,368,1622,393"/>
<area shape="poly" id="edge32_Node000024_Node000007" title=" " alt="" coords="820,310,812,315,779,320,749,322,698,321,674,323,652,329,630,341,606,362,594,378,585,397,574,438,572,479,573,516,569,513,566,479,569,438,580,395,589,376,603,358,627,337,650,324,674,318,697,316,749,316,778,315,811,309,825,309"/> <area shape="poly" id="edge26_Node000019_Node000020" title=" " alt="" coords="1673,311,1615,360,1613,356,1668,314"/>
<area shape="poly" id="edge34_Node000024_Node000009" title=" " alt="" coords="888,311,872,355,850,402,810,466,771,520,768,515,805,463,845,399,867,353,884,314"/> <area shape="poly" id="edge32_Node000021_Node000015" title=" " alt="" coords="1115,399,1136,448,1141,478,1141,509,1137,505,1135,479,1131,449,1112,403"/>
<area shape="poly" id="edge38_Node000024_Node000010" title=" " alt="" coords="820,310,812,315,745,327,693,334,641,343,577,362,539,382,500,403,398,443,294,477,122,528,121,523,293,472,396,438,498,398,536,377,576,358,640,338,692,328,744,321,811,309,825,309"/> <area shape="rect" id="Node000022" title=" " alt="" coords="1076,449,1122,474"/>
<area shape="poly" id="edge33_Node000024_Node000025" title=" " alt="" coords="915,310,959,350,954,349,914,315"/> <area shape="poly" id="edge28_Node000021_Node000022" title=" " alt="" coords="1104,399,1102,435,1098,431,1100,403"/>
<area shape="rect" id="Node000026" title=" " alt="" coords="617,368,744,393"/> <area shape="poly" id="edge29_Node000021_Node000023" title=" " alt="" coords="1036,400,856,451,854,446,1030,401"/>
<area shape="poly" id="edge35_Node000024_Node000026" title=" " alt="" coords="847,312,725,364,723,359,842,313"/> <area shape="rect" id="Node000024" title=" " alt="" coords="891,449,960,474"/>
<area shape="poly" id="edge36_Node000024_Node000027" title=" " alt="" coords="962,297,1773,374,1769,377,962,302"/> <area shape="poly" id="edge30_Node000021_Node000024" title=" " alt="" coords="1061,401,967,445,966,439,1056,402"/>
<area shape="poly" id="edge37_Node000024_Node000028" title=" " alt="" coords="962,294,1450,323,1703,341,1849,357,1860,362,1855,362,1848,363,1702,347,1450,328,962,299"/> <area shape="rect" id="Node000025" title=" " alt="" coords="983,449,1052,474"/>
<area shape="rect" id="Node000029" title=" " alt="" coords="769,368,835,393"/> <area shape="poly" id="edge31_Node000021_Node000025" title=" " alt="" coords="1084,400,1043,440,1040,435,1079,402"/>
<area shape="poly" id="edge39_Node000024_Node000029" title=" " alt="" coords="874,311,827,359,824,354,870,314"/> <area shape="poly" id="edge34_Node000026_Node000007" title=" " alt="" coords="2121,310,2155,383,2201,473,2227,518,2222,515,2196,476,2150,386,2118,315"/>
<area shape="rect" id="Node000031" href="$error__gridfire_8h.html" title=" " alt="" coords="2496,360,2623,401"/> <area shape="poly" id="edge36_Node000026_Node000009" title=" " alt="" coords="2109,311,2072,517,2068,513,2105,314"/>
<area shape="poly" id="edge41_Node000030_Node000031" title=" " alt="" coords="2168,307,2180,309,2340,340,2483,367,2478,367,2339,346,2179,315,2167,312"/> <area shape="poly" id="edge39_Node000026_Node000010" title=" " alt="" coords="2044,311,1982,334,1921,362,1907,373,1897,383,1886,393,1871,403,1830,419,1794,429,1730,436,1666,439,1586,451,1448,490,1333,527,1332,522,1446,484,1585,446,1666,433,1730,431,1793,424,1828,414,1868,398,1883,389,1893,379,1903,369,1919,358,1980,329,2039,312"/>
<area shape="poly" id="edge42_Node000031_Node000021" title=" " alt="" coords="2576,399,2605,437,2600,435,2574,403"/> <area shape="poly" id="edge40_Node000026_Node000013" title=" " alt="" coords="2134,310,2228,385,2289,430,2352,472,2444,523,2439,522,2349,477,2286,434,2224,389,2133,315"/>
<area shape="poly" id="edge46_Node000033_Node000010" title=" " alt="" coords="98,315,67,334,40,362,31,380,27,400,28,442,37,482,50,515,45,516,32,483,22,442,22,399,26,378,36,358,63,330,101,310"/> <area shape="poly" id="edge35_Node000026_Node000027" title=" " alt="" coords="2044,310,1868,358,1867,353,2039,311"/>
<area shape="poly" id="edge49_Node000033_Node000012" title=" " alt="" coords="203,310,230,332,253,358,291,430,328,516,323,515,287,432,249,362,226,336,203,315"/> <area shape="poly" id="edge37_Node000026_Node000029" title=" " alt="" coords="2180,294,2257,301,2350,313,2449,331,2547,357,2552,361,2547,361,2546,363,2448,337,2349,318,2256,306,2180,300"/>
<area shape="poly" id="edge47_Node000033_Node000018" title=" " alt="" coords="108,315,78,334,52,361,46,380,52,399,75,424,105,443,100,445,71,429,48,402,40,380,48,359,74,330,111,310"/> <area shape="poly" id="edge38_Node000026_Node000030" title=" " alt="" coords="2181,306,2445,367,2439,367,2180,311"/>
<area shape="rect" id="Node000034" href="$scratchpad__abstract_8h.html" title="Abstract base class for scratchpad memory used during engine computations." alt="" coords="62,360,240,401"/> <area shape="rect" id="Node000032" href="$error__gridfire_8h.html" title=" " alt="" coords="499,360,626,401"/>
<area shape="poly" id="edge44_Node000033_Node000034" title=" " alt="" coords="172,310,164,346,159,344,170,315"/> <area shape="poly" id="edge42_Node000031_Node000032" title=" " alt="" coords="604,311,584,348,580,344,600,314"/>
<area shape="poly" id="edge48_Node000033_Node000039" title=" " alt="" coords="228,310,360,360,355,363,228,315"/> <area shape="poly" id="edge43_Node000032_Node000023" title=" " alt="" coords="626,399,775,447,770,448,625,404"/>
<area shape="poly" id="edge45_Node000034_Node000018" title=" " alt="" coords="152,399,154,434,149,432,150,403"/> <area shape="poly" id="edge45_Node000034_Node000010" title=" " alt="" coords="1506,311,1478,356,1442,402,1374,470,1312,522,1310,517,1371,466,1438,399,1474,353,1502,314"/>
<area shape="poly" id="edge65_Node000042_Node000030" title=" " alt="" coords="2282,223,2170,268,2168,263,2277,224"/> <area shape="poly" id="edge48_Node000034_Node000012" title=" " alt="" coords="1521,311,1558,516,1553,513,1518,314"/>
<area shape="poly" id="edge64_Node000042_Node000031" title=" " alt="" coords="2396,221,2442,241,2485,269,2519,306,2545,347,2540,345,2515,309,2481,273,2439,246,2395,226"/> <area shape="poly" id="edge46_Node000034_Node000020" title=" " alt="" coords="1533,310,1571,356,1566,355,1531,315"/>
<area shape="rect" id="Node000043" href="$error__utils_8h.html" title=" " alt="" coords="2546,271,2674,312"/> <area shape="poly" id="edge47_Node000034_Node000040" title=" " alt="" coords="1490,312,1421,361,1419,356,1485,313"/>
<area shape="poly" id="edge66_Node000042_Node000043" title=" " alt="" coords="2395,221,2535,267,2530,266,2394,227"/> <area shape="poly" id="edge66_Node000043_Node000031" title=" " alt="" coords="575,221,597,258,592,257,573,226"/>
<area shape="rect" id="Node000044" href="$error__debug_8h.html" title=" " alt="" coords="2698,271,2826,312"/> <area shape="poly" id="edge65_Node000043_Node000032" title=" " alt="" coords="555,222,540,272,538,292,540,311,550,347,545,345,535,313,532,292,535,271,551,226"/>
<area shape="poly" id="edge68_Node000042_Node000044" title=" " alt="" coords="2395,217,2414,221,2547,244,2685,271,2680,271,2546,249,2413,226,2395,222"/> <area shape="rect" id="Node000044" href="$error__utils_8h.html" title=" " alt="" coords="43,271,170,312"/>
<area shape="rect" id="Node000047" href="$error__policy_8h.html" title="Defines custom exception types related to network policy construction and verification." alt="" coords="2192,271,2319,312"/> <area shape="poly" id="edge67_Node000043_Node000044" title=" " alt="" coords="496,216,359,240,187,273,185,268,358,235,501,213"/>
<area shape="poly" id="edge71_Node000042_Node000047" title=" " alt="" coords="2316,223,2284,262,2281,257,2312,225"/> <area shape="rect" id="Node000045" href="$error__debug_8h.html" title=" " alt="" coords="854,271,981,312"/>
<area shape="rect" id="Node000048" href="$error__reaction_8h.html" title=" " alt="" coords="2850,271,2978,312"/> <area shape="poly" id="edge69_Node000043_Node000045" title=" " alt="" coords="627,217,841,270,836,271,627,222"/>
<area shape="poly" id="edge73_Node000042_Node000048" title=" " alt="" coords="2395,217,2414,221,2531,237,2623,244,2716,252,2838,271,2832,271,2716,257,2623,249,2530,242,2413,226,2395,222"/> <area shape="rect" id="Node000047" href="$error__policy_8h.html" title="Defines custom exception types related to network policy construction and verification." alt="" coords="195,271,322,312"/>
<area shape="rect" id="Node000049" href="$error__solver_8h.html" title=" " alt="" coords="2344,271,2471,312"/> <area shape="poly" id="edge73_Node000043_Node000047" title=" " alt="" coords="496,224,338,271,336,266,501,221"/>
<area shape="poly" id="edge76_Node000042_Node000049" title=" " alt="" coords="2349,221,2383,260,2377,259,2347,226"/> <area shape="rect" id="Node000048" href="$error__reaction_8h.html" title=" " alt="" coords="702,271,829,312"/>
<area shape="poly" id="edge67_Node000043_Node000031" title=" " alt="" coords="2601,311,2580,349,2577,344,2596,314"/> <area shape="poly" id="edge75_Node000043_Node000048" title=" " alt="" coords="609,221,708,265,703,265,609,227"/>
<area shape="poly" id="edge69_Node000044_Node000021" title=" " alt="" coords="2748,311,2643,439,2640,434,2743,313"/> <area shape="rect" id="Node000049" href="$error__solver_8h.html" title=" " alt="" coords="347,271,474,312"/>
<area shape="poly" id="edge70_Node000044_Node000031" title=" " alt="" coords="2718,312,2620,356,2618,351,2713,313"/> <area shape="poly" id="edge79_Node000043_Node000049" title=" " alt="" coords="526,225,459,266,456,261,530,222"/>
<area shape="poly" id="edge72_Node000047_Node000031" title=" " alt="" coords="2320,308,2483,357,2478,357,2319,314"/> <area shape="poly" id="edge68_Node000044_Node000032" title=" " alt="" coords="170,307,183,309,344,340,486,366,481,368,343,346,182,315,172,312"/>
<area shape="poly" id="edge74_Node000048_Node000021" title=" " alt="" coords="2882,312,2657,443,2655,438,2877,313"/> <area shape="poly" id="edge71_Node000045_Node000017" title=" " alt="" coords="921,310,925,354,921,351,918,315"/>
<area shape="poly" id="edge75_Node000048_Node000031" title=" " alt="" coords="2852,309,2838,315,2639,363,2638,358,2837,309,2847,310"/> <area shape="poly" id="edge70_Node000045_Node000023" title=" " alt="" coords="908,311,830,438,827,434,903,313"/>
<area shape="poly" id="edge77_Node000049_Node000031" title=" " alt="" coords="2442,310,2515,353,2509,352,2441,315"/> <area shape="poly" id="edge72_Node000045_Node000032" title=" " alt="" coords="851,310,842,315,642,363,641,358,841,309,856,308"/>
<area shape="poly" id="edge79_Node000050_Node000051" title=" " alt="" coords="2363,125,2504,184,2498,184,2362,130"/> <area shape="poly" id="edge74_Node000047_Node000032" title=" " alt="" coords="323,308,487,356,482,358,323,314"/>
<area shape="poly" id="edge77_Node000048_Node000017" title=" " alt="" coords="802,310,892,360,887,360,801,315"/>
<area shape="poly" id="edge76_Node000048_Node000023" title=" " alt="" coords="772,310,808,435,803,433,769,314"/>
<area shape="poly" id="edge78_Node000048_Node000032" title=" " alt="" coords="722,312,624,356,622,351,717,313"/>
<area shape="poly" id="edge80_Node000049_Node000032" title=" " alt="" coords="445,310,518,352,513,352,445,315"/>
<area shape="poly" id="edge82_Node000050_Node000051" title=" " alt="" coords="2880,126,2865,177,2862,173,2876,129"/>
</map> </map>

View File

@@ -1 +1 @@
5854e442fb0f97a2bd5ba4bf96d670f2 6a1c9c5dd426b59de2b0b1eed5eb9117

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 67 KiB

After

Width:  |  Height:  |  Size: 69 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 64 KiB

After

Width:  |  Height:  |  Size: 65 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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>
@@ -194,7 +194,7 @@ Concepts</h2></td></tr>
<div class="ttc" id="aclassgridfire_1_1engine_1_1scratch_1_1_state_blob_html_acedd28277e5c6805865a9baa3991686a"><div class="ttname"><a href="classgridfire_1_1engine_1_1scratch_1_1_state_blob.html#acedd28277e5c6805865a9baa3991686a">gridfire::engine::scratch::StateBlob::get</a></div><div class="ttdeci">std::expected&lt; CTX *, Error &gt; get() const</div><div class="ttdoc">Retrieve a scratchpad by type.</div><div class="ttdef"><b>Definition</b> blob.h:230</div></div> <div class="ttc" id="aclassgridfire_1_1engine_1_1scratch_1_1_state_blob_html_acedd28277e5c6805865a9baa3991686a"><div class="ttname"><a href="classgridfire_1_1engine_1_1scratch_1_1_state_blob.html#acedd28277e5c6805865a9baa3991686a">gridfire::engine::scratch::StateBlob::get</a></div><div class="ttdeci">std::expected&lt; CTX *, Error &gt; get() const</div><div class="ttdoc">Retrieve a scratchpad by type.</div><div class="ttdef"><b>Definition</b> blob.h:230</div></div>
<div class="ttc" id="aengine__graph__scratchpad_8h_html"><div class="ttname"><a href="engine__graph__scratchpad_8h.html">engine_graph_scratchpad.h</a></div><div class="ttdoc">Scratchpad implementation for the GraphEngine using CppAD automatic differentiation.</div></div> <div class="ttc" id="aengine__graph__scratchpad_8h_html"><div class="ttname"><a href="engine__graph__scratchpad_8h.html">engine_graph_scratchpad.h</a></div><div class="ttdoc">Scratchpad implementation for the GraphEngine using CppAD automatic differentiation.</div></div>
<div class="ttc" id="anamespacegridfire_1_1engine_1_1scratch_html"><div class="ttname"><a href="namespacegridfire_1_1engine_1_1scratch.html">gridfire::engine::scratch</a></div><div class="ttdoc">Scratchpad memory management for computational engines.</div><div class="ttdef"><b>Definition</b> blob.h:69</div></div> <div class="ttc" id="anamespacegridfire_1_1engine_1_1scratch_html"><div class="ttname"><a href="namespacegridfire_1_1engine_1_1scratch.html">gridfire::engine::scratch</a></div><div class="ttdoc">Scratchpad memory management for computational engines.</div><div class="ttdef"><b>Definition</b> blob.h:69</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:39</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:40</div></div>
<div class="ttc" id="astructgridfire_1_1engine_1_1scratch_1_1_graph_engine_scratch_pad_html"><div class="ttname"><a href="structgridfire_1_1engine_1_1scratch_1_1_graph_engine_scratch_pad.html">gridfire::engine::scratch::GraphEngineScratchPad</a></div><div class="ttdoc">Scratchpad for storing CppAD automatic differentiation state for GraphEngine.</div><div class="ttdef"><b>Definition</b> engine_graph_scratchpad.h:83</div></div> <div class="ttc" id="astructgridfire_1_1engine_1_1scratch_1_1_graph_engine_scratch_pad_html"><div class="ttname"><a href="structgridfire_1_1engine_1_1scratch_1_1_graph_engine_scratch_pad.html">gridfire::engine::scratch::GraphEngineScratchPad</a></div><div class="ttdoc">Scratchpad for storing CppAD automatic differentiation state for GraphEngine.</div><div class="ttdef"><b>Definition</b> engine_graph_scratchpad.h:83</div></div>
</div><!-- fragment --></dd></dl> </div><!-- fragment --></dd></dl>
<dl class="section user"><dt>Thread Safety</dt><dd>The StateBlob class is <b>not thread-safe</b>. Each thread should have its own StateBlob instance. Use clone_structure() to create independent copies for parallel workers. The cloned blob contains deep copies of all enrolled scratchpads.</dd></dl> <dl class="section user"><dt>Thread Safety</dt><dd>The StateBlob class is <b>not thread-safe</b>. Each thread should have its own StateBlob instance. Use clone_structure() to create independent copies for parallel workers. The cloned blob contains deep copies of all enrolled scratchpads.</dd></dl>

View File

@@ -1,188 +1,189 @@
<map id="src/include/gridfire/engine/scratchpads/blob.h" name="src/include/gridfire/engine/scratchpads/blob.h"> <map id="src/include/gridfire/engine/scratchpads/blob.h" name="src/include/gridfire/engine/scratchpads/blob.h">
<area shape="rect" id="Node000001" title="Container class for managing multiple scratchpad instances." alt="" coords="1323,5,1501,46"/> <area shape="rect" id="Node000001" title="Container class for managing multiple scratchpad instances." alt="" coords="1995,5,2173,46"/>
<area shape="rect" id="Node000002" href="$dynamic__engine__diagnostics_8h.html" title="Diagnostics utilities for DynamicEngine instances." alt="" coords="430,183,616,238"/> <area shape="rect" id="Node000002" href="$dynamic__engine__diagnostics_8h.html" title="Diagnostics utilities for DynamicEngine instances." alt="" coords="430,183,616,238"/>
<area shape="poly" id="edge1_Node000001_Node000002" title=" " alt="" coords="1305,28,1142,33,946,43,851,52,764,63,690,78,636,96,607,114,581,137,542,184,538,181,577,133,604,110,634,92,689,73,763,58,850,46,946,38,1142,28,1311,26"/> <area shape="poly" id="edge1_Node000001_Node000002" title=" " alt="" coords="1977,28,1655,34,1236,44,1032,52,852,63,715,78,667,87,636,96,606,114,581,137,542,184,537,181,577,133,603,110,634,92,666,82,714,73,852,58,1031,47,1236,38,1655,28,1982,27"/>
<area shape="rect" id="Node000012" href="$dynamic__engine__diagnostics_8cpp.html" title=" " alt="" coords="94,294,311,334"/> <area shape="rect" id="Node000012" href="$dynamic__engine__diagnostics_8cpp.html" title=" " alt="" coords="449,294,666,334"/>
<area shape="poly" id="edge126_Node000001_Node000012" title=" " alt="" coords="1305,31,1131,40,921,52,721,70,640,83,578,97,524,116,470,140,370,195,286,251,229,295,225,291,283,247,367,191,468,135,522,111,577,91,639,77,720,65,920,46,1131,34,1310,29"/> <area shape="poly" id="edge127_Node000001_Node000012" title=" " alt="" coords="1977,28,1676,33,1287,42,1099,50,935,62,809,77,765,86,737,96,715,111,699,126,677,159,659,197,630,240,579,295,575,291,626,237,654,194,673,156,695,122,712,106,735,92,764,81,808,72,934,57,1099,45,1287,37,1676,27,1983,26"/>
<area shape="rect" id="Node000014" href="$engine__abstract_8h.html" title="Abstract interfaces for reaction network engines in GridFire." alt="" coords="1884,94,2054,135"/> <area shape="rect" id="Node000014" href="$engine__abstract_8h.html" title="Abstract interfaces for reaction network engines in GridFire." alt="" coords="1999,94,2169,135"/>
<area shape="poly" id="edge5_Node000001_Node000014" title=" " alt="" coords="1515,40,1887,99,1881,100,1516,46"/> <area shape="poly" id="edge5_Node000001_Node000014" title=" " alt="" coords="2086,59,2086,95,2082,92,2082,64"/>
<area shape="rect" id="Node000015" href="$engine__graph_8h.html" title=" " alt="" coords="941,190,1096,231"/> <area shape="rect" id="Node000015" href="$engine__graph_8h.html" title=" " alt="" coords="1069,190,1224,231"/>
<area shape="poly" id="edge108_Node000001_Node000015" title=" " alt="" coords="1305,35,1261,44,1211,56,1162,73,1116,96,1089,117,1065,143,1031,192,1027,188,1061,140,1085,113,1113,92,1160,68,1210,51,1260,39,1310,33"/> <area shape="poly" id="edge109_Node000001_Node000015" title=" " alt="" coords="1977,31,1785,42,1557,56,1356,74,1285,85,1244,96,1216,116,1192,141,1158,192,1155,188,1188,138,1212,112,1242,92,1284,80,1355,69,1556,50,1785,37,1983,30"/>
<area shape="rect" id="Node000016" href="$priming_8h.html" title=" " alt="" coords="792,294,981,334"/> <area shape="rect" id="Node000016" href="$priming_8h.html" title=" " alt="" coords="894,294,1082,334"/>
<area shape="poly" id="edge109_Node000001_Node000016" title=" " alt="" coords="1305,40,1190,63,1127,78,1065,97,1010,112,965,124,946,132,927,144,910,161,893,184,882,211,878,241,884,295,879,292,873,241,877,210,888,181,906,157,924,140,943,128,963,119,1008,107,1063,91,1125,73,1189,57,1310,38"/> <area shape="poly" id="edge110_Node000001_Node000016" title=" " alt="" coords="1978,31,1792,40,1565,52,1348,71,1259,83,1191,97,1133,110,1087,122,1047,143,1028,161,1009,184,995,211,989,240,988,295,983,292,983,240,990,209,1004,181,1024,157,1044,139,1085,117,1132,105,1190,91,1258,78,1347,66,1564,47,1792,35,1983,29"/>
<area shape="rect" id="Node000018" href="$engine__graph_8cpp.html" title=" " alt="" coords="620,398,761,438"/> <area shape="rect" id="Node000018" href="$engine__graph_8cpp.html" title=" " alt="" coords="659,398,800,438"/>
<area shape="poly" id="edge127_Node000001_Node000018" title=" " alt="" coords="1305,35,1099,59,1002,76,933,96,862,134,812,172,771,220,728,288,714,316,705,346,695,399,690,396,699,344,709,314,723,285,767,217,809,168,860,129,931,92,1000,70,1098,54,1310,33"/> <area shape="poly" id="edge128_Node000001_Node000018" title=" " alt="" coords="1977,30,1645,39,1209,52,807,71,662,83,577,97,525,110,484,123,450,144,420,184,413,214,411,262,414,311,423,340,454,355,514,371,661,403,656,405,513,377,452,360,419,344,409,312,405,263,408,213,415,182,447,141,482,118,523,105,575,91,661,78,807,66,1208,47,1645,34,1982,28"/>
<area shape="rect" id="Node000019" href="$priming_8cpp.html" title=" " alt="" coords="1678,398,1844,438"/> <area shape="rect" id="Node000019" href="$priming_8cpp.html" title=" " alt="" coords="1901,398,2067,438"/>
<area shape="poly" id="edge128_Node000001_Node000019" title=" " alt="" coords="1400,59,1389,101,1383,148,1386,195,1394,217,1406,237,1424,254,1442,263,1460,266,1480,267,1522,267,1545,273,1569,284,1586,298,1596,312,1606,325,1620,340,1668,371,1717,397,1711,397,1665,375,1617,344,1602,329,1592,315,1582,301,1567,289,1544,278,1522,273,1480,272,1460,271,1440,268,1421,258,1402,240,1389,219,1381,196,1377,148,1384,100,1397,63"/> <area shape="poly" id="edge129_Node000001_Node000019" title=" " alt="" coords="2188,29,2492,50,2644,68,2706,79,2753,91,2804,111,2854,135,2901,163,2940,195,2968,229,2982,266,2983,285,2978,305,2968,324,2952,344,2932,356,2898,366,2799,380,2669,387,2523,389,2242,388,2136,389,2074,393,2044,399,2043,394,2073,387,2136,383,2242,383,2523,384,2669,381,2799,374,2897,361,2930,352,2949,340,2964,321,2973,303,2977,285,2977,267,2963,232,2936,198,2898,167,2852,140,2802,116,2751,97,2705,84,2643,74,2492,56,2188,34"/>
<area shape="rect" id="Node000020" href="$engine__multiscale_8cpp.html" title=" " alt="" coords="863,501,1017,542"/> <area shape="rect" id="Node000020" href="$engine__multiscale_8cpp.html" title=" " alt="" coords="880,501,1034,542"/>
<area shape="poly" id="edge131_Node000001_Node000020" title=" " alt="" coords="1305,29,1073,35,778,45,492,65,375,79,286,97,231,111,189,125,152,147,111,184,92,209,81,231,68,287,61,316,61,328,68,340,89,363,120,384,158,403,203,420,308,449,426,472,549,489,668,501,865,517,860,518,668,506,548,494,425,477,306,454,201,425,156,408,117,388,86,367,63,344,56,329,55,315,63,286,76,229,87,206,107,181,149,143,187,120,230,106,285,91,374,74,492,60,778,40,1073,29,1310,27"/> <area shape="poly" id="edge132_Node000001_Node000020" title=" " alt="" coords="1977,27,1762,31,1493,40,1359,48,1235,60,1130,76,1052,97,1006,116,952,145,830,221,771,265,718,309,676,352,649,391,639,419,641,431,648,444,674,454,733,469,882,504,877,504,732,474,673,459,645,448,636,433,634,419,644,389,672,349,714,305,767,261,827,217,949,140,1004,111,1050,91,1129,71,1235,55,1358,43,1493,35,1762,26,1982,26"/>
<area shape="rect" id="Node000022" href="$engine_2scratchpads_2formatters_8h.html" title=" " alt="" coords="1340,501,1553,542"/> <area shape="rect" id="Node000022" href="$engine_2scratchpads_2formatters_8h.html" title=" " alt="" coords="1515,501,1728,542"/>
<area shape="poly" id="edge110_Node000001_Node000022" title=" " alt="" coords="1333,51,1299,72,1271,96,1217,157,1195,187,1179,217,1170,247,1169,277,1178,308,1198,340,1222,361,1247,370,1273,370,1301,366,1329,362,1358,362,1387,369,1415,388,1434,414,1444,445,1449,475,1450,502,1445,499,1444,476,1439,446,1429,417,1411,392,1385,374,1358,367,1330,368,1302,372,1273,376,1246,375,1219,366,1194,344,1173,310,1163,278,1164,246,1174,215,1191,184,1213,154,1267,92,1296,68,1328,54"/> <area shape="poly" id="edge111_Node000001_Node000022" title=" " alt="" coords="1977,33,1869,43,1748,55,1638,73,1594,84,1561,96,1532,114,1513,133,1475,184,1443,225,1418,261,1410,278,1407,297,1409,317,1417,341,1432,368,1451,393,1495,437,1542,473,1585,501,1580,500,1539,477,1491,441,1446,396,1428,371,1412,343,1404,319,1402,297,1405,277,1413,258,1438,222,1471,181,1509,129,1529,110,1559,92,1592,79,1637,68,1747,50,1869,38,1983,32"/>
<area shape="rect" id="Node000023" href="$scratchpads_8h.html" title="Unified header for the scratchpad memory management system." alt="" coords="905,605,1130,646"/> <area shape="rect" id="Node000023" href="$scratchpads_8h.html" title="Unified header for the scratchpad memory management system." alt="" coords="1112,605,1336,646"/>
<area shape="poly" id="edge111_Node000001_Node000023" title=" " alt="" coords="1306,29,1025,37,667,48,344,68,228,81,161,97,130,113,108,130,91,153,73,184,56,222,45,259,41,294,43,327,53,359,70,389,95,417,127,444,176,475,219,496,260,510,300,519,387,529,495,547,680,577,907,609,902,610,679,582,494,552,386,535,299,524,259,515,217,501,173,479,124,448,91,421,66,392,48,361,38,328,35,294,39,258,51,221,68,181,86,150,104,126,127,108,159,91,227,76,343,62,667,43,1024,31,1311,27"/> <area shape="poly" id="edge112_Node000001_Node000023" title=" " alt="" coords="1977,29,1578,37,1039,50,536,70,353,82,246,97,160,110,83,120,52,131,29,147,13,172,8,209,8,315,13,351,27,376,48,393,76,405,146,422,185,431,225,443,343,484,466,518,590,546,712,568,936,599,1114,617,1109,618,936,604,711,573,589,551,465,523,342,489,223,448,184,436,145,427,74,410,45,398,23,380,8,353,3,316,3,209,8,171,25,143,50,126,82,115,159,105,245,91,353,77,536,64,1039,45,1578,32,1982,28"/>
<area shape="rect" id="Node000025" href="$stellar__policy_8cpp.html" title=" " alt="" coords="2105,701,2239,742"/> <area shape="rect" id="Node000025" href="$stellar__policy_8cpp.html" title=" " alt="" coords="2267,701,2400,742"/>
<area shape="poly" id="edge134_Node000001_Node000025" title=" " alt="" coords="1516,26,1768,32,2088,44,2401,63,2530,76,2628,91,2699,104,2756,115,2782,124,2808,137,2834,155,2862,181,2895,219,2914,257,2917,277,2917,298,2911,320,2901,343,2886,362,2868,371,2850,378,2831,392,2813,414,2800,435,2783,474,2764,513,2749,532,2727,551,2667,591,2603,623,2536,650,2469,672,2341,701,2239,717,2239,711,2340,696,2467,667,2534,645,2601,618,2665,586,2724,547,2745,529,2760,510,2778,472,2795,432,2809,411,2828,388,2847,374,2866,366,2882,358,2896,341,2906,318,2911,297,2912,277,2909,258,2890,222,2858,185,2830,159,2805,141,2780,129,2755,120,2698,109,2628,97,2530,81,2401,68,2088,49,1767,37,1517,31"/> <area shape="poly" id="edge135_Node000001_Node000025" title=" " alt="" coords="2188,25,2547,30,3036,40,3525,60,3728,74,3882,91,3955,97,4028,94,4164,87,4220,93,4245,100,4265,111,4282,127,4295,149,4303,176,4305,209,4305,523,4309,542,4316,556,4320,568,4315,580,4296,592,4257,607,4095,656,4052,664,3987,672,3803,685,3299,705,2769,717,2400,722,2400,717,2769,712,3299,700,3803,680,3987,667,4051,659,4094,650,4255,602,4293,588,4311,577,4315,568,4311,558,4304,544,4300,523,4300,209,4297,177,4290,151,4278,131,4262,116,4243,105,4219,98,4164,92,4028,100,3954,102,3881,97,3727,79,3524,65,3036,46,2547,35,2189,30"/>
<area shape="rect" id="Node000026" href="$engine__defined_8h.html" title=" " alt="" coords="1631,286,1774,342"/> <area shape="rect" id="Node000026" href="$engine__defined_8h.html" title=" " alt="" coords="1683,286,1826,342"/>
<area shape="poly" id="edge120_Node000001_Node000026" title=" " alt="" coords="1407,59,1404,101,1406,148,1416,195,1426,217,1439,237,1458,255,1477,266,1496,272,1516,274,1560,275,1613,284,1633,292,1628,292,1611,289,1559,281,1515,280,1495,277,1475,271,1455,259,1435,240,1421,220,1411,197,1400,148,1399,101,1404,63"/> <area shape="poly" id="edge121_Node000001_Node000026" title=" " alt="" coords="1978,40,1847,62,1700,92,1631,111,1571,133,1523,157,1491,184,1483,198,1481,210,1483,223,1491,236,1515,249,1563,265,1685,297,1680,297,1562,270,1513,254,1487,240,1478,225,1475,210,1478,196,1487,181,1520,153,1568,128,1629,106,1699,87,1846,57,1983,38"/>
<area shape="rect" id="Node000027" href="$engine__priming_8h.html" title=" " alt="" coords="2520,390,2664,446"/> <area shape="rect" id="Node000027" href="$engine__priming_8h.html" title=" " alt="" coords="2447,390,2590,446"/>
<area shape="poly" id="edge122_Node000001_Node000027" title=" " alt="" coords="1516,25,1858,31,2322,42,2783,62,2975,75,3120,91,3215,109,3288,129,3453,180,3509,192,3560,196,3652,199,3693,205,3733,219,3771,244,3809,285,3818,300,3821,315,3818,330,3808,344,3791,352,3756,358,3646,368,3324,382,2830,393,2664,410,2664,405,2829,387,3324,376,3646,363,3756,353,3789,346,3805,340,3813,327,3816,315,3813,302,3805,288,3768,248,3731,223,3692,210,3651,204,3560,202,3508,197,3451,185,3287,134,3214,114,3120,97,2974,80,2783,67,2321,47,1858,36,1516,31"/> <area shape="poly" id="edge123_Node000001_Node000027" title=" " alt="" coords="2188,25,2552,29,3023,39,3249,48,3440,59,3578,74,3620,82,3641,92,3664,111,3688,128,3709,146,3722,168,3722,196,3704,233,3664,281,3597,344,3557,352,3465,361,3176,381,2591,415,2591,410,3175,376,3464,356,3557,347,3595,340,3660,278,3700,230,3717,195,3717,169,3705,149,3685,132,3661,115,3639,96,3618,87,3577,79,3440,65,3248,53,3023,45,2552,34,2189,30"/>
<area shape="rect" id="Node000029" href="$engine__priming_8cpp.html" title=" " alt="" coords="2575,501,2713,542"/> <area shape="rect" id="Node000029" href="$engine__priming_8cpp.html" title=" " alt="" coords="3059,501,3197,542"/>
<area shape="poly" id="edge132_Node000001_Node000029" title=" " alt="" coords="1516,25,1987,32,2639,44,3253,64,3477,77,3610,91,3679,104,3734,115,3784,137,3810,156,3838,181,3873,220,3896,259,3901,280,3900,301,3893,322,3879,344,3849,361,3794,378,3639,410,3384,448,3194,474,3006,494,2713,518,2713,513,3006,489,3194,469,3384,443,3638,404,3792,373,3847,356,3876,340,3889,320,3895,300,3896,280,3891,261,3869,223,3834,185,3807,160,3782,142,3733,120,3678,109,3609,97,3477,82,3253,69,2639,50,1987,37,1517,31"/> <area shape="poly" id="edge133_Node000001_Node000029" title=" " alt="" coords="2188,25,2567,31,3062,43,3300,51,3503,62,3650,76,3696,83,3720,92,3749,119,3767,149,3775,182,3774,216,3765,250,3748,283,3725,315,3696,344,3638,388,3573,424,3505,453,3436,476,3368,493,3304,505,3198,519,3197,513,3303,500,3367,487,3434,470,3503,448,3571,419,3635,383,3693,340,3721,311,3744,280,3760,248,3769,215,3769,183,3762,151,3744,122,3717,96,3695,88,3649,81,3503,68,3300,57,3062,48,2567,36,2189,31"/>
<area shape="rect" id="Node000030" href="$engine__defined_8cpp.html" title=" " alt="" coords="459,398,597,438"/> <area shape="rect" id="Node000030" href="$engine__defined_8cpp.html" title=" " alt="" coords="395,398,533,438"/>
<area shape="poly" id="edge130_Node000001_Node000030" title=" " alt="" coords="1306,30,1110,38,868,51,637,69,542,82,470,97,345,125,292,137,245,150,201,169,160,196,122,235,84,288,76,302,73,315,75,327,83,340,101,350,134,360,235,379,461,408,457,412,234,385,133,366,99,355,79,344,70,329,68,315,71,300,79,285,117,231,157,192,198,165,243,145,291,131,344,120,469,91,541,77,636,64,868,45,1110,33,1311,28"/> <area shape="poly" id="edge131_Node000001_Node000030" title=" " alt="" coords="1977,29,1603,38,1111,51,672,71,525,83,479,89,456,96,425,119,403,144,389,171,382,200,381,232,385,266,406,341,423,371,445,397,440,397,419,374,402,343,380,267,375,232,376,200,384,169,399,141,421,115,453,92,478,84,524,77,671,65,1111,46,1603,33,1982,28"/>
<area shape="rect" id="Node000031" href="$engine__multiscale_8h.html" title=" " alt="" coords="1208,286,1352,342"/> <area shape="rect" id="Node000031" href="$engine__multiscale_8h.html" title=" " alt="" coords="1208,286,1352,342"/>
<area shape="poly" id="edge121_Node000001_Node000031" title=" " alt="" coords="1340,52,1314,73,1294,95,1283,119,1275,144,1268,196,1270,245,1276,287,1271,285,1265,246,1263,196,1270,142,1278,117,1290,93,1310,69,1335,55"/> <area shape="poly" id="edge122_Node000001_Node000031" title=" " alt="" coords="1977,29,1793,36,1578,47,1478,56,1392,67,1329,80,1308,88,1295,96,1280,116,1270,140,1264,165,1262,192,1266,243,1274,287,1269,285,1260,244,1257,192,1259,165,1265,138,1275,114,1292,92,1305,83,1327,75,1391,61,1477,50,1578,42,1793,31,1982,28"/>
<area shape="rect" id="Node000033" href="$engine__adaptive_8h.html" title=" " alt="" coords="2127,286,2270,342"/> <area shape="rect" id="Node000034" href="$engine__adaptive_8h.html" title=" " alt="" coords="2179,286,2322,342"/>
<area shape="poly" id="edge119_Node000001_Node000033" title=" " alt="" coords="1515,29,1814,50,1961,68,2022,79,2067,91,2113,106,2150,121,2180,143,2208,181,2217,208,2219,236,2210,288,2206,284,2213,236,2212,209,2203,184,2177,147,2147,126,2112,111,2066,97,2020,84,1961,74,1813,56,1516,34"/> <area shape="poly" id="edge120_Node000001_Node000034" title=" " alt="" coords="2133,52,2183,92,2219,133,2241,182,2253,237,2254,288,2250,285,2247,238,2236,183,2214,136,2179,96,2132,57"/>
<area shape="rect" id="Node000035" href="$engine__adaptive_8cpp.html" title=" " alt="" coords="2209,501,2354,542"/> <area shape="rect" id="Node000036" href="$engine__adaptive_8cpp.html" title=" " alt="" coords="2434,501,2579,542"/>
<area shape="poly" id="edge129_Node000001_Node000035" title=" " alt="" coords="1516,25,1919,28,2481,37,2774,46,3048,57,3283,72,3462,91,3597,107,3657,115,3711,128,3759,148,3800,179,3833,224,3857,285,3866,316,3865,330,3857,344,3838,357,3807,368,3717,388,3598,405,3464,418,3206,437,3051,448,2354,516,2354,511,3050,443,3205,432,3464,413,3597,399,3716,383,3806,363,3836,352,3853,340,3860,328,3861,316,3852,287,3828,227,3796,183,3756,153,3709,133,3656,121,3596,112,3461,97,3283,78,3047,62,2774,51,2481,42,1919,33,1516,30"/> <area shape="poly" id="edge130_Node000001_Node000036" title=" " alt="" coords="2187,26,2558,32,3042,45,3472,65,3616,77,3661,84,3685,92,3707,110,3719,130,3731,182,3735,210,3735,235,3729,257,3720,277,3689,312,3644,344,3605,365,3556,384,3433,418,3286,446,3127,470,2814,502,2579,519,2579,514,2813,497,3127,464,3286,441,3432,413,3554,379,3603,360,3641,340,3685,308,3715,274,3724,255,3729,234,3730,210,3725,183,3714,132,3703,114,3683,96,3660,89,3616,82,3472,70,3041,51,2558,38,2188,31"/>
<area shape="rect" id="Node000044" href="$python_8h.html" title=" " alt="" coords="2669,190,2822,231"/> <area shape="rect" id="Node000045" href="$python_8h.html" title=" " alt="" coords="2669,190,2822,231"/>
<area shape="poly" id="edge123_Node000001_Node000044" title=" " alt="" coords="1515,25,1674,30,1876,41,2102,60,2327,91,2428,112,2528,138,2691,190,2686,190,2526,143,2427,117,2326,97,2101,66,1876,46,1674,35,1516,31"/> <area shape="poly" id="edge124_Node000001_Node000045" title=" " alt="" coords="2174,48,2658,180,2684,190,2678,189,2657,185,2173,53"/>
<area shape="rect" id="Node000045" href="$python_8cpp.html" title=" " alt="" coords="2753,294,2887,334"/> <area shape="rect" id="Node000046" href="$python_8cpp.html" title=" " alt="" coords="2805,294,2939,334"/>
<area shape="poly" id="edge133_Node000001_Node000045" title=" " alt="" coords="1516,26,1691,31,1919,42,2175,62,2432,91,2497,97,2555,96,2658,92,2705,96,2750,110,2794,137,2837,181,2849,209,2849,240,2842,269,2832,295,2828,291,2837,268,2844,239,2844,210,2832,184,2790,141,2748,115,2704,101,2658,97,2555,101,2497,102,2432,97,2174,67,1919,48,1691,37,1517,31"/> <area shape="poly" id="edge134_Node000001_Node000046" title=" " alt="" coords="2188,29,2364,43,2466,55,2570,70,2668,90,2755,115,2825,145,2851,162,2871,181,2885,208,2889,239,2887,269,2880,295,2876,292,2881,268,2884,239,2880,210,2867,184,2848,166,2822,149,2753,120,2666,95,2569,76,2466,60,2364,49,2189,35"/>
<area shape="rect" id="Node000046" href="$policy__abstract_8h.html" title="Abstract policy interfaces used to construct reaction networks (DynamicEngine) from seed compositions..." alt="" coords="4022,294,4184,334"/> <area shape="rect" id="Node000047" href="$policy__abstract_8h.html" title="Abstract policy interfaces used to construct reaction networks (DynamicEngine) from seed compositions..." alt="" coords="3862,294,4024,334"/>
<area shape="poly" id="edge124_Node000001_Node000046" title=" " alt="" coords="1516,25,2110,32,2948,45,3704,64,3950,77,4022,84,4055,92,4075,113,4090,139,4100,167,4106,196,4110,251,4107,296,4103,292,4105,251,4101,197,4095,168,4085,141,4071,117,4052,96,4021,89,3950,82,3704,70,2947,50,2110,37,1517,31"/> <area shape="poly" id="edge125_Node000001_Node000047" title=" " alt="" coords="2188,25,2593,31,3128,42,3386,51,3607,62,3767,75,3817,83,3844,92,3869,112,3889,137,3918,194,3935,249,3943,295,3938,292,3930,251,3913,196,3884,140,3865,116,3841,96,3816,88,3767,81,3607,67,3386,56,3128,48,2593,36,2189,31"/>
<area shape="rect" id="Node000065" href="$solver_2bindings_8cpp.html" title=" " alt="" coords="2841,405,3039,431"/> <area shape="rect" id="Node000066" href="$solver_2bindings_8cpp.html" title=" " alt="" coords="3029,405,3227,431"/>
<area shape="poly" id="edge136_Node000001_Node000065" title=" " alt="" coords="1515,26,1877,32,2371,44,2865,63,3071,76,3227,91,3327,100,3418,103,3502,105,3578,111,3649,127,3682,140,3714,158,3746,181,3776,209,3805,243,3833,285,3841,300,3844,315,3842,330,3833,344,3817,355,3791,364,3716,380,3616,392,3499,402,3249,414,3040,418,3039,413,3249,408,3498,396,3615,387,3716,375,3790,359,3814,350,3829,340,3837,328,3839,315,3836,302,3828,288,3800,247,3772,213,3742,185,3712,163,3680,145,3647,132,3577,117,3501,110,3418,108,3327,105,3226,97,3071,82,2865,69,2371,49,1877,37,1516,31"/> <area shape="poly" id="edge137_Node000001_Node000066" title=" " alt="" coords="2188,26,2411,33,2689,45,2957,64,3067,76,3151,91,3226,107,3292,117,3353,127,3408,139,3459,157,3508,185,3553,227,3598,285,3606,300,3610,315,3607,329,3598,344,3573,363,3537,378,3492,391,3441,400,3331,412,3228,418,3227,413,3330,407,3440,395,3491,385,3535,373,3571,358,3594,340,3602,327,3604,315,3601,302,3594,288,3550,230,3504,189,3457,162,3407,144,3352,132,3292,123,3225,112,3150,97,3067,82,2956,69,2689,50,2411,38,2189,32"/>
<area shape="rect" id="Node000072" href="$logging_8h.html" title=" " alt="" coords="3074,190,3201,231"/> <area shape="rect" id="Node000073" href="$logging_8h.html" title=" " alt="" coords="3192,190,3320,231"/>
<area shape="poly" id="edge125_Node000001_Node000072" title=" " alt="" coords="1516,26,1857,33,2300,46,2708,65,2856,77,2943,91,2994,111,3042,137,3116,190,3111,189,3039,141,2992,116,2942,97,2855,82,2708,70,2300,51,1857,38,1517,31"/> <area shape="poly" id="edge126_Node000001_Node000073" title=" " alt="" coords="2188,24,2401,26,2664,36,2796,44,2916,56,3019,72,3097,91,3140,112,3179,137,3240,190,3234,189,3176,142,3137,116,3095,97,3018,77,2916,61,2795,49,2664,41,2401,32,2189,29"/>
<area shape="rect" id="Node000074" href="$logging_8cpp.html" title=" " alt="" coords="3640,301,3794,327"/> <area shape="rect" id="Node000075" href="$logging_8cpp.html" title=" " alt="" coords="3014,301,3168,327"/>
<area shape="poly" id="edge135_Node000001_Node000074" title=" " alt="" coords="1516,26,1837,32,2268,44,2695,64,2872,76,3007,91,3106,109,3181,127,3351,180,3543,245,3689,301,3684,300,3541,250,3350,185,3180,132,3105,114,3006,97,2872,82,2695,69,2268,50,1837,37,1516,31"/> <area shape="poly" id="edge136_Node000001_Node000075" title=" " alt="" coords="2188,25,2409,29,2673,39,2798,48,2905,59,2986,74,3014,82,3032,92,3054,115,3070,142,3082,172,3089,203,3095,260,3094,303,3090,299,3090,260,3084,204,3077,174,3065,145,3050,118,3029,96,3012,87,2985,79,2904,65,2797,53,2673,45,2409,34,2189,30"/>
<area shape="rect" id="Node000076" href="$engine_2scratchpads_2utils_8h.html" title="Utility functions for convenient scratchpad retrieval with exception handling." alt="" coords="387,294,565,334"/> <area shape="rect" id="Node000077" href="$engine_2scratchpads_2utils_8h.html" title="Utility functions for convenient scratchpad retrieval with exception handling." alt="" coords="94,294,271,334"/>
<area shape="poly" id="edge112_Node000001_Node000076" title=" " alt="" coords="1306,31,1138,41,944,54,777,72,719,84,687,96,671,112,662,128,656,163,652,201,644,221,630,240,610,258,588,273,542,296,539,291,585,269,607,254,626,237,639,218,646,200,651,162,657,126,667,108,684,92,718,79,776,67,944,49,1138,36,1311,30"/> <area shape="poly" id="edge113_Node000001_Node000077" title=" " alt="" coords="1977,29,1569,36,1022,48,758,57,532,67,369,81,318,88,292,96,268,116,247,140,217,195,198,251,188,294,183,293,193,249,212,193,243,137,264,112,289,92,317,83,368,75,532,62,758,51,1022,42,1569,31,1982,27"/>
<area shape="rect" id="Node000003" href="$engine_8h.html" title="Core header for the GridFire reaction network engine module." alt="" coords="691,701,818,742"/> <area shape="rect" id="Node000003" href="$engine_8h.html" title="Core header for the GridFire reaction network engine module." alt="" coords="827,701,954,742"/>
<area shape="poly" id="edge2_Node000002_Node000003" title=" " alt="" coords="412,221,322,232,225,246,140,265,107,276,83,289,48,315,25,342,12,374,8,417,8,523,11,551,19,573,32,591,49,605,95,627,150,651,195,665,256,678,405,697,563,709,693,718,688,718,562,714,405,702,255,683,194,670,148,655,93,632,46,609,28,594,14,576,6,552,3,523,3,416,7,373,20,339,44,311,80,284,105,271,139,259,225,240,321,227,416,218"/> <area shape="poly" id="edge2_Node000002_Node000003" title=" " alt="" coords="412,218,320,227,222,240,137,260,105,273,83,288,62,317,55,345,59,416,59,523,65,550,83,575,112,597,150,617,196,635,249,650,368,675,497,693,624,705,829,718,824,719,624,710,497,698,368,680,248,655,194,640,148,622,109,601,79,578,60,552,53,523,53,417,50,345,57,315,79,284,103,268,136,255,221,234,320,221,416,215"/>
<area shape="poly" id="edge3_Node000002_Node000012" title=" " alt="" coords="421,245,266,296,263,291,424,241"/> <area shape="poly" id="edge3_Node000002_Node000012" title=" " alt="" coords="538,250,553,294,548,293,536,256"/>
<area shape="rect" id="Node000013" href="$_point_solver_8cpp.html" title=" " alt="" coords="887,398,1044,438"/> <area shape="rect" id="Node000013" href="$_point_solver_8cpp.html" title=" " alt="" coords="926,398,1082,438"/>
<area shape="poly" id="edge4_Node000002_Node000013" title=" " alt="" coords="586,243,781,340,916,397,911,397,779,344,586,248"/> <area shape="poly" id="edge4_Node000002_Node000013" title=" " alt="" coords="465,250,452,268,440,287,430,316,432,328,439,340,467,359,508,372,559,379,614,383,726,384,812,387,928,405,923,406,812,393,726,389,614,388,558,385,507,377,465,364,435,344,426,330,425,315,435,285,448,264,469,246"/>
<area shape="poly" id="edge6_Node000014_Node000002" title=" " alt="" coords="1866,122,1421,148,835,185,617,203,616,198,834,180,1420,143,1871,120"/> <area shape="poly" id="edge6_Node000014_Node000002" title=" " alt="" coords="1980,117,1751,124,1429,134,1060,154,686,185,617,195,615,190,685,180,1060,149,1429,129,1751,118,1985,116"/>
<area shape="poly" id="edge7_Node000014_Node000003" title=" " alt="" coords="1866,121,1587,145,1448,162,1392,173,1349,185,1301,205,1266,225,1235,251,1198,288,1168,324,1147,358,1120,424,1107,456,1090,487,1066,519,1031,551,996,572,964,579,932,584,895,600,859,624,825,652,773,703,771,698,822,648,856,620,892,595,930,579,963,574,994,567,1028,547,1062,516,1085,484,1102,453,1115,422,1142,356,1163,321,1194,285,1231,247,1263,221,1299,200,1347,180,1390,168,1447,157,1586,139,1871,120"/> <area shape="poly" id="edge7_Node000014_Node000003" title=" " alt="" coords="1981,120,1843,130,1688,143,1558,161,1514,172,1491,185,1471,216,1469,227,1471,236,1487,251,1513,262,1578,273,1605,278,1622,284,1667,336,1715,413,1735,454,1747,492,1751,525,1742,551,1349,656,1133,692,955,716,954,710,1132,687,1347,650,1738,547,1745,525,1742,493,1730,456,1711,416,1663,339,1618,289,1603,283,1577,278,1512,267,1484,256,1467,239,1464,227,1466,214,1488,181,1512,167,1557,156,1688,138,1843,125,1986,119"/>
<area shape="poly" id="edge102_Node000014_Node000012" title=" " alt="" coords="1866,118,1685,125,1442,136,1168,155,891,185,817,198,760,211,629,241,480,265,331,289,297,295,294,291,330,284,479,260,627,236,758,206,816,192,890,180,1167,150,1442,130,1685,119,1871,116"/> <area shape="poly" id="edge103_Node000014_Node000012" title=" " alt="" coords="1981,115,1800,119,1557,128,1282,149,1143,165,1007,185,895,209,786,239,612,296,610,291,784,234,894,204,1006,180,1142,159,1282,143,1556,123,1800,114,1986,114"/>
<area shape="poly" id="edge8_Node000014_Node000015" title=" " alt="" coords="1866,124,1576,150,1216,185,1098,200,1096,195,1216,180,1575,145,1871,123"/> <area shape="poly" id="edge8_Node000014_Node000015" title=" " alt="" coords="1981,124,1696,150,1344,185,1225,200,1224,195,1344,180,1696,145,1986,123"/>
<area shape="poly" id="edge45_Node000014_Node000016" title=" " alt="" coords="1866,116,1628,122,1334,131,1194,140,1073,151,981,166,950,175,931,185,911,209,898,238,892,268,889,295,884,292,886,267,893,236,906,206,928,181,948,170,980,161,1072,146,1193,134,1334,126,1628,116,1871,115"/> <area shape="poly" id="edge47_Node000014_Node000016" title=" " alt="" coords="1981,117,1747,124,1458,135,1320,144,1200,155,1110,168,1079,176,1059,185,1034,208,1015,238,1002,268,994,295,990,292,997,266,1010,235,1030,205,1056,180,1077,171,1109,163,1200,149,1319,138,1457,130,1746,119,1986,116"/>
<area shape="poly" id="edge103_Node000014_Node000019" title=" " alt="" coords="2069,134,2105,153,2133,181,2140,196,2141,210,2133,239,2122,273,2111,299,2093,322,2065,344,2027,363,1971,379,1846,406,1845,400,1970,374,2025,358,2063,340,2089,318,2106,297,2118,271,2128,238,2136,209,2135,197,2128,184,2102,157,2069,139"/> <area shape="poly" id="edge104_Node000014_Node000019" title=" " alt="" coords="2034,142,2009,163,1987,184,1968,210,1957,232,1943,287,1938,314,1943,341,1955,370,1971,398,1966,396,1950,373,1937,343,1933,314,1937,286,1952,230,1964,207,1983,181,2006,159,2030,144"/>
<area shape="rect" id="Node000021" href="$engine__graph__scratchpad_8h.html" title="Scratchpad implementation for the GraphEngine using CppAD automatic differentiation." alt="" coords="1375,286,1556,342"/> <area shape="rect" id="Node000021" href="$engine__graph__scratchpad_8h.html" title="Scratchpad implementation for the GraphEngine using CppAD automatic differentiation." alt="" coords="1427,286,1608,342"/>
<area shape="poly" id="edge46_Node000014_Node000021" title=" " alt="" coords="1866,131,1780,153,1734,167,1690,185,1668,198,1652,211,1615,241,1526,288,1523,283,1612,236,1649,207,1665,194,1688,180,1733,162,1779,148,1871,129"/> <area shape="poly" id="edge48_Node000014_Node000021" title=" " alt="" coords="1981,124,1865,146,1803,163,1742,185,1720,198,1704,211,1667,241,1578,288,1575,283,1664,236,1701,207,1717,193,1740,180,1801,158,1864,141,1986,123"/>
<area shape="poly" id="edge106_Node000014_Node000025" title=" " alt="" coords="2070,127,2140,147,2175,162,2207,180,2260,225,2292,270,2315,322,2340,389,2375,469,2380,506,2376,527,2368,550,2354,577,2336,601,2294,643,2250,678,2210,703,2208,698,2247,673,2291,639,2332,597,2349,574,2363,548,2371,526,2374,506,2370,471,2335,391,2310,324,2288,273,2256,229,2204,185,2172,166,2138,152,2070,132"/> <area shape="poly" id="edge107_Node000014_Node000025" title=" " alt="" coords="2157,138,2200,157,2240,181,2277,214,2321,262,2365,309,2403,340,2435,352,2466,356,2523,352,2551,350,2578,353,2604,365,2629,388,2644,412,2651,436,2652,460,2646,484,2635,507,2620,530,2578,574,2528,615,2473,650,2376,703,2375,698,2470,646,2524,610,2575,570,2616,527,2631,505,2641,482,2646,459,2646,437,2639,414,2625,392,2601,369,2576,358,2551,355,2524,357,2465,361,2434,357,2400,344,2361,313,2317,266,2274,218,2237,185,2197,162,2157,143"/>
<area shape="poly" id="edge55_Node000014_Node000026" title=" " alt="" coords="1867,131,1777,154,1740,168,1717,184,1704,208,1698,234,1699,288,1695,284,1692,234,1699,206,1713,181,1737,164,1775,149,1872,129"/> <area shape="poly" id="edge57_Node000014_Node000026" title=" " alt="" coords="1981,125,1919,135,1856,147,1802,164,1782,174,1769,184,1755,207,1749,234,1749,261,1751,287,1746,284,1743,261,1744,233,1750,206,1765,181,1779,169,1800,159,1854,142,1918,130,1986,123"/>
<area shape="poly" id="edge56_Node000014_Node000031" title=" " alt="" coords="1866,122,1632,146,1518,163,1473,174,1438,185,1399,207,1362,234,1305,288,1302,284,1358,230,1396,202,1436,180,1471,168,1517,158,1631,141,1871,121"/> <area shape="poly" id="edge58_Node000014_Node000031" title=" " alt="" coords="1981,120,1848,129,1692,142,1548,160,1490,172,1446,185,1405,207,1366,234,1306,288,1303,284,1363,229,1402,202,1444,180,1489,167,1547,155,1692,136,1848,124,1986,119"/>
<area shape="poly" id="edge47_Node000014_Node000033" title=" " alt="" coords="2070,124,2128,144,2154,160,2177,181,2192,206,2200,234,2203,288,2199,284,2195,235,2187,208,2173,184,2151,165,2125,149,2070,129"/> <area shape="poly" id="edge49_Node000014_Node000034" title=" " alt="" coords="2152,139,2182,158,2207,181,2224,206,2236,234,2249,287,2245,285,2231,236,2219,209,2203,184,2179,162,2151,145"/>
<area shape="rect" id="Node000036" href="$engine__view__abstract_8h.html" title="Abstract interfaces for engine &quot;views&quot; in GridFire." alt="" coords="1727,183,1870,238"/> <area shape="rect" id="Node000037" href="$engine__view__abstract_8h.html" title="Abstract interfaces for engine &quot;views&quot; in GridFire." alt="" coords="1779,183,1922,238"/>
<area shape="poly" id="edge57_Node000014_Node000036" title=" " alt="" coords="1923,141,1849,185,1847,180,1918,143"/> <area shape="poly" id="edge59_Node000014_Node000037" title=" " alt="" coords="2024,140,1919,185,1917,180,2018,142"/>
<area shape="rect" id="Node000037" href="$mesa_8h.html" title=" " alt="" coords="2447,190,2593,231"/> <area shape="rect" id="Node000038" href="$mesa_8h.html" title=" " alt="" coords="2499,190,2645,231"/>
<area shape="poly" id="edge62_Node000014_Node000037" title=" " alt="" coords="2070,124,2239,146,2429,180,2459,190,2453,190,2427,185,2238,151,2070,129"/> <area shape="poly" id="edge64_Node000014_Node000038" title=" " alt="" coords="2185,127,2326,149,2481,180,2510,190,2505,190,2479,185,2325,155,2185,132"/>
<area shape="rect" id="Node000043" href="$mesa_8cpp.html" title=" " alt="" coords="2396,294,2530,334"/> <area shape="rect" id="Node000044" href="$mesa_8cpp.html" title=" " alt="" coords="2448,294,2582,334"/>
<area shape="poly" id="edge104_Node000014_Node000043" title=" " alt="" coords="2070,120,2155,129,2245,142,2324,158,2355,169,2379,180,2407,205,2430,236,2458,294,2453,292,2425,238,2403,209,2376,185,2353,174,2322,164,2244,147,2155,134,2070,126"/> <area shape="poly" id="edge105_Node000014_Node000044" title=" " alt="" coords="2184,124,2325,146,2388,162,2431,180,2459,206,2482,236,2510,294,2505,292,2477,239,2455,209,2428,185,2386,167,2324,151,2185,129"/>
<area shape="poly" id="edge65_Node000014_Node000044" title=" " alt="" coords="2070,118,2334,137,2492,155,2650,180,2683,190,2677,190,2649,185,2491,161,2333,143,2070,123"/> <area shape="poly" id="edge67_Node000014_Node000045" title=" " alt="" coords="2185,119,2403,140,2531,157,2658,180,2688,190,2682,189,2657,185,2530,163,2403,145,2185,125"/>
<area shape="poly" id="edge105_Node000014_Node000045" title=" " alt="" coords="2070,115,2206,121,2362,132,2505,151,2563,164,2607,180,2624,193,2635,207,2644,222,2659,236,2711,267,2766,293,2761,293,2709,272,2656,240,2640,225,2630,210,2620,197,2604,185,2562,170,2504,157,2361,138,2206,126,2070,120"/> <area shape="poly" id="edge106_Node000014_Node000046" title=" " alt="" coords="2184,116,2361,123,2564,135,2740,154,2801,166,2836,181,2857,206,2869,237,2874,267,2875,295,2871,292,2869,268,2863,238,2852,209,2833,185,2800,171,2739,159,2563,140,2361,128,2185,121"/>
<area shape="poly" id="edge68_Node000014_Node000046" title=" " alt="" coords="2070,114,2300,118,2617,128,2981,148,3168,162,3351,180,3540,205,3727,236,4024,295,4019,295,3726,241,3539,210,3350,185,3168,167,2981,153,2617,133,2299,123,2070,119"/> <area shape="poly" id="edge70_Node000014_Node000047" title=" " alt="" coords="2184,113,2394,116,2679,126,3004,146,3170,161,3332,180,3483,204,3632,234,3872,293,3866,293,3631,239,3482,209,3332,185,3169,166,3003,151,2679,131,2394,122,2185,118"/>
<area shape="rect" id="Node000051" href="$stellar__policy_8h.html" title="High&#45;level concrete NetworkPolicy for specific stellar environments." alt="" coords="4114,605,4262,646"/> <area shape="rect" id="Node000052" href="$stellar__policy_8h.html" title="High&#45;level concrete NetworkPolicy for specific stellar environments." alt="" coords="3696,605,3845,646"/>
<area shape="poly" id="edge85_Node000014_Node000051" title=" " alt="" coords="2070,116,2121,123,2175,135,2228,154,2278,180,2300,200,2315,221,2331,263,2348,304,2363,323,2385,340,2412,352,2444,362,2522,375,2613,382,2710,384,2902,382,2985,383,3051,387,3350,430,3581,471,3810,522,4103,595,4130,605,4125,604,4102,600,3809,527,3580,476,3349,435,3050,393,2985,388,2902,387,2710,389,2613,387,2521,381,2443,367,2410,357,2383,344,2359,327,2344,307,2326,265,2310,223,2296,203,2274,185,2226,159,2173,140,2120,128,2070,122"/> <area shape="poly" id="edge87_Node000014_Node000052" title=" " alt="" coords="2185,125,2299,147,2348,163,2380,181,2397,201,2406,222,2409,264,2412,304,2421,323,2438,340,2457,349,2488,356,2580,366,2699,373,2832,376,3087,379,3182,381,3239,387,3315,409,3390,435,3534,495,3655,556,3741,605,3735,604,3652,560,3532,500,3388,440,3313,414,3238,393,3182,387,3087,384,2832,381,2698,378,2579,372,2487,361,2455,354,2434,344,2416,326,2407,306,2403,264,2400,223,2393,203,2377,185,2346,167,2298,153,2185,131"/>
<area shape="rect" id="Node000055" href="$weak_8h.html" title=" " alt="" coords="1449,190,1602,231"/> <area shape="rect" id="Node000056" href="$weak_8h.html" title=" " alt="" coords="1501,190,1654,231"/>
<area shape="poly" id="edge86_Node000014_Node000055" title=" " alt="" coords="1866,133,1750,158,1621,185,1594,192,1592,187,1619,180,1749,152,1871,132"/> <area shape="poly" id="edge88_Node000014_Node000056" title=" " alt="" coords="1980,129,1836,154,1673,185,1645,192,1643,187,1671,180,1835,149,1986,128"/>
<area shape="rect" id="Node000060" href="$_point_solver_8h.html" title=" " alt="" coords="1850,294,2052,334"/> <area shape="rect" id="Node000061" href="$_point_solver_8h.html" title=" " alt="" coords="1952,294,2154,334"/>
<area shape="poly" id="edge87_Node000014_Node000060" title=" " alt="" coords="1950,146,1936,183,1932,213,1934,243,1946,295,1941,292,1929,243,1927,213,1931,182,1946,150"/> <area shape="poly" id="edge89_Node000014_Node000061" title=" " alt="" coords="2144,140,2168,159,2185,181,2194,210,2192,224,2185,240,2171,258,2154,273,2116,296,2114,291,2151,269,2167,254,2180,237,2187,223,2189,211,2180,184,2164,162,2143,146"/>
<area shape="rect" id="Node000070" href="$strategy__abstract_8h.html" title=" " alt="" coords="1946,183,2118,238"/> <area shape="rect" id="Node000071" href="$strategy__abstract_8h.html" title=" " alt="" coords="1998,183,2170,238"/>
<area shape="poly" id="edge91_Node000014_Node000070" title=" " alt="" coords="1992,145,2016,183,2011,181,1990,150"/> <area shape="poly" id="edge93_Node000014_Node000071" title=" " alt="" coords="2086,148,2086,184,2082,180,2082,152"/>
<area shape="poly" id="edge93_Node000014_Node000072" title=" " alt="" coords="2070,120,2835,180,3076,203,3071,204,2834,185,2070,126"/> <area shape="poly" id="edge95_Node000014_Node000073" title=" " alt="" coords="2184,120,2536,145,2980,180,3195,202,3189,203,2980,185,2536,150,2184,125"/>
<area shape="poly" id="edge107_Node000014_Node000074" title=" " alt="" coords="2070,112,2279,113,2563,122,2887,142,3052,159,3214,180,3305,199,3422,228,3629,284,3681,301,3675,301,3627,289,3421,233,3304,204,3213,185,3052,164,2887,148,2563,127,2279,119,2070,117"/> <area shape="poly" id="edge108_Node000014_Node000075" title=" " alt="" coords="2184,116,2351,123,2549,136,2736,154,2812,166,2870,180,2934,206,2993,240,3078,301,3073,300,2990,244,2931,211,2869,185,2811,171,2735,159,2548,141,2351,128,2185,121"/>
<area shape="poly" id="edge9_Node000015_Node000003" title=" " alt="" coords="925,225,377,289,352,319,336,350,328,382,329,415,338,448,353,481,374,515,401,548,432,579,468,606,545,651,623,682,693,706,688,706,622,687,543,655,465,611,429,583,397,551,370,518,348,484,333,450,324,416,323,382,330,348,347,316,375,284,927,220"/> <area shape="poly" id="edge9_Node000015_Node000003" title=" " alt="" coords="1051,223,942,248,882,266,825,289,804,302,789,315,774,329,753,344,722,357,694,362,670,370,659,379,649,392,628,427,613,460,603,492,599,524,601,554,610,586,626,618,649,651,660,661,676,670,721,686,829,711,824,711,720,692,674,675,656,665,645,655,621,620,605,587,596,555,594,523,598,491,608,459,623,424,644,388,656,375,667,366,693,357,720,352,751,340,771,325,785,311,801,297,823,284,880,261,941,243,1056,222"/>
<area shape="poly" id="edge44_Node000015_Node000013" title=" " alt="" coords="1015,244,996,343,976,399,972,395,991,341,1012,248"/> <area shape="poly" id="edge46_Node000015_Node000013" title=" " alt="" coords="1140,244,1124,294,1097,344,1068,375,1036,399,1034,395,1064,371,1093,340,1119,292,1136,248"/>
<area shape="poly" id="edge10_Node000015_Node000016" title=" " alt="" coords="984,239,913,296,911,291,979,242"/> <area shape="poly" id="edge10_Node000015_Node000016" title=" " alt="" coords="1105,238,1020,296,1017,291,1101,241"/>
<area shape="poly" id="edge41_Node000015_Node000018" title=" " alt="" coords="923,227,852,251,815,267,782,288,754,314,732,344,701,399,697,395,727,341,750,310,778,284,813,263,850,246,928,225"/> <area shape="poly" id="edge43_Node000015_Node000018" title=" " alt="" coords="1051,227,968,252,924,268,883,289,865,301,853,314,826,344,757,399,754,395,822,340,849,310,861,297,880,284,922,263,967,246,1056,225"/>
<area shape="poly" id="edge16_Node000015_Node000021" title=" " alt="" coords="1112,228,1365,284,1377,289,1372,289,1363,289,1112,233"/> <area shape="poly" id="edge16_Node000015_Node000021" title=" " alt="" coords="1233,233,1429,288,1424,288,1233,238"/>
<area shape="poly" id="edge43_Node000015_Node000025" title=" " alt="" coords="1035,243,1081,331,1114,385,1154,444,1200,503,1253,559,1311,610,1374,651,1416,663,1490,674,1696,692,2108,717,2102,717,1695,698,1489,679,1415,668,1372,655,1308,614,1249,563,1196,507,1150,447,1110,388,1076,333,1033,248"/> <area shape="poly" id="edge45_Node000015_Node000025" title=" " alt="" coords="1144,244,1113,482,1101,598,1100,635,1102,651,1118,658,1152,665,1264,678,1604,698,1983,710,2269,719,2263,719,1983,715,1604,703,1264,683,1151,671,1116,663,1098,655,1095,636,1096,597,1107,482,1140,248"/>
<area shape="poly" id="edge25_Node000015_Node000026" title=" " alt="" coords="1111,220,1321,247,1568,284,1633,298,1628,298,1568,289,1321,252,1112,225"/> <area shape="poly" id="edge25_Node000015_Node000026" title=" " alt="" coords="1239,223,1620,284,1685,298,1680,298,1620,289,1240,228"/>
<area shape="poly" id="edge42_Node000015_Node000030" title=" " alt="" coords="923,228,828,253,776,269,726,289,676,315,628,345,553,399,550,395,625,340,673,310,724,284,774,264,827,248,928,226"/> <area shape="poly" id="edge44_Node000015_Node000030" title=" " alt="" coords="1051,225,926,250,856,268,788,289,756,302,733,315,680,344,602,375,529,399,527,395,600,370,678,340,731,311,754,297,786,284,854,262,925,245,1056,223"/>
<area shape="poly" id="edge33_Node000015_Node000031" title=" " alt="" coords="1083,234,1213,286,1207,286,1083,239"/> <area shape="poly" id="edge33_Node000015_Node000031" title=" " alt="" coords="1185,238,1247,286,1242,286,1184,243"/>
<area shape="rect" id="Node000017" href="$engine__procedures_8h.html" title=" " alt="" coords="607,597,780,653"/> <area shape="rect" id="Node000017" href="$engine__procedures_8h.html" title=" " alt="" coords="659,597,832,653"/>
<area shape="poly" id="edge11_Node000016_Node000017" title=" " alt="" coords="869,347,712,599,708,595,864,349"/> <area shape="poly" id="edge11_Node000016_Node000017" title=" " alt="" coords="953,343,905,392,861,447,821,504,762,599,759,595,816,501,856,443,901,388,948,346"/>
<area shape="poly" id="edge13_Node000016_Node000018" title=" " alt="" coords="838,341,730,399,727,395,833,343"/> <area shape="poly" id="edge13_Node000016_Node000018" title=" " alt="" coords="922,341,781,399,778,394,927,339"/>
<area shape="poly" id="edge14_Node000016_Node000019" title=" " alt="" coords="996,325,1680,406,1675,408,996,331"/> <area shape="poly" id="edge14_Node000016_Node000019" title=" " alt="" coords="1097,327,1196,339,1591,379,1903,409,1898,410,1590,384,1196,345,1098,333"/>
<area shape="poly" id="edge15_Node000016_Node000020" title=" " alt="" coords="877,347,871,396,872,421,877,445,895,475,918,501,913,500,890,478,872,447,866,422,865,396,874,351"/> <area shape="poly" id="edge15_Node000016_Node000020" title=" " alt="" coords="950,343,930,367,916,391,911,420,917,449,930,477,945,502,940,500,925,479,912,451,906,420,911,389,926,364,946,346"/>
<area shape="poly" id="edge12_Node000017_Node000003" title=" " alt="" coords="721,664,744,702,740,700,718,668"/> <area shape="poly" id="edge12_Node000017_Node000003" title=" " alt="" coords="801,659,863,701,858,700,799,664"/>
<area shape="poly" id="edge22_Node000021_Node000018" title=" " alt="" coords="1357,343,1224,365,1117,373,1010,380,875,393,762,408,761,403,874,387,1010,374,1116,368,1223,359,1363,342"/> <area shape="poly" id="edge22_Node000021_Node000018" title=" " alt="" coords="1409,335,1364,345,1238,360,1139,370,914,393,801,408,799,403,913,387,1139,364,1237,355,1364,339,1414,334"/>
<area shape="poly" id="edge23_Node000021_Node000019" title=" " alt="" coords="1559,345,1707,397,1701,397,1559,350"/> <area shape="poly" id="edge23_Node000021_Node000019" title=" " alt="" coords="1623,336,1903,398,1898,399,1623,341"/>
<area shape="poly" id="edge17_Node000021_Node000022" title=" " alt="" coords="1465,356,1460,446,1452,502,1448,499,1455,445,1462,360"/> <area shape="poly" id="edge17_Node000021_Node000022" title=" " alt="" coords="1539,353,1614,502,1609,500,1536,358"/>
<area shape="poly" id="edge21_Node000021_Node000023" title=" " alt="" coords="1505,351,1543,395,1574,447,1583,474,1586,501,1582,527,1567,551,1546,563,1507,574,1394,593,1258,608,1130,619,1130,614,1258,603,1394,588,1506,569,1544,559,1563,547,1577,525,1581,501,1578,475,1569,449,1538,398,1503,356"/> <area shape="poly" id="edge21_Node000021_Node000023" title=" " alt="" coords="1519,356,1515,403,1505,454,1485,506,1471,530,1454,551,1429,573,1400,590,1337,612,1336,607,1397,585,1425,568,1450,547,1467,527,1481,503,1500,453,1510,402,1515,360"/>
<area shape="poly" id="edge24_Node000021_Node000025" title=" " alt="" coords="1518,348,1668,443,1933,592,2136,701,2131,700,1931,597,1665,448,1517,354"/> <area shape="poly" id="edge24_Node000021_Node000025" title=" " alt="" coords="1562,349,1686,444,1763,498,1843,547,1956,606,2077,650,2176,681,2269,706,2264,705,2175,686,2075,656,1954,611,1840,552,1760,502,1683,448,1561,355"/>
<area shape="poly" id="edge18_Node000022_Node000023" title=" " alt="" coords="1351,545,1101,607,1100,602,1346,546"/> <area shape="poly" id="edge18_Node000022_Node000023" title=" " alt="" coords="1532,546,1302,607,1301,602,1527,547"/>
<area shape="poly" id="edge19_Node000023_Node000003" title=" " alt="" coords="951,651,810,703,809,698,945,652"/> <area shape="poly" id="edge19_Node000023_Node000003" title=" " alt="" coords="1142,650,955,705,954,699,1137,651"/>
<area shape="rect" id="Node000024" href="$engine_2scratchpads_2bindings_8cpp.html" title=" " alt="" coords="918,701,1117,742"/> <area shape="rect" id="Node000024" href="$engine_2scratchpads_2bindings_8cpp.html" title=" " alt="" coords="1124,701,1324,742"/>
<area shape="poly" id="edge20_Node000023_Node000024" title=" " alt="" coords="1019,659,1019,702,1015,699,1015,663"/> <area shape="poly" id="edge20_Node000023_Node000024" title=" " alt="" coords="1226,659,1226,702,1222,699,1222,663"/>
<area shape="poly" id="edge26_Node000026_Node000027" title=" " alt="" coords="1790,331,1838,339,2523,409,2517,410,1837,345,1790,337"/> <area shape="poly" id="edge26_Node000026_Node000027" title=" " alt="" coords="1842,326,1940,339,2080,352,2189,356,2298,365,2437,387,2449,393,2444,392,2435,393,2298,370,2189,362,2080,357,1940,345,1842,331"/>
<area shape="rect" id="Node000028" href="$engine__views_8h.html" title=" " alt="" coords="1911,494,2054,549"/> <area shape="rect" id="Node000028" href="$engine__views_8h.html" title=" " alt="" coords="1854,494,1997,549"/>
<area shape="poly" id="edge31_Node000026_Node000028" title=" " alt="" coords="1785,346,1823,366,1858,388,1917,440,1964,494,1959,492,1914,444,1854,392,1820,370,1785,352"/> <area shape="poly" id="edge31_Node000026_Node000028" title=" " alt="" coords="1780,353,1812,398,1847,444,1896,494,1891,493,1843,447,1807,401,1778,358"/>
<area shape="poly" id="edge32_Node000026_Node000030" title=" " alt="" coords="1613,335,1568,345,1422,358,1298,363,1086,359,984,357,876,359,753,370,609,393,581,399,579,394,607,387,752,365,875,354,984,351,1087,353,1298,358,1422,353,1568,339,1618,334"/> <area shape="poly" id="edge32_Node000026_Node000030" title=" " alt="" coords="1665,335,1620,345,1473,360,1347,368,1134,373,920,375,795,381,647,393,534,407,532,402,646,387,794,375,920,370,1134,367,1347,363,1472,355,1620,339,1670,334"/>
<area shape="poly" id="edge27_Node000027_Node000028" title=" " alt="" coords="2507,433,2055,511,2054,506,2502,434"/> <area shape="poly" id="edge27_Node000027_Node000028" title=" " alt="" coords="2435,446,2310,473,2191,492,1998,516,1997,511,2190,487,2309,468,2430,447"/>
<area shape="poly" id="edge30_Node000027_Node000029" title=" " alt="" coords="2614,457,2637,502,2632,500,2611,462"/> <area shape="poly" id="edge30_Node000027_Node000029" title=" " alt="" coords="2606,431,3062,509,3056,509,2606,436"/>
<area shape="poly" id="edge28_Node000028_Node000003" title=" " alt="" coords="1896,539,819,712,819,707,1895,534"/> <area shape="poly" id="edge28_Node000028_Node000003" title=" " alt="" coords="1853,555,1719,610,1641,635,1563,656,1465,669,1296,686,955,717,955,712,1295,681,1465,664,1562,650,1640,630,1717,605,1848,556"/>
<area shape="poly" id="edge29_Node000028_Node000025" title=" " alt="" coords="2020,558,2156,701,2151,700,2018,563"/> <area shape="poly" id="edge29_Node000028_Node000025" title=" " alt="" coords="1996,554,2296,701,2290,700,1994,559"/>
<area shape="poly" id="edge40_Node000031_Node000020" title=" " alt="" coords="1225,349,974,503,972,498,1220,351"/> <area shape="poly" id="edge42_Node000031_Node000020" title=" " alt="" coords="1234,351,1096,448,997,503,995,498,1093,443,1229,353"/>
<area shape="poly" id="edge39_Node000031_Node000028" title=" " alt="" coords="1366,344,1507,393,1667,443,1796,477,1913,505,1908,505,1795,482,1666,448,1506,398,1366,350"/> <area shape="poly" id="edge40_Node000031_Node000028" title=" " alt="" coords="1367,340,1856,497,1851,498,1366,346"/>
<area shape="rect" id="Node000032" href="$engine__multiscale__scratchpad_8h.html" title="Scratchpad implementation for the MultiscalePartitioningEngineView." alt="" coords="1220,390,1401,446"/> <area shape="rect" id="Node000032" href="$engine__multiscale__scratchpad_8h.html" title="Scratchpad implementation for the MultiscalePartitioningEngineView." alt="" coords="1208,390,1389,446"/>
<area shape="poly" id="edge34_Node000031_Node000032" title=" " alt="" coords="1294,355,1305,391,1300,388,1291,359"/> <area shape="poly" id="edge34_Node000031_Node000032" title=" " alt="" coords="1289,355,1296,391,1291,388,1286,360"/>
<area shape="poly" id="edge37_Node000032_Node000020" title=" " alt="" coords="1208,447,1012,503,1011,498,1203,449"/> <area shape="rect" id="Node000033" href="$engine__multiscale__scratchpad_8cpp.html" title=" " alt="" coords="1214,501,1439,542"/>
<area shape="poly" id="edge35_Node000032_Node000022" title=" " alt="" coords="1360,452,1423,501,1418,500,1358,458"/> <area shape="poly" id="edge41_Node000031_Node000033" title=" " alt="" coords="1363,348,1386,366,1404,389,1410,404,1412,418,1404,447,1383,478,1357,503,1354,498,1379,475,1399,445,1407,417,1405,405,1399,391,1382,370,1362,353"/>
<area shape="poly" id="edge36_Node000032_Node000023" title=" " alt="" coords="1272,455,1216,504,1152,552,1057,607,1055,602,1149,547,1212,500,1267,457"/> <area shape="poly" id="edge38_Node000032_Node000020" title=" " alt="" coords="1196,450,1024,503,1023,498,1191,451"/>
<area shape="poly" id="edge38_Node000032_Node000025" title=" " alt="" coords="1307,459,1312,506,1318,528,1330,548,1362,581,1393,604,1425,619,1458,627,1532,636,1623,650,1756,676,1889,695,2107,717,2102,716,1888,700,1755,682,1622,656,1532,641,1457,632,1423,624,1391,609,1358,585,1326,551,1314,530,1306,507,1304,463"/> <area shape="poly" id="edge35_Node000032_Node000022" title=" " alt="" coords="1400,448,1561,501,1556,501,1399,453"/>
<area shape="poly" id="edge53_Node000033_Node000028" title=" " alt="" coords="2155,351,2111,392,2008,496,2006,491,2108,388,2150,353"/> <area shape="poly" id="edge36_Node000032_Node000023" title=" " alt="" coords="1202,453,1178,473,1160,495,1153,509,1152,521,1160,548,1178,578,1202,605,1196,603,1173,582,1155,550,1147,521,1148,507,1155,492,1174,469,1197,455"/>
<area shape="rect" id="Node000034" href="$engine__adaptive__scratchpad_8h.html" title="Scratchpad implementation for the AdaptiveEngineView." alt="" coords="2122,390,2302,446"/> <area shape="poly" id="edge39_Node000032_Node000025" title=" " alt="" coords="1237,454,1219,475,1205,495,1195,523,1197,535,1205,547,1219,555,1249,564,1351,586,1659,633,2005,678,2269,712,2264,712,2004,684,1658,639,1350,591,1248,570,1217,560,1201,551,1192,537,1190,522,1200,492,1215,471,1233,457"/>
<area shape="poly" id="edge48_Node000033_Node000034" title=" " alt="" coords="2206,356,2211,391,2206,388,2203,360"/> <area shape="poly" id="edge37_Node000032_Node000033" title=" " alt="" coords="1312,459,1324,502,1319,500,1309,463"/>
<area shape="poly" id="edge54_Node000033_Node000035" title=" " alt="" coords="2278,348,2300,366,2317,389,2325,419,2321,449,2310,478,2296,503,2293,498,2305,476,2316,448,2320,419,2312,391,2296,370,2277,353"/> <area shape="poly" id="edge55_Node000034_Node000028" title=" " alt="" coords="2210,351,2149,401,2080,448,1989,496,1987,491,2077,443,2146,396,2205,353"/>
<area shape="poly" id="edge49_Node000034_Node000022" title=" " alt="" coords="2109,445,2103,448,1954,472,1805,490,1554,515,1553,510,1805,485,1954,466,2102,443,2104,445"/> <area shape="rect" id="Node000035" href="$engine__adaptive__scratchpad_8h.html" title="Scratchpad implementation for the AdaptiveEngineView." alt="" coords="2243,390,2424,446"/>
<area shape="poly" id="edge50_Node000034_Node000023" title=" " alt="" coords="2184,457,2133,510,2102,533,2068,552,1989,575,1884,594,1759,607,1624,617,1352,626,1130,628,1130,622,1352,621,1624,611,1759,602,1883,588,1988,570,2066,547,2099,529,2130,506,2179,459"/> <area shape="poly" id="edge50_Node000034_Node000035" title=" " alt="" coords="2283,352,2314,390,2309,388,2281,357"/>
<area shape="poly" id="edge52_Node000034_Node000025" title=" " alt="" coords="2205,459,2200,494,2185,611,2176,702,2172,699,2180,611,2195,493,2201,463"/> <area shape="poly" id="edge56_Node000034_Node000036" title=" " alt="" coords="2337,338,2342,339,2401,346,2480,351,2555,363,2584,373,2605,388,2613,403,2615,417,2605,447,2594,464,2580,479,2548,503,2546,498,2576,475,2590,461,2600,445,2610,416,2608,404,2601,392,2582,378,2553,368,2479,357,2401,352,2341,345,2337,344"/>
<area shape="poly" id="edge51_Node000034_Node000035" title=" " alt="" coords="2240,456,2271,502,2266,500,2238,461"/> <area shape="poly" id="edge51_Node000035_Node000022" title=" " alt="" coords="2230,437,2174,448,1728,509,1727,504,2173,443,2225,437"/>
<area shape="poly" id="edge59_Node000036_Node000026" title=" " alt="" coords="1765,249,1730,288,1727,283,1760,251"/> <area shape="poly" id="edge52_Node000035_Node000023" title=" " alt="" coords="2269,452,2149,507,2080,532,2010,552,1920,571,1827,587,1643,609,1473,621,1336,626,1336,621,1473,616,1642,604,1826,582,1919,566,2009,547,2079,527,2147,502,2264,453"/>
<area shape="poly" id="edge61_Node000036_Node000028" title=" " alt="" coords="1805,251,1818,297,1840,340,1855,356,1871,365,1888,373,1906,388,1945,441,1973,494,1968,492,1941,444,1902,392,1885,378,1868,369,1852,360,1835,344,1813,299,1803,256"/> <area shape="poly" id="edge54_Node000035_Node000025" title=" " alt="" coords="2335,459,2335,702,2331,699,2331,463"/>
<area shape="poly" id="edge60_Node000036_Node000031" title=" " alt="" coords="1709,226,1522,259,1363,289,1353,292,1351,287,1362,284,1521,253,1714,225"/> <area shape="poly" id="edge53_Node000035_Node000036" title=" " alt="" coords="2394,451,2476,501,2471,500,2392,457"/>
<area shape="poly" id="edge58_Node000036_Node000033" title=" " alt="" coords="1885,231,2129,295,2124,295,1885,236"/> <area shape="poly" id="edge61_Node000037_Node000026" title=" " alt="" coords="1817,249,1782,288,1779,283,1812,251"/>
<area shape="rect" id="Node000038" href="$generative_8h.html" title=" " alt="" coords="2554,294,2728,334"/> <area shape="poly" id="edge63_Node000037_Node000028" title=" " alt="" coords="1856,251,1868,342,1878,394,1892,445,1912,495,1908,492,1887,447,1873,395,1863,343,1852,256"/>
<area shape="poly" id="edge63_Node000037_Node000038" title=" " alt="" coords="2555,238,2621,294,2615,293,2554,243"/> <area shape="poly" id="edge62_Node000037_Node000031" title=" " alt="" coords="1761,227,1415,289,1353,301,1352,296,1414,284,1766,225"/>
<area shape="poly" id="edge64_Node000037_Node000043" title=" " alt="" coords="2504,243,2475,296,2472,291,2499,246"/> <area shape="poly" id="edge60_Node000037_Node000034" title=" " alt="" coords="1938,228,2167,284,2181,290,2176,290,2166,289,1937,233"/>
<area shape="poly" id="edge66_Node000044_Node000038" title=" " alt="" coords="2717,240,2663,296,2660,291,2712,243"/> <area shape="rect" id="Node000039" href="$generative_8h.html" title=" " alt="" coords="2606,294,2780,334"/>
<area shape="poly" id="edge67_Node000044_Node000045" title=" " alt="" coords="2770,241,2808,294,2803,292,2768,246"/> <area shape="poly" id="edge65_Node000038_Node000039" title=" " alt="" coords="2607,238,2673,294,2667,293,2606,243"/>
<area shape="poly" id="edge84_Node000046_Node000025" title=" " alt="" coords="4041,340,3754,448,3571,515,3429,568,3285,613,3095,656,2974,676,2850,692,2606,712,2393,721,2239,723,2239,718,2393,716,2606,707,2849,686,2973,671,3094,650,3283,608,3427,563,3569,510,3752,443,4036,341"/> <area shape="poly" id="edge66_Node000038_Node000044" title=" " alt="" coords="2556,243,2527,296,2524,291,2551,246"/>
<area shape="rect" id="Node000047" href="$chains_8h.html" title="Concrete implementations of ReactionChainPolicy for key stellar reaction chains." alt="" coords="4135,501,4262,542"/> <area shape="poly" id="edge68_Node000045_Node000039" title=" " alt="" coords="2731,243,2705,296,2702,291,2726,246"/>
<area shape="poly" id="edge69_Node000046_Node000047" title=" " alt="" coords="4150,341,4174,363,4193,389,4203,418,4207,449,4204,503,4200,499,4202,449,4198,419,4188,391,4170,366,4148,346"/> <area shape="poly" id="edge69_Node000045_Node000046" title=" " alt="" coords="2782,238,2850,294,2845,293,2781,243"/>
<area shape="rect" id="Node000048" href="$policy_8h.html" title=" " alt="" coords="4262,701,4389,742"/> <area shape="poly" id="edge86_Node000047_Node000025" title=" " alt="" coords="3904,343,3840,392,3797,432,3763,469,3709,539,3682,571,3650,601,3609,629,3557,656,3486,671,3365,684,3028,704,2667,716,2400,722,2400,716,2667,711,3028,699,3364,679,3485,666,3555,650,3607,625,3646,597,3678,567,3705,535,3759,466,3793,428,3837,388,3899,344"/>
<area shape="poly" id="edge75_Node000046_Node000048" title=" " alt="" coords="4179,338,4221,360,4258,388,4300,436,4323,482,4335,533,4345,597,4348,625,4345,653,4333,703,4330,699,4340,653,4343,625,4340,598,4330,534,4318,484,4295,439,4254,392,4218,364,4178,343"/> <area shape="rect" id="Node000048" href="$chains_8h.html" title="Concrete implementations of ReactionChainPolicy for key stellar reaction chains." alt="" coords="3828,501,3956,542"/>
<area shape="poly" id="edge81_Node000046_Node000051" title=" " alt="" coords="4156,340,4188,362,4218,388,4256,436,4267,460,4277,493,4284,522,4277,550,4254,582,4224,607,4222,602,4250,579,4272,548,4278,522,4272,494,4262,462,4252,439,4214,392,4185,366,4154,345"/> <area shape="poly" id="edge71_Node000047_Node000048" title=" " alt="" coords="3936,348,3899,503,3895,499,3932,351"/>
<area shape="rect" id="Node000052" href="$chains_8cpp.html" title=" " alt="" coords="3929,612,4090,638"/> <area shape="rect" id="Node000049" href="$policy_8h.html" title=" " alt="" coords="3938,701,4065,742"/>
<area shape="poly" id="edge82_Node000046_Node000052" title=" " alt="" coords="4056,342,4016,371,3976,406,3941,447,3928,470,3917,495,3910,522,3917,548,3930,568,3947,585,3986,613,3981,611,3944,589,3926,571,3912,550,3905,522,3912,493,3923,468,3937,444,3973,402,4013,367,4051,344"/> <area shape="poly" id="edge77_Node000047_Node000049" title=" " alt="" coords="4039,323,4082,332,4126,346,4169,364,4210,388,4261,432,4278,454,4291,477,4309,529,4324,597,4332,627,4331,640,4323,655,4306,669,4281,681,4214,699,4137,711,4066,719,4065,713,4136,706,4213,694,4279,676,4303,664,4319,651,4326,639,4326,627,4319,598,4304,531,4286,479,4273,457,4257,436,4206,392,4167,369,4124,351,4080,338,4039,329"/>
<area shape="rect" id="Node000053" href="$policy__logical_8h.html" title=" " alt="" coords="4026,398,4179,438"/> <area shape="poly" id="edge83_Node000047_Node000052" title=" " alt="" coords="3919,345,3869,414,3818,495,3794,554,3777,607,3774,603,3789,553,3814,492,3864,411,3914,348"/>
<area shape="poly" id="edge76_Node000046_Node000053" title=" " alt="" coords="4104,348,4105,399,4101,395,4101,352"/> <area shape="rect" id="Node000053" href="$chains_8cpp.html" title=" " alt="" coords="3921,612,4082,638"/>
<area shape="rect" id="Node000054" href="$policy__logical_8cpp.html" title=" " alt="" coords="3927,501,4060,542"/> <area shape="poly" id="edge84_Node000047_Node000053" title=" " alt="" coords="3951,347,4001,613,3997,610,3947,352"/>
<area shape="poly" id="edge83_Node000046_Node000054" title=" " alt="" coords="4060,343,4036,366,4017,391,4005,419,3999,449,3994,503,3991,499,3993,448,4000,418,4012,389,4032,363,4055,345"/> <area shape="rect" id="Node000054" href="$policy__logical_8h.html" title=" " alt="" coords="4014,398,4167,438"/>
<area shape="poly" id="edge70_Node000047_Node000048" title=" " alt="" coords="4235,550,4258,572,4277,596,4305,651,4322,702,4318,699,4300,653,4272,599,4254,575,4233,555"/> <area shape="poly" id="edge78_Node000047_Node000054" title=" " alt="" coords="3984,341,4065,398,4060,396,3983,346"/>
<area shape="poly" id="edge71_Node000047_Node000051" title=" " alt="" coords="4197,556,4192,606,4188,602,4193,559"/> <area shape="rect" id="Node000055" href="$policy__logical_8cpp.html" title=" " alt="" coords="4132,501,4265,542"/>
<area shape="poly" id="edge74_Node000047_Node000052" title=" " alt="" coords="4151,549,4033,614,4031,609,4146,550"/> <area shape="poly" id="edge85_Node000047_Node000055" title=" " alt="" coords="4039,320,4077,328,4115,342,4151,361,4181,388,4196,416,4204,446,4203,503,4200,499,4199,447,4191,418,4177,392,4148,366,4113,347,4076,333,4039,325"/>
<area shape="poly" id="edge73_Node000051_Node000025" title=" " alt="" coords="4121,650,4103,656,3929,677,3697,693,3429,704,3144,713,2604,721,2239,723,2239,717,2603,716,3143,707,3429,699,3697,687,3928,671,4102,650,4115,650"/> <area shape="poly" id="edge72_Node000048_Node000049" title=" " alt="" coords="3891,556,3895,605,3901,629,3912,652,3935,678,3964,701,3959,700,3931,682,3907,654,3896,631,3890,605,3888,560"/>
<area shape="poly" id="edge72_Node000051_Node000048" title=" " alt="" coords="4230,652,4299,701,4294,700,4228,657"/> <area shape="poly" id="edge73_Node000048_Node000052" title=" " alt="" coords="3860,551,3795,607,3793,602,3855,553"/>
<area shape="poly" id="edge77_Node000053_Node000047" title=" " alt="" coords="4132,447,4183,502,4178,500,4130,452"/> <area shape="poly" id="edge76_Node000048_Node000053" title=" " alt="" coords="3925,550,3991,613,3986,611,3923,555"/>
<area shape="poly" id="edge78_Node000053_Node000048" title=" " alt="" coords="4194,440,4238,461,4277,492,4295,517,4308,544,4325,603,4330,659,4329,703,4325,699,4325,659,4319,604,4303,546,4290,519,4273,496,4236,466,4193,445"/> <area shape="poly" id="edge75_Node000052_Node000025" title=" " alt="" coords="3697,649,3678,656,3561,670,3406,683,3034,702,2664,715,2400,721,2400,716,2664,709,3033,697,3405,677,3560,665,3677,650,3691,650"/>
<area shape="poly" id="edge79_Node000053_Node000052" title=" " alt="" coords="4101,452,4092,501,4074,551,4050,587,4024,614,4021,610,4046,583,4070,548,4087,500,4097,455"/> <area shape="poly" id="edge74_Node000052_Node000049" title=" " alt="" coords="3833,649,3956,701,3950,700,3832,654"/>
<area shape="poly" id="edge80_Node000053_Node000054" title=" " alt="" coords="4073,448,4015,503,4013,498,4068,450"/> <area shape="poly" id="edge79_Node000054_Node000048" title=" " alt="" coords="4042,445,3931,503,3930,498,4036,446"/>
<area shape="poly" id="edge89_Node000060_Node000013" title=" " alt="" coords="1831,336,1787,345,1625,362,1498,371,1371,379,1208,393,1044,410,1043,405,1208,387,1371,374,1497,366,1624,357,1786,339,1836,335"/> <area shape="poly" id="edge80_Node000054_Node000049" title=" " alt="" coords="4102,451,4112,495,4117,547,4114,602,4107,629,4097,654,4075,682,4045,703,4044,698,4071,678,4092,652,4102,627,4109,601,4112,547,4107,496,4099,455"/>
<area shape="poly" id="edge88_Node000060_Node000019" title=" " alt="" coords="1903,341,1799,400,1797,395,1898,343"/> <area shape="poly" id="edge81_Node000054_Node000053" title=" " alt="" coords="4078,451,4008,614,4005,610,4074,454"/>
<area shape="poly" id="edge90_Node000060_Node000065" title=" " alt="" coords="2067,333,2115,339,2272,357,2395,366,2676,387,2843,406,2838,406,2676,393,2395,371,2272,362,2114,345,2068,338"/> <area shape="poly" id="edge82_Node000054_Node000055" title=" " alt="" coords="4123,447,4180,502,4175,500,4122,452"/>
<area shape="poly" id="edge92_Node000070_Node000060" title=" " alt="" coords="2003,249,1968,296,1965,291,1998,252"/> <area shape="poly" id="edge91_Node000061_Node000013" title=" " alt="" coords="1934,331,1839,345,1658,360,1517,368,1377,376,1196,393,1083,407,1082,402,1196,387,1376,371,1517,363,1658,354,1838,339,1940,330"/>
<area shape="poly" id="edge98_Node000072_Node000020" title=" " alt="" coords="3088,237,2995,289,2949,320,2928,333,2899,345,2826,364,2759,376,2696,384,2637,386,2527,381,2424,369,2321,356,2212,351,2154,354,2091,361,2024,373,1952,393,1924,405,1905,420,1885,435,1857,448,1739,462,1502,482,1018,517,1017,512,1502,477,1738,457,1855,443,1882,430,1902,415,1921,400,1950,387,2023,368,2090,356,2153,348,2212,346,2322,351,2425,363,2528,376,2637,381,2696,378,2758,371,2825,359,2898,339,2926,328,2946,316,2992,284,3083,239"/> <area shape="poly" id="edge90_Node000061_Node000019" title=" " alt="" coords="2034,346,1999,399,1996,395,2029,349"/>
<area shape="poly" id="edge95_Node000072_Node000022" title=" " alt="" coords="3108,240,2995,344,2956,357,2912,367,2806,379,2685,383,2556,383,2303,380,2195,383,2110,393,2065,405,2031,419,1997,434,1951,448,1846,471,1740,489,1553,513,1553,508,1739,484,1845,466,1950,443,1995,429,2029,414,2063,400,2109,387,2195,377,2303,374,2556,377,2685,378,2806,373,2911,362,2955,352,2992,340,3103,242"/> <area shape="poly" id="edge92_Node000061_Node000066" title=" " alt="" coords="2144,335,2167,339,2341,359,2580,378,3031,411,3026,411,2580,384,2341,364,2166,345,2144,341"/>
<area shape="poly" id="edge99_Node000072_Node000025" title=" " alt="" coords="3121,243,3104,287,3084,351,3079,417,3079,523,3071,554,3051,582,3018,607,2976,628,2925,646,2867,662,2737,687,2596,704,2458,714,2239,722,2239,717,2458,709,2596,699,2736,682,2866,657,2923,641,2974,623,3015,602,3047,578,3066,552,3073,523,3073,416,3079,350,3099,285,3117,246"/> <area shape="poly" id="edge94_Node000071_Node000061" title=" " alt="" coords="2073,252,2061,296,2057,292,2069,255"/>
<area shape="poly" id="edge96_Node000072_Node000046" title=" " alt="" coords="3217,217,4024,304,4018,304,3216,223"/> <area shape="poly" id="edge100_Node000073_Node000020" title=" " alt="" coords="3243,243,3214,304,3197,329,3182,344,3138,364,3086,377,3026,385,2959,388,2812,385,2654,374,2496,362,2348,357,2281,359,2220,365,2168,376,2124,392,2110,404,2103,419,2096,434,2080,448,2056,456,2021,463,1919,474,1645,486,1368,492,1203,496,1036,513,1035,508,1202,491,1368,486,1645,481,1919,468,2020,458,2055,451,2077,443,2091,431,2098,417,2106,401,2121,388,2166,371,2220,359,2281,353,2348,352,2496,357,2655,369,2812,380,2959,383,3025,380,3085,372,3136,359,3178,340,3193,325,3209,301,3239,247"/>
<area shape="rect" id="Node000006" href="$gridfire__context_8cpp.html" title=" " alt="" coords="3325,294,3464,334"/> <area shape="poly" id="edge97_Node000073_Node000022" title=" " alt="" coords="3260,245,3254,298,3243,323,3226,344,3201,356,3162,366,3048,378,2900,383,2735,384,2419,383,2301,385,2231,393,2200,405,2178,419,2155,434,2123,448,2065,460,1963,476,1728,509,1728,504,1962,471,2064,455,2122,443,2153,430,2175,415,2198,400,2230,387,2300,380,2419,378,2735,379,2900,378,3048,372,3161,360,3199,351,3222,340,3239,320,3249,296,3256,249"/>
<area shape="poly" id="edge94_Node000072_Node000006" title=" " alt="" coords="3201,234,3347,294,3342,293,3200,239"/> <area shape="poly" id="edge101_Node000073_Node000025" title=" " alt="" coords="3335,211,3434,219,3486,227,3533,240,3572,256,3599,279,3607,293,3609,308,3607,325,3598,343,3566,383,3519,420,3460,455,3390,488,3312,519,3226,547,3042,598,2852,640,2672,673,2401,714,2400,709,2671,668,2851,634,3041,592,3225,542,3310,514,3388,483,3458,450,3516,416,3562,379,3594,341,3602,323,3604,308,3602,294,3595,282,3569,261,3531,245,3485,233,3434,224,3335,216"/>
<area shape="rect" id="Node000073" href="$utils_2utils_8h.html" title=" " alt="" coords="3488,294,3616,334"/> <area shape="poly" id="edge98_Node000073_Node000047" title=" " alt="" coords="3335,221,3864,301,3859,301,3335,226"/>
<area shape="poly" id="edge97_Node000072_Node000073" title=" " alt="" coords="3217,224,3340,250,3477,284,3501,293,3496,293,3475,289,3339,255,3217,229"/> <area shape="rect" id="Node000006" href="$gridfire__context_8cpp.html" title=" " alt="" coords="3445,294,3584,334"/>
<area shape="poly" id="edge100_Node000072_Node000074" title=" " alt="" coords="3216,224,3282,236,3379,249,3456,257,3532,266,3629,284,3684,301,3678,301,3627,289,3531,271,3455,262,3379,254,3281,241,3216,230"/> <area shape="poly" id="edge96_Node000073_Node000006" title=" " alt="" coords="3320,234,3467,294,3462,293,3319,239"/>
<area shape="rect" id="Node000075" href="$utils_2bindings_8cpp.html" title=" " alt="" coords="3113,301,3300,327"/> <area shape="rect" id="Node000074" href="$utils_2utils_8h.html" title=" " alt="" coords="3294,294,3421,334"/>
<area shape="poly" id="edge101_Node000072_Node000075" title=" " alt="" coords="3160,242,3201,302,3196,300,3158,246"/> <area shape="poly" id="edge99_Node000073_Node000074" title=" " alt="" coords="3287,239,3340,294,3335,293,3285,244"/>
<area shape="poly" id="edge114_Node000076_Node000018" title=" " alt="" coords="531,339,652,396,646,397,531,344"/> <area shape="poly" id="edge102_Node000073_Node000075" title=" " alt="" coords="3214,238,3111,303,3110,298,3209,240"/>
<area shape="poly" id="edge117_Node000076_Node000020" title=" " alt="" coords="441,343,419,370,402,395,396,421,398,433,405,444,435,466,481,483,539,497,605,506,742,516,865,521,860,522,742,522,604,511,538,502,480,488,432,471,401,447,393,435,390,421,397,393,415,367,438,347"/> <area shape="poly" id="edge115_Node000077_Node000018" title=" " alt="" coords="287,332,660,402,657,405,287,337"/>
<area shape="poly" id="edge113_Node000076_Node000023" title=" " alt="" coords="427,345,408,366,390,391,381,419,383,431,390,444,415,461,463,481,608,525,777,568,928,604,923,604,776,573,606,530,462,486,412,466,386,447,378,433,376,419,386,389,404,363,430,342"/> <area shape="poly" id="edge118_Node000077_Node000020" title=" " alt="" coords="219,342,276,388,306,419,320,432,340,443,414,470,478,483,537,487,593,486,711,479,780,481,859,491,893,500,888,501,858,496,779,486,711,484,593,491,537,493,477,489,412,475,338,448,317,436,303,423,273,392,219,347"/>
<area shape="poly" id="edge118_Node000076_Node000025" title=" " alt="" coords="417,345,395,365,376,391,368,418,376,445,398,483,423,508,454,527,496,547,538,563,575,572,642,575,709,577,748,582,793,595,823,609,844,624,865,638,894,650,1003,672,1148,689,1318,701,1500,709,1851,717,2108,720,2102,720,1851,722,1500,714,1318,706,1148,694,1002,677,893,656,862,643,841,628,820,613,791,600,747,588,709,582,641,581,574,577,536,568,494,552,451,532,419,513,394,486,371,447,363,418,371,389,391,362,421,341"/> <area shape="poly" id="edge114_Node000077_Node000023" title=" " alt="" coords="202,345,240,404,260,429,276,443,341,474,398,488,452,490,505,486,559,479,617,474,680,477,753,491,787,504,812,518,836,533,869,547,994,581,1114,607,1109,607,992,587,867,552,834,537,809,523,785,509,751,496,680,482,617,480,560,484,506,491,453,496,398,493,339,479,273,448,256,432,236,407,201,351"/>
<area shape="poly" id="edge116_Node000076_Node000030" title=" " alt="" coords="494,346,521,398,515,397,492,351"/> <area shape="poly" id="edge119_Node000077_Node000025" title=" " alt="" coords="185,347,198,399,209,423,226,444,264,476,300,503,336,523,371,539,439,558,509,565,660,569,747,576,845,595,950,626,996,639,1056,650,1167,663,1313,675,1664,695,2269,718,2263,718,1664,700,1313,681,1166,669,1056,656,995,644,949,631,843,600,747,581,660,574,508,571,438,563,369,544,333,528,297,507,260,481,222,448,205,426,193,400,184,353"/>
<area shape="poly" id="edge115_Node000076_Node000035" title=" " alt="" coords="457,345,446,373,439,398,439,423,450,444,476,454,532,463,715,477,964,485,1247,489,1785,490,2067,491,2212,509,2206,510,2067,496,1785,495,1247,494,964,490,715,482,532,469,475,459,446,448,434,424,433,398,441,371,453,350"/> <area shape="poly" id="edge117_Node000077_Node000030" title=" " alt="" coords="251,337,412,396,407,398,251,343"/>
<area shape="poly" id="edge116_Node000077_Node000036" title=" " alt="" coords="241,339,285,361,327,388,344,404,355,419,366,432,384,443,414,449,473,455,659,465,1193,479,2009,491,2437,516,2432,516,2009,496,1193,484,659,470,473,460,413,455,382,448,362,436,350,422,340,407,324,392,282,366,242,344"/>
</map> </map>

View File

@@ -1 +1 @@
3f376451871e1e497a8959ac56101f20 9e65dd047f7bf23583baac918a9b582d

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 97 KiB

After

Width:  |  Height:  |  Size: 98 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 94 KiB

After

Width:  |  Height:  |  Size: 94 KiB

View File

@@ -2,30 +2,32 @@
<area shape="rect" id="Node000001" title="Container class for managing multiple scratchpad instances." alt="" coords="439,5,616,46"/> <area shape="rect" id="Node000001" title="Container class for managing multiple scratchpad instances." alt="" coords="439,5,616,46"/>
<area shape="rect" id="Node000002" href="$scratchpad__abstract_8h.html" title="Abstract base class for scratchpad memory used during engine computations." alt="" coords="5,94,183,135"/> <area shape="rect" id="Node000002" href="$scratchpad__abstract_8h.html" title="Abstract base class for scratchpad memory used during engine computations." alt="" coords="5,94,183,135"/>
<area shape="poly" id="edge1_Node000001_Node000002" title=" " alt="" coords="437,47,199,95,197,90,439,42"/> <area shape="poly" id="edge1_Node000001_Node000002" title=" " alt="" coords="437,47,199,95,197,90,439,42"/>
<area shape="rect" id="Node000003" title=" " alt="" coords="105,190,174,216"/> <area shape="rect" id="Node000003" title=" " alt="" coords="93,190,162,216"/>
<area shape="poly" id="edge13_Node000001_Node000003" title=" " alt="" coords="436,37,343,58,294,74,247,96,221,115,196,136,158,179,155,176,193,133,217,110,245,92,292,69,342,53,441,34"/> <area shape="poly" id="edge14_Node000001_Node000003" title=" " alt="" coords="436,38,344,60,295,76,249,96,203,132,152,181,148,177,199,128,246,92,293,71,343,55,441,36"/>
<area shape="rect" id="Node000004" href="$engine_2scratchpads_2types_8h.html" title="Type definitions and utilities for the scratchpad system." alt="" coords="259,94,436,135"/> <area shape="rect" id="Node000004" href="$engine_2scratchpads_2types_8h.html" title="Type definitions and utilities for the scratchpad system." alt="" coords="259,94,436,135"/>
<area shape="poly" id="edge3_Node000001_Node000004" title=" " alt="" coords="484,48,403,89,401,85,489,45"/> <area shape="poly" id="edge3_Node000001_Node000004" title=" " alt="" coords="484,48,403,89,401,85,489,45"/>
<area shape="rect" id="Node000007" href="$error__scratchpad_8h.html" title=" " alt="" coords="461,94,594,135"/> <area shape="rect" id="Node000008" href="$error__scratchpad_8h.html" title=" " alt="" coords="461,94,594,135"/>
<area shape="poly" id="edge6_Node000001_Node000007" title=" " alt="" coords="529,44,530,80,525,77,526,49"/> <area shape="poly" id="edge7_Node000001_Node000008" title=" " alt="" coords="529,44,530,80,525,77,526,49"/>
<area shape="rect" id="Node000012" title=" " alt="" coords="618,102,728,127"/> <area shape="rect" id="Node000013" title=" " alt="" coords="618,102,728,127"/>
<area shape="poly" id="edge12_Node000001_Node000012" title=" " alt="" coords="561,44,642,93,637,93,560,49"/> <area shape="poly" id="edge13_Node000001_Node000013" title=" " alt="" coords="561,44,642,93,637,93,560,49"/>
<area shape="rect" id="Node000013" title=" " alt="" coords="752,102,826,127"/> <area shape="rect" id="Node000014" title=" " alt="" coords="752,102,826,127"/>
<area shape="poly" id="edge14_Node000001_Node000013" title=" " alt="" coords="593,44,740,91,747,96,741,96,738,97,593,49"/> <area shape="poly" id="edge15_Node000001_Node000014" title=" " alt="" coords="593,44,740,91,747,96,741,96,738,97,593,49"/>
<area shape="rect" id="Node000014" title=" " alt="" coords="850,102,954,127"/> <area shape="rect" id="Node000015" title=" " alt="" coords="850,102,954,127"/>
<area shape="poly" id="edge15_Node000001_Node000014" title=" " alt="" coords="617,42,839,91,851,97,846,97,837,97,616,47"/> <area shape="poly" id="edge16_Node000001_Node000015" title=" " alt="" coords="617,42,839,91,851,97,846,97,837,97,616,47"/>
<area shape="poly" id="edge2_Node000002_Node000003" title=" " alt="" coords="105,133,129,176,123,177,104,138"/> <area shape="poly" id="edge2_Node000002_Node000003" title=" " alt="" coords="102,133,120,176,115,176,101,138"/>
<area shape="rect" id="Node000005" title=" " alt="" coords="230,190,291,216"/> <area shape="rect" id="Node000005" title=" " alt="" coords="189,190,250,216"/>
<area shape="poly" id="edge4_Node000004_Node000005" title=" " alt="" coords="330,134,285,182,281,177,325,137"/> <area shape="poly" id="edge4_Node000004_Node000005" title=" " alt="" coords="321,134,251,184,248,179,316,136"/>
<area shape="rect" id="Node000006" title=" " alt="" coords="314,190,402,216"/> <area shape="rect" id="Node000006" title=" " alt="" coords="273,190,360,216"/>
<area shape="poly" id="edge5_Node000004_Node000006" title=" " alt="" coords="351,133,357,176,352,174,348,137"/> <area shape="poly" id="edge5_Node000004_Node000006" title=" " alt="" coords="342,133,328,177,324,174,338,137"/>
<area shape="rect" id="Node000008" title=" " alt="" coords="482,271,535,297"/> <area shape="rect" id="Node000007" title=" " alt="" coords="385,190,443,216"/>
<area shape="poly" id="edge7_Node000007_Node000008" title=" " alt="" coords="509,134,492,158,479,184,476,203,479,223,494,259,489,257,474,224,470,203,474,182,488,155,505,137"/> <area shape="poly" id="edge6_Node000004_Node000007" title=" " alt="" coords="363,133,398,178,393,177,362,138"/>
<area shape="rect" id="Node000009" title=" " alt="" coords="488,190,566,216"/> <area shape="rect" id="Node000009" title=" " alt="" coords="511,271,565,297"/>
<area shape="poly" id="edge8_Node000007_Node000009" title=" " alt="" coords="529,133,530,176,525,173,526,137"/> <area shape="poly" id="edge8_Node000008_Node000009" title=" " alt="" coords="520,133,509,177,506,200,509,223,523,259,519,257,503,224,501,200,503,175,516,137"/>
<area shape="rect" id="Node000010" href="$error__gridfire_8h.html" title=" " alt="" coords="590,183,718,223"/> <area shape="rect" id="Node000010" title=" " alt="" coords="518,190,596,216"/>
<area shape="poly" id="edge9_Node000007_Node000010" title=" " alt="" coords="557,133,616,174,610,174,555,138"/> <area shape="poly" id="edge9_Node000008_Node000010" title=" " alt="" coords="535,133,550,177,545,175,533,137"/>
<area shape="poly" id="edge11_Node000010_Node000008" title=" " alt="" coords="620,223,545,266,543,261,615,225"/> <area shape="rect" id="Node000011" href="$error__gridfire_8h.html" title=" " alt="" coords="620,183,747,223"/>
<area shape="rect" id="Node000011" title=" " alt="" coords="615,271,693,297"/> <area shape="poly" id="edge10_Node000008_Node000011" title=" " alt="" coords="563,133,638,175,632,175,562,138"/>
<area shape="poly" id="edge10_Node000010_Node000011" title=" " alt="" coords="656,222,656,257,652,254,652,226"/> <area shape="poly" id="edge12_Node000011_Node000009" title=" " alt="" coords="650,223,574,266,572,261,644,225"/>
<area shape="rect" id="Node000012" title=" " alt="" coords="645,271,722,297"/>
<area shape="poly" id="edge11_Node000011_Node000012" title=" " alt="" coords="685,222,685,257,681,254,681,226"/>
</map> </map>

View File

@@ -1 +1 @@
5010e473bff9907b06c9fd4773ab9498 f60689ce1929cc91f2273ba1f8c6de86

View File

@@ -88,17 +88,17 @@ var sectionId = 'dynsection-0';
<g id="Node000003" class="node"> <g id="Node000003" class="node">
<title>Node3</title> <title>Node3</title>
<g id="a_Node000003"><a xlink:title=" "> <g id="a_Node000003"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="126.12,-80.12 74.88,-80.12 74.88,-60.88 126.12,-60.88 126.12,-80.12"/> <polygon fill="#e0e0e0" stroke="#999999" points="117.12,-80.12 65.88,-80.12 65.88,-60.88 117.12,-60.88 117.12,-80.12"/>
<text xml:space="preserve" text-anchor="middle" x="100.5" y="-66.62" font-family="Helvetica,sans-Serif" font-size="10.00">memory</text> <text xml:space="preserve" text-anchor="middle" x="91.5" y="-66.62" font-family="Helvetica,sans-Serif" font-size="10.00">memory</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node1&#45;&gt;Node3 --> <!-- Node1&#45;&gt;Node3 -->
<g id="edge13_Node000001_Node000003" class="edge"> <g id="edge14_Node000001_Node000003" class="edge">
<title>Node1&#45;&gt;Node3</title> <title>Node1&#45;&gt;Node3</title>
<g id="a_edge13_Node000001_Node000003"><a xlink:title=" "> <g id="a_edge14_Node000001_Node000003"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M324.83,-196.19C281.49,-189.86 224.98,-177.24 180.5,-152.25 152.48,-136.51 127.74,-108.12 113.44,-89.54"/> <path fill="none" stroke="#63b8ff" d="M324.66,-195.11C281.85,-188.35 226.15,-175.67 181.5,-152.25 165.32,-143.77 129.55,-109.5 108.3,-88.43"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="116.3,-87.52 107.52,-81.59 110.68,-91.7 116.3,-87.52"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="111.05,-86.23 101.5,-81.64 106.11,-91.18 111.05,-86.23"/>
</a> </a>
</g> </g>
</g> </g>
@@ -121,58 +121,40 @@ var sectionId = 'dynsection-0';
</a> </a>
</g> </g>
</g> </g>
<!-- Node7 --> <!-- Node8 -->
<g id="Node000007" class="node"> <g id="Node000008" class="node">
<title>Node7</title> <title>Node8</title>
<g id="a_Node000007"><a xlink:href="error__scratchpad_8h.html" target="_top" xlink:title=" "> <g id="a_Node000008"><a xlink:href="error__scratchpad_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="441.5,-152.25 341.5,-152.25 341.5,-121.75 441.5,-121.75 441.5,-152.25"/> <polygon fill="white" stroke="#666666" points="441.5,-152.25 341.5,-152.25 341.5,-121.75 441.5,-121.75 441.5,-152.25"/>
<text xml:space="preserve" text-anchor="start" x="349.5" y="-138.75" font-family="Helvetica,sans-Serif" font-size="10.00">gridfire/exceptions</text> <text xml:space="preserve" text-anchor="start" x="349.5" y="-138.75" font-family="Helvetica,sans-Serif" font-size="10.00">gridfire/exceptions</text>
<text xml:space="preserve" text-anchor="middle" x="391.5" y="-127.5" font-family="Helvetica,sans-Serif" font-size="10.00">/error_scratchpad.h</text> <text xml:space="preserve" text-anchor="middle" x="391.5" y="-127.5" font-family="Helvetica,sans-Serif" font-size="10.00">/error_scratchpad.h</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node1&#45;&gt;Node7 --> <!-- Node1&#45;&gt;Node8 -->
<g id="edge6_Node000001_Node000007" class="edge"> <g id="edge7_Node000001_Node000008" class="edge">
<title>Node1&#45;&gt;Node7</title> <title>Node1&#45;&gt;Node8</title>
<g id="a_edge6_Node000001_Node000007"><a xlink:title=" "> <g id="a_edge7_Node000001_Node000008"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M391.5,-187.86C391.5,-180.77 391.5,-172.04 391.5,-163.88"/> <path fill="none" stroke="#63b8ff" d="M391.5,-187.86C391.5,-180.77 391.5,-172.04 391.5,-163.88"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="395,-164.09 391.5,-154.09 388,-164.09 395,-164.09"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="395,-164.09 391.5,-154.09 388,-164.09 395,-164.09"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node12 -->
<g id="Node000012" class="node">
<title>Node12</title>
<g id="a_Node000012"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="541.88,-146.62 459.12,-146.62 459.12,-127.38 541.88,-127.38 541.88,-146.62"/>
<text xml:space="preserve" text-anchor="middle" x="500.5" y="-133.12" font-family="Helvetica,sans-Serif" font-size="10.00">unordered_map</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node12 -->
<g id="edge12_Node000001_Node000012" class="edge">
<title>Node1&#45;&gt;Node12</title>
<g id="a_edge12_Node000001_Node000012"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M416.23,-187.86C433.98,-177.36 457.8,-163.27 475.59,-152.74"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="477.15,-155.89 483.97,-147.78 473.58,-149.86 477.15,-155.89"/>
</a>
</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:title=" "> <g id="a_Node000013"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="615.38,-146.62 559.62,-146.62 559.62,-127.38 615.38,-127.38 615.38,-146.62"/> <polygon fill="#e0e0e0" stroke="#999999" points="541.88,-146.62 459.12,-146.62 459.12,-127.38 541.88,-127.38 541.88,-146.62"/>
<text xml:space="preserve" text-anchor="middle" x="587.5" y="-133.12" font-family="Helvetica,sans-Serif" font-size="10.00">expected</text> <text xml:space="preserve" text-anchor="middle" x="500.5" y="-133.12" font-family="Helvetica,sans-Serif" font-size="10.00">unordered_map</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node1&#45;&gt;Node13 --> <!-- Node1&#45;&gt;Node13 -->
<g id="edge14_Node000001_Node000013" class="edge"> <g id="edge13_Node000001_Node000013" class="edge">
<title>Node1&#45;&gt;Node13</title> <title>Node1&#45;&gt;Node13</title>
<g id="a_edge14_Node000001_Node000013"><a xlink:title=" "> <g id="a_edge13_Node000001_Node000013"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M440.82,-187.77C472.35,-178.14 514.02,-165.02 550.5,-152.25 551.64,-151.85 552.79,-151.44 553.96,-151.02"/> <path fill="none" stroke="#63b8ff" d="M416.23,-187.86C433.98,-177.36 457.8,-163.27 475.59,-152.74"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="554.91,-154.4 563.07,-147.64 552.48,-147.84 554.91,-154.4"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="477.15,-155.89 483.97,-147.78 473.58,-149.86 477.15,-155.89"/>
</a> </a>
</g> </g>
</g> </g>
@@ -180,8 +162,8 @@ var sectionId = 'dynsection-0';
<g id="Node000014" class="node"> <g id="Node000014" class="node">
<title>Node14</title> <title>Node14</title>
<g id="a_Node000014"><a xlink:title=" "> <g id="a_Node000014"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="711.25,-146.62 633.75,-146.62 633.75,-127.38 711.25,-127.38 711.25,-146.62"/> <polygon fill="#e0e0e0" stroke="#999999" points="615.38,-146.62 559.62,-146.62 559.62,-127.38 615.38,-127.38 615.38,-146.62"/>
<text xml:space="preserve" text-anchor="middle" x="672.5" y="-133.12" font-family="Helvetica,sans-Serif" font-size="10.00">unordered_set</text> <text xml:space="preserve" text-anchor="middle" x="587.5" y="-133.12" font-family="Helvetica,sans-Serif" font-size="10.00">expected</text>
</a> </a>
</g> </g>
</g> </g>
@@ -189,6 +171,24 @@ var sectionId = 'dynsection-0';
<g id="edge15_Node000001_Node000014" class="edge"> <g id="edge15_Node000001_Node000014" class="edge">
<title>Node1&#45;&gt;Node14</title> <title>Node1&#45;&gt;Node14</title>
<g id="a_edge15_Node000001_Node000014"><a xlink:title=" "> <g id="a_edge15_Node000001_Node000014"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M440.82,-187.77C472.35,-178.14 514.02,-165.02 550.5,-152.25 551.64,-151.85 552.79,-151.44 553.96,-151.02"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="554.91,-154.4 563.07,-147.64 552.48,-147.84 554.91,-154.4"/>
</a>
</g>
</g>
<!-- Node15 -->
<g id="Node000015" class="node">
<title>Node15</title>
<g id="a_Node000015"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="711.25,-146.62 633.75,-146.62 633.75,-127.38 711.25,-127.38 711.25,-146.62"/>
<text xml:space="preserve" text-anchor="middle" x="672.5" y="-133.12" font-family="Helvetica,sans-Serif" font-size="10.00">unordered_set</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node15 -->
<g id="edge16_Node000001_Node000015" class="edge">
<title>Node1&#45;&gt;Node15</title>
<g id="a_edge16_Node000001_Node000015"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M458.35,-189.49C505.1,-180.05 568.88,-166.48 624.5,-152.25 627.06,-151.6 629.68,-150.9 632.33,-150.17"/> <path fill="none" stroke="#63b8ff" d="M458.35,-189.49C505.1,-180.05 568.88,-166.48 624.5,-152.25 627.06,-151.6 629.68,-150.9 632.33,-150.17"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="633.03,-153.61 641.7,-147.51 631.12,-146.88 633.03,-153.61"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="633.03,-153.61 641.7,-147.51 631.12,-146.88 633.03,-153.61"/>
</a> </a>
@@ -198,8 +198,8 @@ var sectionId = 'dynsection-0';
<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="M74.22,-121.36C79.06,-112.18 85.34,-100.25 90.56,-90.36"/> <path fill="none" stroke="#63b8ff" d="M72.17,-121.36C75.66,-112.38 80.16,-100.76 83.94,-91.01"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="93.58,-92.14 95.14,-81.66 87.38,-88.88 93.58,-92.14"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="87.18,-92.32 87.53,-81.73 80.66,-89.79 87.18,-92.32"/>
</a> </a>
</g> </g>
</g> </g>
@@ -207,8 +207,8 @@ var sectionId = 'dynsection-0';
<g id="Node000005" class="node"> <g id="Node000005" class="node">
<title>Node5</title> <title>Node5</title>
<g id="a_Node000005"><a xlink:title=" "> <g id="a_Node000005"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="214.12,-80.12 168.88,-80.12 168.88,-60.88 214.12,-60.88 214.12,-80.12"/> <polygon fill="#e0e0e0" stroke="#999999" points="183.12,-80.12 137.88,-80.12 137.88,-60.88 183.12,-60.88 183.12,-80.12"/>
<text xml:space="preserve" text-anchor="middle" x="191.5" y="-66.62" font-family="Helvetica,sans-Serif" font-size="10.00">cstdint</text> <text xml:space="preserve" text-anchor="middle" x="160.5" y="-66.62" font-family="Helvetica,sans-Serif" font-size="10.00">cstdint</text>
</a> </a>
</g> </g>
</g> </g>
@@ -216,8 +216,8 @@ var sectionId = 'dynsection-0';
<g id="edge4_Node000004_Node000005" class="edge"> <g id="edge4_Node000004_Node000005" class="edge">
<title>Node4&#45;&gt;Node5</title> <title>Node4&#45;&gt;Node5</title>
<g id="a_edge4_Node000004_Node000005"><a xlink:title=" "> <g id="a_edge4_Node000004_Node000005"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M241.75,-121.36C231.8,-111.49 218.65,-98.44 208.3,-88.17"/> <path fill="none" stroke="#63b8ff" d="M234.72,-121.36C219.38,-111.06 198.89,-97.29 183.32,-86.83"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="211.03,-85.95 201.47,-81.39 206.1,-90.92 211.03,-85.95"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="185.42,-84.03 175.17,-81.35 181.51,-89.84 185.42,-84.03"/>
</a> </a>
</g> </g>
</g> </g>
@@ -225,8 +225,8 @@ var sectionId = 'dynsection-0';
<g id="Node000006" class="node"> <g id="Node000006" class="node">
<title>Node6</title> <title>Node6</title>
<g id="a_Node000006"><a xlink:title=" "> <g id="a_Node000006"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="297.25,-80.12 231.75,-80.12 231.75,-60.88 297.25,-60.88 297.25,-80.12"/> <polygon fill="#e0e0e0" stroke="#999999" points="266.25,-80.12 200.75,-80.12 200.75,-60.88 266.25,-60.88 266.25,-80.12"/>
<text xml:space="preserve" text-anchor="middle" x="264.5" y="-66.62" font-family="Helvetica,sans-Serif" font-size="10.00">string_view</text> <text xml:space="preserve" text-anchor="middle" x="233.5" y="-66.62" font-family="Helvetica,sans-Serif" font-size="10.00">string_view</text>
</a> </a>
</g> </g>
</g> </g>
@@ -234,26 +234,26 @@ var sectionId = 'dynsection-0';
<g id="edge5_Node000004_Node000006" class="edge"> <g id="edge5_Node000004_Node000006" class="edge">
<title>Node4&#45;&gt;Node6</title> <title>Node4&#45;&gt;Node6</title>
<g id="a_edge5_Node000004_Node000006"><a xlink:title=" "> <g id="a_edge5_Node000004_Node000006"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M258.32,-121.36C259.41,-112.58 260.81,-101.27 262,-91.65"/> <path fill="none" stroke="#63b8ff" d="M251.28,-121.36C248.08,-112.38 243.94,-100.76 240.46,-91.01"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="265.46,-92.18 263.22,-81.82 258.52,-91.32 265.46,-92.18"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="243.81,-89.99 237.15,-81.75 237.22,-92.34 243.81,-89.99"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node8 --> <!-- Node7 -->
<g id="Node000008" class="node"> <g id="Node000007" class="node">
<title>Node8</title> <title>Node7</title>
<g id="a_Node000008"><a xlink:title=" "> <g id="a_Node000007"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="397.5,-19.25 357.5,-19.25 357.5,0 397.5,0 397.5,-19.25"/> <polygon fill="#e0e0e0" stroke="#999999" points="328.38,-80.12 284.62,-80.12 284.62,-60.88 328.38,-60.88 328.38,-80.12"/>
<text xml:space="preserve" text-anchor="middle" x="377.5" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">string</text> <text xml:space="preserve" text-anchor="middle" x="306.5" y="-66.62" font-family="Helvetica,sans-Serif" font-size="10.00">format</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node7&#45;&gt;Node8 --> <!-- Node4&#45;&gt;Node7 -->
<g id="edge7_Node000007_Node000008" class="edge"> <g id="edge6_Node000004_Node000007" class="edge">
<title>Node7&#45;&gt;Node8</title> <title>Node4&#45;&gt;Node7</title>
<g id="a_edge7_Node000007_Node000008"><a xlink:title=" "> <g id="a_edge6_Node000004_Node000007"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M376.23,-121.26C367.75,-111.98 358.02,-99.23 353.5,-85.75 349.19,-72.9 350.19,-68.4 353.5,-55.25 355.78,-46.21 360.29,-37 364.79,-29.31"/> <path fill="none" stroke="#63b8ff" d="M267.85,-121.36C275.19,-111.89 284.81,-99.48 292.61,-89.41"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="367.71,-31.24 370.1,-20.92 361.79,-27.5 367.71,-31.24"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="295.37,-91.57 298.73,-81.52 289.84,-87.28 295.37,-91.57"/>
</a> </a>
</g> </g>
</g> </g>
@@ -261,63 +261,81 @@ var sectionId = 'dynsection-0';
<g id="Node000009" class="node"> <g id="Node000009" class="node">
<title>Node9</title> <title>Node9</title>
<g id="a_Node000009"><a xlink:title=" "> <g id="a_Node000009"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="420.88,-80.12 362.12,-80.12 362.12,-60.88 420.88,-60.88 420.88,-80.12"/> <polygon fill="#e0e0e0" stroke="#999999" points="419.5,-19.25 379.5,-19.25 379.5,0 419.5,0 419.5,-19.25"/>
<text xml:space="preserve" text-anchor="middle" x="391.5" y="-66.62" font-family="Helvetica,sans-Serif" font-size="10.00">stdexcept</text> <text xml:space="preserve" text-anchor="middle" x="399.5" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">string</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node7&#45;&gt;Node9 --> <!-- Node8&#45;&gt;Node9 -->
<g id="edge8_Node000007_Node000009" class="edge"> <g id="edge8_Node000008_Node000009" class="edge">
<title>Node7&#45;&gt;Node9</title> <title>Node8&#45;&gt;Node9</title>
<g id="a_edge8_Node000007_Node000009"><a xlink:title=" "> <g id="a_edge8_Node000008_Node000009"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M391.5,-121.36C391.5,-112.58 391.5,-101.27 391.5,-91.65"/> <path fill="none" stroke="#63b8ff" d="M384.69,-121.31C378.05,-105.05 369.74,-78.12 375.5,-55.25 377.78,-46.21 382.29,-37 386.79,-29.31"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="395,-91.84 391.5,-81.84 388,-91.84 395,-91.84"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="389.71,-31.24 392.1,-20.92 383.79,-27.5 389.71,-31.24"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node10 --> <!-- Node10 -->
<g id="Node000010" class="node"> <g id="Node000010" class="node">
<title>Node10</title> <title>Node10</title>
<g id="a_Node000010"><a xlink:href="error__gridfire_8h.html" target="_top" xlink:title=" "> <g id="a_Node000010"><a xlink:title=" ">
<polygon fill="white" stroke="#666666" points="534.25,-85.75 438.75,-85.75 438.75,-55.25 534.25,-55.25 534.25,-85.75"/> <polygon fill="#e0e0e0" stroke="#999999" points="442.88,-80.12 384.12,-80.12 384.12,-60.88 442.88,-60.88 442.88,-80.12"/>
<text xml:space="preserve" text-anchor="start" x="446.75" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">gridfire/exceptions</text> <text xml:space="preserve" text-anchor="middle" x="413.5" y="-66.62" font-family="Helvetica,sans-Serif" font-size="10.00">stdexcept</text>
<text xml:space="preserve" text-anchor="middle" x="486.5" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">/error_gridfire.h</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node7&#45;&gt;Node10 --> <!-- Node8&#45;&gt;Node10 -->
<g id="edge9_Node000007_Node000010" class="edge"> <g id="edge9_Node000008_Node000010" class="edge">
<title>Node7&#45;&gt;Node10</title> <title>Node8&#45;&gt;Node10</title>
<g id="a_edge9_Node000007_Node000010"><a xlink:title=" "> <g id="a_edge9_Node000008_Node000010"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M413.06,-121.36C425.69,-112.79 441.85,-101.81 455.8,-92.34"/> <path fill="none" stroke="#63b8ff" d="M396.49,-121.36C399.56,-112.38 403.52,-100.76 406.85,-91.01"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="457.47,-95.44 463.78,-86.93 453.54,-89.65 457.47,-95.44"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="410.09,-92.35 410,-81.76 403.46,-90.09 410.09,-92.35"/>
</a>
</g>
</g>
<!-- Node10&#45;&gt;Node8 -->
<g id="edge11_Node000010_Node000008" class="edge">
<title>Node10&#45;&gt;Node8</title>
<g id="a_edge11_Node000010_Node000008"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M459.28,-54.8C442.36,-45.66 420.71,-33.97 403.94,-24.91"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="406.01,-22.05 395.55,-20.37 402.68,-28.21 406.01,-22.05"/>
</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:title=" "> <g id="a_Node000011"><a xlink:href="error__gridfire_8h.html" target="_top" xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="515.5,-19.25 457.5,-19.25 457.5,0 515.5,0 515.5,-19.25"/> <polygon fill="white" stroke="#666666" points="556.25,-85.75 460.75,-85.75 460.75,-55.25 556.25,-55.25 556.25,-85.75"/>
<text xml:space="preserve" text-anchor="middle" x="486.5" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">exception</text> <text xml:space="preserve" text-anchor="start" x="468.75" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">gridfire/exceptions</text>
<text xml:space="preserve" text-anchor="middle" x="508.5" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">/error_gridfire.h</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node10&#45;&gt;Node11 --> <!-- Node8&#45;&gt;Node11 -->
<g id="edge10_Node000010_Node000011" class="edge"> <g id="edge10_Node000008_Node000011" class="edge">
<title>Node10&#45;&gt;Node11</title> <title>Node8&#45;&gt;Node11</title>
<g id="a_edge10_Node000010_Node000011"><a xlink:title=" "> <g id="a_edge10_Node000008_Node000011"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M486.5,-54.95C486.5,-47.71 486.5,-38.84 486.5,-30.94"/> <path fill="none" stroke="#63b8ff" d="M418.05,-121.36C434.06,-112.54 454.67,-101.18 472.17,-91.53"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="490,-31.21 486.5,-21.21 483,-31.21 490,-31.21"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="473.66,-94.7 480.73,-86.81 470.28,-88.57 473.66,-94.7"/>
</a>
</g>
</g>
<!-- Node11&#45;&gt;Node9 -->
<g id="edge12_Node000011_Node000009" class="edge">
<title>Node11&#45;&gt;Node9</title>
<g id="a_edge12_Node000011_Node000009"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M481.28,-54.8C464.36,-45.66 442.71,-33.97 425.94,-24.91"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="428.01,-22.05 417.55,-20.37 424.68,-28.21 428.01,-22.05"/>
</a>
</g>
</g>
<!-- Node12 -->
<g id="Node000012" class="node">
<title>Node12</title>
<g id="a_Node000012"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="537.5,-19.25 479.5,-19.25 479.5,0 537.5,0 537.5,-19.25"/>
<text xml:space="preserve" text-anchor="middle" x="508.5" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">exception</text>
</a>
</g>
</g>
<!-- Node11&#45;&gt;Node12 -->
<g id="edge11_Node000011_Node000012" class="edge">
<title>Node11&#45;&gt;Node12</title>
<g id="a_edge11_Node000011_Node000012"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M508.5,-54.95C508.5,-47.71 508.5,-38.84 508.5,-30.94"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="512,-31.21 508.5,-21.21 505,-31.21 512,-31.21"/>
</a> </a>
</g> </g>
</g> </g>

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 18 KiB

View File

@@ -41,17 +41,17 @@
<g id="Node000003" class="node"> <g id="Node000003" class="node">
<title>Node3</title> <title>Node3</title>
<g id="a_Node000003"><a xlink:title=" "> <g id="a_Node000003"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="126.12,-80.12 74.88,-80.12 74.88,-60.88 126.12,-60.88 126.12,-80.12"/> <polygon fill="#e0e0e0" stroke="#999999" points="117.12,-80.12 65.88,-80.12 65.88,-60.88 117.12,-60.88 117.12,-80.12"/>
<text xml:space="preserve" text-anchor="middle" x="100.5" y="-66.62" font-family="Helvetica,sans-Serif" font-size="10.00">memory</text> <text xml:space="preserve" text-anchor="middle" x="91.5" y="-66.62" font-family="Helvetica,sans-Serif" font-size="10.00">memory</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node1&#45;&gt;Node3 --> <!-- Node1&#45;&gt;Node3 -->
<g id="edge13_Node000001_Node000003" class="edge"> <g id="edge14_Node000001_Node000003" class="edge">
<title>Node1&#45;&gt;Node3</title> <title>Node1&#45;&gt;Node3</title>
<g id="a_edge13_Node000001_Node000003"><a xlink:title=" "> <g id="a_edge14_Node000001_Node000003"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M324.83,-196.19C281.49,-189.86 224.98,-177.24 180.5,-152.25 152.48,-136.51 127.74,-108.12 113.44,-89.54"/> <path fill="none" stroke="#63b8ff" d="M324.66,-195.11C281.85,-188.35 226.15,-175.67 181.5,-152.25 165.32,-143.77 129.55,-109.5 108.3,-88.43"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="116.3,-87.52 107.52,-81.59 110.68,-91.7 116.3,-87.52"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="111.05,-86.23 101.5,-81.64 106.11,-91.18 111.05,-86.23"/>
</a> </a>
</g> </g>
</g> </g>
@@ -74,58 +74,40 @@
</a> </a>
</g> </g>
</g> </g>
<!-- Node7 --> <!-- Node8 -->
<g id="Node000007" class="node"> <g id="Node000008" class="node">
<title>Node7</title> <title>Node8</title>
<g id="a_Node000007"><a xlink:href="error__scratchpad_8h.html" target="_top" xlink:title=" "> <g id="a_Node000008"><a xlink:href="error__scratchpad_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="441.5,-152.25 341.5,-152.25 341.5,-121.75 441.5,-121.75 441.5,-152.25"/> <polygon fill="white" stroke="#666666" points="441.5,-152.25 341.5,-152.25 341.5,-121.75 441.5,-121.75 441.5,-152.25"/>
<text xml:space="preserve" text-anchor="start" x="349.5" y="-138.75" font-family="Helvetica,sans-Serif" font-size="10.00">gridfire/exceptions</text> <text xml:space="preserve" text-anchor="start" x="349.5" y="-138.75" font-family="Helvetica,sans-Serif" font-size="10.00">gridfire/exceptions</text>
<text xml:space="preserve" text-anchor="middle" x="391.5" y="-127.5" font-family="Helvetica,sans-Serif" font-size="10.00">/error_scratchpad.h</text> <text xml:space="preserve" text-anchor="middle" x="391.5" y="-127.5" font-family="Helvetica,sans-Serif" font-size="10.00">/error_scratchpad.h</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node1&#45;&gt;Node7 --> <!-- Node1&#45;&gt;Node8 -->
<g id="edge6_Node000001_Node000007" class="edge"> <g id="edge7_Node000001_Node000008" class="edge">
<title>Node1&#45;&gt;Node7</title> <title>Node1&#45;&gt;Node8</title>
<g id="a_edge6_Node000001_Node000007"><a xlink:title=" "> <g id="a_edge7_Node000001_Node000008"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M391.5,-187.86C391.5,-180.77 391.5,-172.04 391.5,-163.88"/> <path fill="none" stroke="#63b8ff" d="M391.5,-187.86C391.5,-180.77 391.5,-172.04 391.5,-163.88"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="395,-164.09 391.5,-154.09 388,-164.09 395,-164.09"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="395,-164.09 391.5,-154.09 388,-164.09 395,-164.09"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node12 -->
<g id="Node000012" class="node">
<title>Node12</title>
<g id="a_Node000012"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="541.88,-146.62 459.12,-146.62 459.12,-127.38 541.88,-127.38 541.88,-146.62"/>
<text xml:space="preserve" text-anchor="middle" x="500.5" y="-133.12" font-family="Helvetica,sans-Serif" font-size="10.00">unordered_map</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node12 -->
<g id="edge12_Node000001_Node000012" class="edge">
<title>Node1&#45;&gt;Node12</title>
<g id="a_edge12_Node000001_Node000012"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M416.23,-187.86C433.98,-177.36 457.8,-163.27 475.59,-152.74"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="477.15,-155.89 483.97,-147.78 473.58,-149.86 477.15,-155.89"/>
</a>
</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:title=" "> <g id="a_Node000013"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="615.38,-146.62 559.62,-146.62 559.62,-127.38 615.38,-127.38 615.38,-146.62"/> <polygon fill="#e0e0e0" stroke="#999999" points="541.88,-146.62 459.12,-146.62 459.12,-127.38 541.88,-127.38 541.88,-146.62"/>
<text xml:space="preserve" text-anchor="middle" x="587.5" y="-133.12" font-family="Helvetica,sans-Serif" font-size="10.00">expected</text> <text xml:space="preserve" text-anchor="middle" x="500.5" y="-133.12" font-family="Helvetica,sans-Serif" font-size="10.00">unordered_map</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node1&#45;&gt;Node13 --> <!-- Node1&#45;&gt;Node13 -->
<g id="edge14_Node000001_Node000013" class="edge"> <g id="edge13_Node000001_Node000013" class="edge">
<title>Node1&#45;&gt;Node13</title> <title>Node1&#45;&gt;Node13</title>
<g id="a_edge14_Node000001_Node000013"><a xlink:title=" "> <g id="a_edge13_Node000001_Node000013"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M440.82,-187.77C472.35,-178.14 514.02,-165.02 550.5,-152.25 551.64,-151.85 552.79,-151.44 553.96,-151.02"/> <path fill="none" stroke="#63b8ff" d="M416.23,-187.86C433.98,-177.36 457.8,-163.27 475.59,-152.74"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="554.91,-154.4 563.07,-147.64 552.48,-147.84 554.91,-154.4"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="477.15,-155.89 483.97,-147.78 473.58,-149.86 477.15,-155.89"/>
</a> </a>
</g> </g>
</g> </g>
@@ -133,8 +115,8 @@
<g id="Node000014" class="node"> <g id="Node000014" class="node">
<title>Node14</title> <title>Node14</title>
<g id="a_Node000014"><a xlink:title=" "> <g id="a_Node000014"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="711.25,-146.62 633.75,-146.62 633.75,-127.38 711.25,-127.38 711.25,-146.62"/> <polygon fill="#e0e0e0" stroke="#999999" points="615.38,-146.62 559.62,-146.62 559.62,-127.38 615.38,-127.38 615.38,-146.62"/>
<text xml:space="preserve" text-anchor="middle" x="672.5" y="-133.12" font-family="Helvetica,sans-Serif" font-size="10.00">unordered_set</text> <text xml:space="preserve" text-anchor="middle" x="587.5" y="-133.12" font-family="Helvetica,sans-Serif" font-size="10.00">expected</text>
</a> </a>
</g> </g>
</g> </g>
@@ -142,6 +124,24 @@
<g id="edge15_Node000001_Node000014" class="edge"> <g id="edge15_Node000001_Node000014" class="edge">
<title>Node1&#45;&gt;Node14</title> <title>Node1&#45;&gt;Node14</title>
<g id="a_edge15_Node000001_Node000014"><a xlink:title=" "> <g id="a_edge15_Node000001_Node000014"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M440.82,-187.77C472.35,-178.14 514.02,-165.02 550.5,-152.25 551.64,-151.85 552.79,-151.44 553.96,-151.02"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="554.91,-154.4 563.07,-147.64 552.48,-147.84 554.91,-154.4"/>
</a>
</g>
</g>
<!-- Node15 -->
<g id="Node000015" class="node">
<title>Node15</title>
<g id="a_Node000015"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="711.25,-146.62 633.75,-146.62 633.75,-127.38 711.25,-127.38 711.25,-146.62"/>
<text xml:space="preserve" text-anchor="middle" x="672.5" y="-133.12" font-family="Helvetica,sans-Serif" font-size="10.00">unordered_set</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node15 -->
<g id="edge16_Node000001_Node000015" class="edge">
<title>Node1&#45;&gt;Node15</title>
<g id="a_edge16_Node000001_Node000015"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M458.35,-189.49C505.1,-180.05 568.88,-166.48 624.5,-152.25 627.06,-151.6 629.68,-150.9 632.33,-150.17"/> <path fill="none" stroke="#63b8ff" d="M458.35,-189.49C505.1,-180.05 568.88,-166.48 624.5,-152.25 627.06,-151.6 629.68,-150.9 632.33,-150.17"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="633.03,-153.61 641.7,-147.51 631.12,-146.88 633.03,-153.61"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="633.03,-153.61 641.7,-147.51 631.12,-146.88 633.03,-153.61"/>
</a> </a>
@@ -151,8 +151,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="M74.22,-121.36C79.06,-112.18 85.34,-100.25 90.56,-90.36"/> <path fill="none" stroke="#63b8ff" d="M72.17,-121.36C75.66,-112.38 80.16,-100.76 83.94,-91.01"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="93.58,-92.14 95.14,-81.66 87.38,-88.88 93.58,-92.14"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="87.18,-92.32 87.53,-81.73 80.66,-89.79 87.18,-92.32"/>
</a> </a>
</g> </g>
</g> </g>
@@ -160,8 +160,8 @@
<g id="Node000005" class="node"> <g id="Node000005" class="node">
<title>Node5</title> <title>Node5</title>
<g id="a_Node000005"><a xlink:title=" "> <g id="a_Node000005"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="214.12,-80.12 168.88,-80.12 168.88,-60.88 214.12,-60.88 214.12,-80.12"/> <polygon fill="#e0e0e0" stroke="#999999" points="183.12,-80.12 137.88,-80.12 137.88,-60.88 183.12,-60.88 183.12,-80.12"/>
<text xml:space="preserve" text-anchor="middle" x="191.5" y="-66.62" font-family="Helvetica,sans-Serif" font-size="10.00">cstdint</text> <text xml:space="preserve" text-anchor="middle" x="160.5" y="-66.62" font-family="Helvetica,sans-Serif" font-size="10.00">cstdint</text>
</a> </a>
</g> </g>
</g> </g>
@@ -169,8 +169,8 @@
<g id="edge4_Node000004_Node000005" class="edge"> <g id="edge4_Node000004_Node000005" class="edge">
<title>Node4&#45;&gt;Node5</title> <title>Node4&#45;&gt;Node5</title>
<g id="a_edge4_Node000004_Node000005"><a xlink:title=" "> <g id="a_edge4_Node000004_Node000005"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M241.75,-121.36C231.8,-111.49 218.65,-98.44 208.3,-88.17"/> <path fill="none" stroke="#63b8ff" d="M234.72,-121.36C219.38,-111.06 198.89,-97.29 183.32,-86.83"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="211.03,-85.95 201.47,-81.39 206.1,-90.92 211.03,-85.95"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="185.42,-84.03 175.17,-81.35 181.51,-89.84 185.42,-84.03"/>
</a> </a>
</g> </g>
</g> </g>
@@ -178,8 +178,8 @@
<g id="Node000006" class="node"> <g id="Node000006" class="node">
<title>Node6</title> <title>Node6</title>
<g id="a_Node000006"><a xlink:title=" "> <g id="a_Node000006"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="297.25,-80.12 231.75,-80.12 231.75,-60.88 297.25,-60.88 297.25,-80.12"/> <polygon fill="#e0e0e0" stroke="#999999" points="266.25,-80.12 200.75,-80.12 200.75,-60.88 266.25,-60.88 266.25,-80.12"/>
<text xml:space="preserve" text-anchor="middle" x="264.5" y="-66.62" font-family="Helvetica,sans-Serif" font-size="10.00">string_view</text> <text xml:space="preserve" text-anchor="middle" x="233.5" y="-66.62" font-family="Helvetica,sans-Serif" font-size="10.00">string_view</text>
</a> </a>
</g> </g>
</g> </g>
@@ -187,26 +187,26 @@
<g id="edge5_Node000004_Node000006" class="edge"> <g id="edge5_Node000004_Node000006" class="edge">
<title>Node4&#45;&gt;Node6</title> <title>Node4&#45;&gt;Node6</title>
<g id="a_edge5_Node000004_Node000006"><a xlink:title=" "> <g id="a_edge5_Node000004_Node000006"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M258.32,-121.36C259.41,-112.58 260.81,-101.27 262,-91.65"/> <path fill="none" stroke="#63b8ff" d="M251.28,-121.36C248.08,-112.38 243.94,-100.76 240.46,-91.01"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="265.46,-92.18 263.22,-81.82 258.52,-91.32 265.46,-92.18"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="243.81,-89.99 237.15,-81.75 237.22,-92.34 243.81,-89.99"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node8 --> <!-- Node7 -->
<g id="Node000008" class="node"> <g id="Node000007" class="node">
<title>Node8</title> <title>Node7</title>
<g id="a_Node000008"><a xlink:title=" "> <g id="a_Node000007"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="397.5,-19.25 357.5,-19.25 357.5,0 397.5,0 397.5,-19.25"/> <polygon fill="#e0e0e0" stroke="#999999" points="328.38,-80.12 284.62,-80.12 284.62,-60.88 328.38,-60.88 328.38,-80.12"/>
<text xml:space="preserve" text-anchor="middle" x="377.5" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">string</text> <text xml:space="preserve" text-anchor="middle" x="306.5" y="-66.62" font-family="Helvetica,sans-Serif" font-size="10.00">format</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node7&#45;&gt;Node8 --> <!-- Node4&#45;&gt;Node7 -->
<g id="edge7_Node000007_Node000008" class="edge"> <g id="edge6_Node000004_Node000007" class="edge">
<title>Node7&#45;&gt;Node8</title> <title>Node4&#45;&gt;Node7</title>
<g id="a_edge7_Node000007_Node000008"><a xlink:title=" "> <g id="a_edge6_Node000004_Node000007"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M376.23,-121.26C367.75,-111.98 358.02,-99.23 353.5,-85.75 349.19,-72.9 350.19,-68.4 353.5,-55.25 355.78,-46.21 360.29,-37 364.79,-29.31"/> <path fill="none" stroke="#63b8ff" d="M267.85,-121.36C275.19,-111.89 284.81,-99.48 292.61,-89.41"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="367.71,-31.24 370.1,-20.92 361.79,-27.5 367.71,-31.24"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="295.37,-91.57 298.73,-81.52 289.84,-87.28 295.37,-91.57"/>
</a> </a>
</g> </g>
</g> </g>
@@ -214,63 +214,81 @@
<g id="Node000009" class="node"> <g id="Node000009" class="node">
<title>Node9</title> <title>Node9</title>
<g id="a_Node000009"><a xlink:title=" "> <g id="a_Node000009"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="420.88,-80.12 362.12,-80.12 362.12,-60.88 420.88,-60.88 420.88,-80.12"/> <polygon fill="#e0e0e0" stroke="#999999" points="419.5,-19.25 379.5,-19.25 379.5,0 419.5,0 419.5,-19.25"/>
<text xml:space="preserve" text-anchor="middle" x="391.5" y="-66.62" font-family="Helvetica,sans-Serif" font-size="10.00">stdexcept</text> <text xml:space="preserve" text-anchor="middle" x="399.5" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">string</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node7&#45;&gt;Node9 --> <!-- Node8&#45;&gt;Node9 -->
<g id="edge8_Node000007_Node000009" class="edge"> <g id="edge8_Node000008_Node000009" class="edge">
<title>Node7&#45;&gt;Node9</title> <title>Node8&#45;&gt;Node9</title>
<g id="a_edge8_Node000007_Node000009"><a xlink:title=" "> <g id="a_edge8_Node000008_Node000009"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M391.5,-121.36C391.5,-112.58 391.5,-101.27 391.5,-91.65"/> <path fill="none" stroke="#63b8ff" d="M384.69,-121.31C378.05,-105.05 369.74,-78.12 375.5,-55.25 377.78,-46.21 382.29,-37 386.79,-29.31"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="395,-91.84 391.5,-81.84 388,-91.84 395,-91.84"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="389.71,-31.24 392.1,-20.92 383.79,-27.5 389.71,-31.24"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node10 --> <!-- Node10 -->
<g id="Node000010" class="node"> <g id="Node000010" class="node">
<title>Node10</title> <title>Node10</title>
<g id="a_Node000010"><a xlink:href="error__gridfire_8h.html" target="_top" xlink:title=" "> <g id="a_Node000010"><a xlink:title=" ">
<polygon fill="white" stroke="#666666" points="534.25,-85.75 438.75,-85.75 438.75,-55.25 534.25,-55.25 534.25,-85.75"/> <polygon fill="#e0e0e0" stroke="#999999" points="442.88,-80.12 384.12,-80.12 384.12,-60.88 442.88,-60.88 442.88,-80.12"/>
<text xml:space="preserve" text-anchor="start" x="446.75" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">gridfire/exceptions</text> <text xml:space="preserve" text-anchor="middle" x="413.5" y="-66.62" font-family="Helvetica,sans-Serif" font-size="10.00">stdexcept</text>
<text xml:space="preserve" text-anchor="middle" x="486.5" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">/error_gridfire.h</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node7&#45;&gt;Node10 --> <!-- Node8&#45;&gt;Node10 -->
<g id="edge9_Node000007_Node000010" class="edge"> <g id="edge9_Node000008_Node000010" class="edge">
<title>Node7&#45;&gt;Node10</title> <title>Node8&#45;&gt;Node10</title>
<g id="a_edge9_Node000007_Node000010"><a xlink:title=" "> <g id="a_edge9_Node000008_Node000010"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M413.06,-121.36C425.69,-112.79 441.85,-101.81 455.8,-92.34"/> <path fill="none" stroke="#63b8ff" d="M396.49,-121.36C399.56,-112.38 403.52,-100.76 406.85,-91.01"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="457.47,-95.44 463.78,-86.93 453.54,-89.65 457.47,-95.44"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="410.09,-92.35 410,-81.76 403.46,-90.09 410.09,-92.35"/>
</a>
</g>
</g>
<!-- Node10&#45;&gt;Node8 -->
<g id="edge11_Node000010_Node000008" class="edge">
<title>Node10&#45;&gt;Node8</title>
<g id="a_edge11_Node000010_Node000008"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M459.28,-54.8C442.36,-45.66 420.71,-33.97 403.94,-24.91"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="406.01,-22.05 395.55,-20.37 402.68,-28.21 406.01,-22.05"/>
</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:title=" "> <g id="a_Node000011"><a xlink:href="error__gridfire_8h.html" target="_top" xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="515.5,-19.25 457.5,-19.25 457.5,0 515.5,0 515.5,-19.25"/> <polygon fill="white" stroke="#666666" points="556.25,-85.75 460.75,-85.75 460.75,-55.25 556.25,-55.25 556.25,-85.75"/>
<text xml:space="preserve" text-anchor="middle" x="486.5" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">exception</text> <text xml:space="preserve" text-anchor="start" x="468.75" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">gridfire/exceptions</text>
<text xml:space="preserve" text-anchor="middle" x="508.5" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">/error_gridfire.h</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node10&#45;&gt;Node11 --> <!-- Node8&#45;&gt;Node11 -->
<g id="edge10_Node000010_Node000011" class="edge"> <g id="edge10_Node000008_Node000011" class="edge">
<title>Node10&#45;&gt;Node11</title> <title>Node8&#45;&gt;Node11</title>
<g id="a_edge10_Node000010_Node000011"><a xlink:title=" "> <g id="a_edge10_Node000008_Node000011"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M486.5,-54.95C486.5,-47.71 486.5,-38.84 486.5,-30.94"/> <path fill="none" stroke="#63b8ff" d="M418.05,-121.36C434.06,-112.54 454.67,-101.18 472.17,-91.53"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="490,-31.21 486.5,-21.21 483,-31.21 490,-31.21"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="473.66,-94.7 480.73,-86.81 470.28,-88.57 473.66,-94.7"/>
</a>
</g>
</g>
<!-- Node11&#45;&gt;Node9 -->
<g id="edge12_Node000011_Node000009" class="edge">
<title>Node11&#45;&gt;Node9</title>
<g id="a_edge12_Node000011_Node000009"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M481.28,-54.8C464.36,-45.66 442.71,-33.97 425.94,-24.91"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="428.01,-22.05 417.55,-20.37 424.68,-28.21 428.01,-22.05"/>
</a>
</g>
</g>
<!-- Node12 -->
<g id="Node000012" class="node">
<title>Node12</title>
<g id="a_Node000012"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="537.5,-19.25 479.5,-19.25 479.5,0 537.5,0 537.5,-19.25"/>
<text xml:space="preserve" text-anchor="middle" x="508.5" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">exception</text>
</a>
</g>
</g>
<!-- Node11&#45;&gt;Node12 -->
<g id="edge11_Node000011_Node000012" class="edge">
<title>Node11&#45;&gt;Node12</title>
<g id="a_edge11_Node000011_Node000012"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M508.5,-54.95C508.5,-47.71 508.5,-38.84 508.5,-30.94"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="512,-31.21 508.5,-21.21 505,-31.21 512,-31.21"/>
</a> </a>
</g> </g>
</g> </g>

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 14 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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -1,85 +1,88 @@
<map id="src/include/gridfire/engine/types/building.h" name="src/include/gridfire/engine/types/building.h"> <map id="src/include/gridfire/engine/types/building.h" name="src/include/gridfire/engine/types/building.h">
<area shape="rect" id="Node000001" title="Defines types related to building reaction networks in the GridFire engine." alt="" coords="842,5,1000,46"/> <area shape="rect" id="Node000001" title="Defines types related to building reaction networks in the GridFire engine." alt="" coords="1226,5,1384,46"/>
<area shape="rect" id="Node000002" href="$construction_8h.html" title="Functions for constructing nuclear reaction networks." alt="" coords="813,94,1030,135"/> <area shape="rect" id="Node000002" href="$construction_8h.html" title="Functions for constructing nuclear reaction networks." alt="" coords="1196,94,1414,135"/>
<area shape="poly" id="edge1_Node000001_Node000002" title=" " alt="" coords="922,59,924,95,919,93,920,64"/> <area shape="poly" id="edge1_Node000001_Node000002" title=" " alt="" coords="1306,59,1307,95,1303,92,1304,64"/>
<area shape="rect" id="Node000003" href="$engine__graph_8h.html" title=" " alt="" coords="644,183,799,223"/> <area shape="rect" id="Node000003" href="$engine__graph_8h.html" title=" " alt="" coords="933,183,1088,223"/>
<area shape="poly" id="edge2_Node000002_Node000003" title=" " alt="" coords="860,143,768,184,765,180,864,140"/> <area shape="poly" id="edge2_Node000002_Node000003" title=" " alt="" coords="1221,141,1078,185,1076,180,1226,138"/>
<area shape="rect" id="Node000014" href="$engine__procedures_8h.html" title=" " alt="" coords="907,375,1080,431"/> <area shape="rect" id="Node000014" href="$engine__procedures_8h.html" title=" " alt="" coords="1212,375,1385,431"/>
<area shape="poly" id="edge50_Node000002_Node000014" title=" " alt="" coords="931,148,989,375,984,374,929,152"/> <area shape="poly" id="edge52_Node000002_Node000014" title=" " alt="" coords="1332,144,1359,183,1381,228,1388,253,1392,278,1391,304,1383,328,1366,355,1343,377,1340,372,1362,351,1379,326,1385,303,1387,279,1383,254,1376,230,1354,185,1331,150"/>
<area shape="rect" id="Node000015" href="$engine__graph_8cpp.html" title=" " alt="" coords="43,382,184,423"/> <area shape="rect" id="Node000015" href="$engine__graph_8cpp.html" title=" " alt="" coords="371,382,511,423"/>
<area shape="poly" id="edge51_Node000002_Node000015" title=" " alt="" coords="795,122,615,137,511,148,407,164,308,183,222,208,153,238,127,255,107,273,95,299,94,328,99,357,107,382,102,382,94,358,89,328,90,297,103,270,123,250,150,233,220,203,307,178,406,158,510,143,614,132,799,119"/> <area shape="poly" id="edge53_Node000002_Node000015" title=" " alt="" coords="1178,125,1001,143,794,172,696,192,608,215,535,242,507,257,485,273,466,298,454,327,444,383,439,381,449,326,461,295,482,269,504,253,533,237,606,210,695,187,794,167,1000,138,1183,123"/>
<area shape="rect" id="Node000031" href="$construction_8cpp.html" title=" " alt="" coords="1064,183,1230,223"/> <area shape="rect" id="Node000032" href="$construction_8cpp.html" title=" " alt="" coords="1583,183,1749,223"/>
<area shape="poly" id="edge52_Node000002_Node000031" title=" " alt="" coords="987,138,1098,182,1093,183,987,143"/> <area shape="poly" id="edge54_Node000002_Node000032" title=" " alt="" coords="1402,136,1587,182,1582,183,1403,141"/>
<area shape="rect" id="Node000004" href="$engine_8h.html" title="Core header for the GridFire reaction network engine module." alt="" coords="799,671,926,712"/> <area shape="rect" id="Node000004" href="$engine_8h.html" title="Core header for the GridFire reaction network engine module." alt="" coords="1191,671,1318,712"/>
<area shape="poly" id="edge3_Node000003_Node000004" title=" " alt="" coords="626,207,496,213,344,224,203,243,148,257,107,274,64,299,33,324,22,339,15,356,8,402,8,508,10,534,16,554,25,571,37,583,70,600,112,607,217,609,274,612,331,620,460,646,589,664,801,686,796,687,589,670,459,651,330,626,274,617,217,614,112,612,68,605,34,588,20,574,11,556,5,534,3,508,3,401,9,355,18,336,30,321,61,294,104,269,146,252,202,238,343,219,495,208,630,204"/> <area shape="poly" id="edge3_Node000003_Node000004" title=" " alt="" coords="1103,209,1237,230,1310,247,1382,269,1440,287,1486,303,1507,313,1526,328,1544,347,1562,374,1573,399,1577,424,1576,448,1569,472,1541,516,1500,557,1451,594,1398,626,1303,673,1301,668,1396,622,1448,590,1497,553,1537,513,1564,469,1570,447,1572,424,1568,400,1557,376,1540,351,1523,332,1504,318,1484,308,1438,292,1380,274,1309,252,1236,235,1104,215"/>
<area shape="rect" id="Node000013" href="$priming_8h.html" title=" " alt="" coords="532,279,721,320"/> <area shape="rect" id="Node000013" href="$priming_8h.html" title=" " alt="" coords="563,279,751,320"/>
<area shape="poly" id="edge15_Node000003_Node000013" title=" " alt="" coords="689,236,648,280,644,277,693,232"/> <area shape="poly" id="edge15_Node000003_Node000013" title=" " alt="" coords="919,229,732,281,730,276,924,226"/>
<area shape="poly" id="edge46_Node000003_Node000015" title=" " alt="" coords="626,210,490,220,337,234,206,251,162,262,138,273,121,298,113,327,111,356,113,382,108,382,106,356,108,326,116,295,134,269,160,257,205,246,336,228,490,215,630,207"/> <area shape="poly" id="edge48_Node000003_Node000015" title=" " alt="" coords="915,211,820,221,714,234,618,251,580,262,552,274,519,298,491,327,453,384,449,381,487,324,515,294,549,269,578,257,617,246,713,228,819,216,920,209"/>
<area shape="rect" id="Node000018" href="$engine__graph__scratchpad_8h.html" title="Scratchpad implementation for the GraphEngine using CppAD automatic differentiation." alt="" coords="148,271,329,327"/> <area shape="rect" id="Node000018" href="$engine__graph__scratchpad_8h.html" title="Scratchpad implementation for the GraphEngine using CppAD automatic differentiation." alt="" coords="113,271,294,327"/>
<area shape="poly" id="edge21_Node000003_Node000018" title=" " alt="" coords="626,220,492,244,341,274,331,276,328,272,339,269,491,239,630,217"/> <area shape="poly" id="edge21_Node000003_Node000018" title=" " alt="" coords="916,217,295,290,293,285,918,213"/>
<area shape="rect" id="Node000022" href="$stellar__policy_8cpp.html" title=" " alt="" coords="680,582,813,623"/> <area shape="rect" id="Node000022" href="$stellar__policy_8cpp.html" title=" " alt="" coords="582,582,716,623"/>
<area shape="poly" id="edge48_Node000003_Node000022" title=" " alt="" coords="813,214,863,235,885,250,902,270,909,285,909,298,903,328,883,434,866,493,846,536,820,563,789,584,786,579,816,559,842,533,861,491,877,433,897,326,904,297,904,286,898,273,881,254,860,239,814,220"/> <area shape="poly" id="edge50_Node000003_Node000022" title=" " alt="" coords="996,236,983,272,975,312,972,348,976,413,976,444,970,474,957,504,932,536,917,547,896,558,841,574,717,596,715,591,839,569,894,553,914,543,928,532,952,502,965,472,970,443,971,413,967,348,969,311,978,271,992,240"/>
<area shape="rect" id="Node000023" href="$engine__defined_8h.html" title=" " alt="" coords="1206,271,1349,327"/> <area shape="rect" id="Node000023" href="$engine__defined_8h.html" title=" " alt="" coords="993,271,1137,327"/>
<area shape="poly" id="edge30_Node000003_Node000023" title=" " alt="" coords="814,217,1208,285,1203,287,815,223"/> <area shape="poly" id="edge30_Node000003_Node000023" title=" " alt="" coords="1030,234,1052,271,1046,270,1029,239"/>
<area shape="rect" id="Node000027" href="$engine__defined_8cpp.html" title=" " alt="" coords="1155,382,1293,423"/> <area shape="rect" id="Node000027" href="$engine__defined_8cpp.html" title=" " alt="" coords="1410,382,1547,423"/>
<area shape="poly" id="edge47_Node000003_Node000027" title=" " alt="" coords="810,225,945,269,1080,327,1189,382,1184,382,1077,332,943,274,811,231"/> <area shape="poly" id="edge49_Node000003_Node000027" title=" " alt="" coords="1076,227,1115,246,1151,269,1166,284,1176,299,1185,312,1201,325,1252,348,1295,356,1341,361,1398,372,1422,382,1417,382,1396,378,1340,366,1294,362,1250,353,1198,329,1181,316,1171,302,1162,288,1147,273,1112,251,1076,233"/>
<area shape="rect" id="Node000028" href="$engine__multiscale_8h.html" title=" " alt="" coords="744,271,888,327"/> <area shape="rect" id="Node000028" href="$engine__multiscale_8h.html" title=" " alt="" coords="775,271,918,327"/>
<area shape="poly" id="edge38_Node000003_Node000028" title=" " alt="" coords="752,232,791,271,786,271,752,237"/> <area shape="poly" id="edge38_Node000003_Node000028" title=" " alt="" coords="961,233,895,273,892,269,965,230"/>
<area shape="rect" id="Node000030" href="$_point_solver_8cpp.html" title=" " alt="" coords="352,279,509,320"/> <area shape="rect" id="Node000031" href="$_point_solver_8cpp.html" title=" " alt="" coords="1212,279,1368,320"/>
<area shape="poly" id="edge49_Node000003_Node000030" title=" " alt="" coords="644,230,493,281,490,276,648,227"/> <area shape="poly" id="edge51_Node000003_Node000031" title=" " alt="" coords="1083,226,1234,278,1229,279,1084,231"/>
<area shape="rect" id="Node000005" href="$gridfire_8h.html" title=" " alt="" coords="566,760,693,800"/> <area shape="rect" id="Node000005" href="$gridfire_8h.html" title=" " alt="" coords="957,760,1085,800"/>
<area shape="poly" id="edge4_Node000004_Node000005" title=" " alt="" coords="798,717,683,762,682,757,793,718"/> <area shape="poly" id="edge4_Node000004_Node000005" title=" " alt="" coords="1190,717,1075,762,1073,757,1184,718"/>
<area shape="rect" id="Node000009" href="$engine_2bindings_8cpp.html" title=" " alt="" coords="673,863,874,889"/> <area shape="rect" id="Node000009" href="$engine_2bindings_8cpp.html" title=" " alt="" coords="1064,863,1266,889"/>
<area shape="poly" id="edge9_Node000004_Node000009" title=" " alt="" coords="800,718,776,739,758,761,751,787,753,815,761,841,769,864,765,862,756,843,748,816,746,787,754,758,772,735,795,721"/> <area shape="poly" id="edge9_Node000004_Node000009" title=" " alt="" coords="1191,718,1167,739,1150,761,1143,787,1145,815,1152,841,1161,864,1156,862,1147,843,1139,816,1137,787,1145,758,1164,735,1187,721"/>
<area shape="rect" id="Node000010" href="$py__engine_8cpp.html" title=" " alt="" coords="899,856,1088,896"/> <area shape="rect" id="Node000010" href="$py__engine_8cpp.html" title=" " alt="" coords="1291,856,1479,896"/>
<area shape="poly" id="edge10_Node000004_Node000010" title=" " alt="" coords="924,717,950,735,972,758,984,782,992,809,996,857,992,854,986,810,979,784,967,761,947,739,923,722"/> <area shape="poly" id="edge10_Node000004_Node000010" title=" " alt="" coords="1316,717,1342,735,1363,758,1376,782,1383,809,1387,857,1383,854,1378,810,1371,784,1359,761,1338,739,1315,722"/>
<area shape="rect" id="Node000011" href="$py__engine_8h.html" title=" " alt="" coords="768,760,957,800"/> <area shape="rect" id="Node000011" href="$py__engine_8h.html" title=" " alt="" coords="1160,760,1348,800"/>
<area shape="poly" id="edge11_Node000004_Node000011" title=" " alt="" coords="864,725,865,761,860,758,861,729"/> <area shape="poly" id="edge11_Node000004_Node000011" title=" " alt="" coords="1256,725,1256,761,1252,758,1253,729"/>
<area shape="rect" id="Node000012" href="$py__policy_8cpp.html" title=" " alt="" coords="1032,760,1216,800"/> <area shape="rect" id="Node000012" href="$py__policy_8cpp.html" title=" " alt="" coords="1423,760,1608,800"/>
<area shape="poly" id="edge14_Node000004_Node000012" title=" " alt="" coords="937,714,1067,759,1062,759,936,720"/> <area shape="poly" id="edge14_Node000004_Node000012" title=" " alt="" coords="1328,714,1459,759,1453,759,1328,720"/>
<area shape="rect" id="Node000006" href="$gridfire__context_8h.html" title=" " alt="" coords="446,848,594,904"/> <area shape="rect" id="Node000006" href="$gridfire__context_8h.html" title=" " alt="" coords="838,848,985,904"/>
<area shape="poly" id="edge5_Node000005_Node000006" title=" " alt="" coords="598,809,553,850,550,845,593,812"/> <area shape="poly" id="edge5_Node000005_Node000006" title=" " alt="" coords="989,810,945,850,942,845,984,812"/>
<area shape="rect" id="Node000008" href="$gridfire__extern_8cpp.html" title=" " alt="" coords="561,952,700,993"/> <area shape="rect" id="Node000008" href="$gridfire__extern_8cpp.html" title=" " alt="" coords="953,952,1092,993"/>
<area shape="poly" id="edge8_Node000005_Node000008" title=" " alt="" coords="632,814,633,953,628,950,628,818"/> <area shape="poly" id="edge8_Node000005_Node000008" title=" " alt="" coords="1023,814,1024,953,1020,950,1019,818"/>
<area shape="rect" id="Node000007" href="$gridfire__context_8cpp.html" title=" " alt="" coords="397,952,536,993"/> <area shape="rect" id="Node000007" href="$gridfire__context_8cpp.html" title=" " alt="" coords="789,952,928,993"/>
<area shape="poly" id="edge6_Node000006_Node000007" title=" " alt="" coords="499,916,479,954,476,950,495,919"/> <area shape="poly" id="edge6_Node000006_Node000007" title=" " alt="" coords="891,916,871,954,868,950,886,919"/>
<area shape="poly" id="edge7_Node000006_Node000008" title=" " alt="" coords="565,912,610,952,605,951,563,917"/> <area shape="poly" id="edge7_Node000006_Node000008" title=" " alt="" coords="956,912,1002,952,997,951,954,917"/>
<area shape="poly" id="edge12_Node000011_Node000009" title=" " alt="" coords="836,810,786,865,783,861,831,813"/> <area shape="poly" id="edge12_Node000011_Node000009" title=" " alt="" coords="1228,810,1177,866,1175,861,1223,813"/>
<area shape="poly" id="edge13_Node000011_Node000010" title=" " alt="" coords="903,807,969,856,964,855,901,812"/> <area shape="poly" id="edge13_Node000011_Node000010" title=" " alt="" coords="1294,807,1360,856,1355,855,1293,812"/>
<area shape="poly" id="edge16_Node000013_Node000014" title=" " alt="" coords="712,322,909,377,904,378,713,327"/> <area shape="poly" id="edge16_Node000013_Node000014" title=" " alt="" coords="743,321,763,324,885,341,981,348,1078,354,1200,372,1214,377,1209,378,1199,378,1077,360,981,353,884,347,762,330,744,326"/>
<area shape="poly" id="edge18_Node000013_Node000015" title=" " alt="" coords="534,325,522,330,340,366,185,392,183,388,339,360,521,324,539,322"/> <area shape="poly" id="edge18_Node000013_Node000015" title=" " alt="" coords="600,328,484,384,481,380,604,325"/>
<area shape="rect" id="Node000016" href="$priming_8cpp.html" title=" " alt="" coords="360,382,526,423"/> <area shape="rect" id="Node000016" href="$priming_8cpp.html" title=" " alt="" coords="180,382,347,423"/>
<area shape="poly" id="edge19_Node000013_Node000016" title=" " alt="" coords="576,329,480,384,476,380,580,325"/> <area shape="poly" id="edge19_Node000013_Node000016" title=" " alt="" coords="559,326,359,378,334,384,331,380,358,372,563,322"/>
<area shape="rect" id="Node000017" href="$engine__multiscale_8cpp.html" title=" " alt="" coords="678,486,832,527"/> <area shape="rect" id="Node000017" href="$engine__multiscale_8cpp.html" title=" " alt="" coords="514,486,669,527"/>
<area shape="poly" id="edge20_Node000013_Node000017" title=" " alt="" coords="690,325,721,346,745,374,757,402,762,433,760,487,755,485,757,433,752,404,740,376,717,350,690,330"/> <area shape="poly" id="edge20_Node000013_Node000017" title=" " alt="" coords="695,327,716,349,730,374,738,403,737,417,730,432,716,450,698,466,659,488,656,483,695,461,712,447,725,429,732,415,733,404,725,376,711,352,695,333"/>
<area shape="poly" id="edge17_Node000014_Node000004" title=" " alt="" coords="977,443,874,672,870,669,973,447"/> <area shape="poly" id="edge17_Node000014_Node000004" title=" " alt="" coords="1308,444,1313,478,1315,507,1313,535,1291,612,1266,672,1262,669,1286,610,1308,534,1310,507,1308,479,1305,448"/>
<area shape="poly" id="edge27_Node000018_Node000015" title=" " alt="" coords="192,339,140,384,135,381,195,334"/> <area shape="poly" id="edge27_Node000018_Node000015" title=" " alt="" coords="281,331,397,381,392,383,282,336"/>
<area shape="poly" id="edge28_Node000018_Node000016" title=" " alt="" coords="306,332,406,381,401,383,307,337"/> <area shape="poly" id="edge28_Node000018_Node000016" title=" " alt="" coords="227,338,255,382,250,383,227,343"/>
<area shape="rect" id="Node000019" href="$engine_2scratchpads_2formatters_8h.html" title=" " alt="" coords="259,486,472,527"/> <area shape="rect" id="Node000019" href="$engine_2scratchpads_2formatters_8h.html" title=" " alt="" coords="33,486,246,527"/>
<area shape="poly" id="edge22_Node000018_Node000019" title=" " alt="" coords="256,338,280,384,306,429,350,486,345,486,302,432,275,386,256,344"/> <area shape="poly" id="edge22_Node000018_Node000019" title=" " alt="" coords="151,340,139,357,127,376,121,404,121,434,134,486,129,486,116,435,115,404,122,374,135,353,153,335"/>
<area shape="rect" id="Node000020" href="$scratchpads_8h.html" title="Unified header for the scratchpad memory management system." alt="" coords="342,582,567,623"/> <area shape="rect" id="Node000020" href="$scratchpads_8h.html" title="Unified header for the scratchpad memory management system." alt="" coords="149,582,373,623"/>
<area shape="poly" id="edge26_Node000018_Node000020" title=" " alt="" coords="228,340,222,386,219,436,227,487,236,511,249,533,268,552,291,568,345,590,340,592,288,573,264,557,245,536,231,513,222,489,214,437,217,385,226,345"/> <area shape="poly" id="edge26_Node000018_Node000020" title=" " alt="" coords="141,338,87,378,60,401,36,427,19,453,10,480,10,507,23,533,41,547,71,560,150,582,146,585,69,565,39,552,19,536,5,508,4,479,14,451,32,424,56,398,84,374,144,333"/>
<area shape="poly" id="edge29_Node000018_Node000022" title=" " alt="" coords="273,336,306,373,326,404,335,416,350,428,384,448,414,457,446,464,485,476,608,531,711,581,705,582,606,536,483,481,444,469,413,462,382,453,346,433,331,419,322,407,302,377,273,342"/> <area shape="poly" id="edge29_Node000018_Node000022" title=" " alt="" coords="176,343,169,363,163,386,163,409,171,429,190,443,227,461,338,503,584,581,580,584,337,508,225,466,187,448,167,432,158,410,158,385,164,361,178,338"/>
<area shape="poly" id="edge23_Node000019_Node000020" title=" " alt="" coords="394,535,439,582,434,582,394,541"/> <area shape="poly" id="edge23_Node000019_Node000020" title=" " alt="" coords="176,534,238,581,233,583,177,539"/>
<area shape="poly" id="edge24_Node000020_Node000004" title=" " alt="" coords="562,624,801,676,796,677,563,629"/> <area shape="poly" id="edge24_Node000020_Node000004" title=" " alt="" coords="388,612,1191,682,1189,687,389,618"/>
<area shape="rect" id="Node000021" href="$engine_2scratchpads_2bindings_8cpp.html" title=" " alt="" coords="355,671,554,712"/> <area shape="rect" id="Node000021" href="$engine_2scratchpads_2bindings_8cpp.html" title=" " alt="" coords="161,671,361,712"/>
<area shape="poly" id="edge25_Node000020_Node000021" title=" " alt="" coords="456,636,457,672,452,669,453,641"/> <area shape="poly" id="edge25_Node000020_Node000021" title=" " alt="" coords="262,636,263,671,258,670,260,641"/>
<area shape="rect" id="Node000024" href="$engine__priming_8h.html" title=" " alt="" coords="1368,375,1512,431"/> <area shape="rect" id="Node000024" href="$engine__priming_8h.html" title=" " alt="" coords="1044,375,1187,431"/>
<area shape="poly" id="edge31_Node000023_Node000024" title=" " alt="" coords="1334,333,1399,374,1394,374,1334,338"/> <area shape="poly" id="edge31_Node000023_Node000024" title=" " alt="" coords="1086,339,1105,375,1099,374,1085,344"/>
<area shape="rect" id="Node000025" href="$engine__views_8h.html" title=" " alt="" coords="1046,479,1189,534"/> <area shape="rect" id="Node000025" href="$engine__views_8h.html" title=" " alt="" coords="993,479,1137,534"/>
<area shape="poly" id="edge36_Node000023_Node000025" title=" " alt="" coords="1302,338,1312,362,1317,386,1317,410,1308,432,1284,458,1254,477,1222,490,1190,499,1189,494,1221,485,1252,472,1280,454,1303,429,1311,409,1312,386,1307,363,1300,343"/> <area shape="poly" id="edge36_Node000023_Node000025" title=" " alt="" coords="1045,339,1034,376,1030,403,1034,430,1052,479,1047,477,1029,431,1025,403,1029,374,1041,343"/>
<area shape="poly" id="edge37_Node000023_Node000027" title=" " alt="" coords="1258,339,1236,384,1232,380,1254,343"/> <area shape="poly" id="edge37_Node000023_Node000027" title=" " alt="" coords="1151,323,1156,324,1224,339,1277,348,1330,357,1398,372,1424,382,1419,382,1396,378,1329,362,1276,353,1223,344,1155,330,1152,329"/>
<area shape="poly" id="edge32_Node000024_Node000025" title=" " alt="" coords="1351,432,1190,485,1188,480,1356,430"/> <area shape="poly" id="edge32_Node000024_Node000025" title=" " alt="" coords="1097,443,1080,480,1077,476,1093,447"/>
<area shape="rect" id="Node000026" href="$engine__priming_8cpp.html" title=" " alt="" coords="1371,486,1509,527"/> <area shape="rect" id="Node000026" href="$engine__priming_8cpp.html" title=" " alt="" coords="1160,486,1298,527"/>
<area shape="poly" id="edge35_Node000024_Node000026" title=" " alt="" coords="1442,444,1442,488,1438,485,1438,448"/> <area shape="poly" id="edge35_Node000024_Node000026" title=" " alt="" coords="1158,439,1210,486,1204,485,1157,444"/>
<area shape="poly" id="edge33_Node000025_Node000004" title=" " alt="" coords="1078,544,978,625,900,673,898,668,974,621,1073,546"/> <area shape="poly" id="edge33_Node000025_Node000004" title=" " alt="" coords="1104,542,1237,671,1232,671,1103,547"/>
<area shape="poly" id="edge34_Node000025_Node000022" title=" " alt="" coords="1028,531,814,587,813,582,1033,529"/> <area shape="poly" id="edge34_Node000025_Node000022" title=" " alt="" coords="976,534,975,537,837,568,717,592,715,587,836,563,974,532,981,532"/>
<area shape="poly" id="edge45_Node000028_Node000017" title=" " alt="" coords="810,340,789,431,766,488,762,484,784,430,807,344"/> <area shape="poly" id="edge47_Node000028_Node000017" title=" " alt="" coords="826,339,794,388,752,433,703,465,652,488,649,483,700,460,749,429,790,385,822,342"/>
<area shape="poly" id="edge44_Node000028_Node000025" title=" " alt="" coords="903,316,1022,346,1069,360,1094,373,1110,398,1119,425,1122,479,1117,477,1113,426,1105,400,1090,377,1067,365,1020,351,903,322"/> <area shape="poly" id="edge45_Node000028_Node000025" title=" " alt="" coords="886,335,1039,478,1033,478,885,340"/>
<area shape="rect" id="Node000029" href="$engine__multiscale__scratchpad_8h.html" title="Scratchpad implementation for the MultiscalePartitioningEngineView." alt="" coords="550,375,730,431"/> <area shape="rect" id="Node000029" href="$engine__multiscale__scratchpad_8h.html" title="Scratchpad implementation for the MultiscalePartitioningEngineView." alt="" coords="535,375,715,431"/>
<area shape="poly" id="edge39_Node000028_Node000029" title=" " alt="" coords="754,337,689,377,686,372,758,333"/> <area shape="poly" id="edge39_Node000028_Node000029" title=" " alt="" coords="771,335,686,377,683,372,775,332"/>
<area shape="poly" id="edge42_Node000029_Node000017" title=" " alt="" coords="682,439,735,486,730,486,682,444"/> <area shape="rect" id="Node000030" href="$engine__multiscale__scratchpad_8cpp.html" title=" " alt="" coords="692,486,918,527"/>
<area shape="poly" id="edge40_Node000029_Node000019" title=" " alt="" coords="550,438,420,488,417,483,554,435"/> <area shape="poly" id="edge46_Node000028_Node000030" title=" " alt="" coords="841,340,825,431,812,487,808,484,820,430,838,344"/>
<area shape="poly" id="edge41_Node000029_Node000020" title=" " alt="" coords="606,440,475,584,471,580,602,444"/> <area shape="poly" id="edge43_Node000029_Node000017" title=" " alt="" coords="613,444,600,487,596,485,610,448"/>
<area shape="poly" id="edge43_Node000029_Node000022" title=" " alt="" coords="642,444,651,490,668,533,689,559,716,582,711,582,685,563,663,536,645,491,640,449"/> <area shape="poly" id="edge40_Node000029_Node000019" title=" " alt="" coords="518,434,247,489,245,484,521,429"/>
<area shape="poly" id="edge41_Node000029_Node000020" title=" " alt="" coords="560,441,299,584,296,580,563,436"/>
<area shape="poly" id="edge44_Node000029_Node000022" title=" " alt="" coords="539,441,521,458,505,480,495,507,497,519,504,533,520,551,539,566,584,587,579,588,536,570,516,555,500,536,492,521,490,507,500,477,517,455,543,437"/>
<area shape="poly" id="edge42_Node000029_Node000030" title=" " alt="" coords="687,436,773,485,768,486,687,441"/>
</map> </map>

View File

@@ -1 +1 @@
e936a217fd1b5a1da991c3c2feeafcb9 edb3e9b8126daaef46574e7c6c2bfcc8

View File

@@ -47,7 +47,7 @@
</g> </g>
</defs> </defs>
<script type="application/ecmascript"> <script type="application/ecmascript">
var viewWidth = 1138; var viewWidth = 1316;
var viewHeight = 749; var viewHeight = 749;
var sectionId = 'dynsection-1'; var sectionId = 'dynsection-1';
</script> </script>
@@ -59,9 +59,9 @@ 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="Defines types related to building reaction networks in the GridFire engine."> <g id="a_Node000001"><a xlink:title="Defines types related to building reaction networks in the GridFire engine.">
<polygon fill="#999999" stroke="#666666" points="746.38,-740.5 627.62,-740.5 627.62,-710 746.38,-710 746.38,-740.5"/> <polygon fill="#999999" stroke="#666666" points="1034.07,-740.5 915.32,-740.5 915.32,-710 1034.07,-710 1034.07,-740.5"/>
<text xml:space="preserve" text-anchor="start" x="635.62" y="-727" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="923.32" y="-727" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="687" y="-715.75" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/types/building.h</text> <text xml:space="preserve" text-anchor="middle" x="974.7" y="-715.75" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/types/building.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -69,9 +69,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="construction_8h.html" target="_top" xlink:title="Functions for constructing nuclear reaction networks."> <g id="a_Node000002"><a xlink:href="construction_8h.html" target="_top" xlink:title="Functions for constructing nuclear reaction networks.">
<polygon fill="white" stroke="#666666" points="768.5,-674 605.5,-674 605.5,-643.5 768.5,-643.5 768.5,-674"/> <polygon fill="white" stroke="#666666" points="1056.2,-674 893.2,-674 893.2,-643.5 1056.2,-643.5 1056.2,-674"/>
<text xml:space="preserve" text-anchor="start" x="613.5" y="-660.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="901.2" y="-660.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="687" y="-649.25" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/procedures/construction.h</text> <text xml:space="preserve" text-anchor="middle" x="974.7" y="-649.25" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/procedures/construction.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -79,8 +79,8 @@ 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="M687,-698.31C687,-690.14 687,-681.41 687,-674.33"/> <path fill="none" stroke="#63b8ff" d="M974.7,-698.31C974.7,-690.14 974.7,-681.41 974.7,-674.33"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="683.5,-698.1 687,-708.1 690.5,-698.1 683.5,-698.1"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="971.2,-698.1 974.7,-708.1 978.2,-698.1 971.2,-698.1"/>
</a> </a>
</g> </g>
</g> </g>
@@ -88,9 +88,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="engine__graph_8h.html" target="_top" xlink:title=" "> <g id="a_Node000003"><a xlink:href="engine__graph_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="595.25,-607.5 478.75,-607.5 478.75,-577 595.25,-577 595.25,-607.5"/> <polygon fill="white" stroke="#666666" points="811.95,-607.5 695.45,-607.5 695.45,-577 811.95,-577 811.95,-607.5"/>
<text xml:space="preserve" text-anchor="start" x="486.75" y="-594" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="703.45" y="-594" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="537" y="-582.75" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/engine_graph.h</text> <text xml:space="preserve" text-anchor="middle" x="753.7" y="-582.75" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/engine_graph.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -98,8 +98,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="M642.5,-638.62C619.67,-628.8 592.3,-617.03 571.16,-607.94"/> <path fill="none" stroke="#63b8ff" d="M913.38,-639.85C878.9,-629.79 836.4,-617.39 803.91,-607.9"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="641,-641.78 651.57,-642.52 643.77,-635.35 641,-641.78"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="912.24,-643.17 922.82,-642.61 914.2,-636.45 912.24,-643.17"/>
</a> </a>
</g> </g>
</g> </g>
@@ -107,19 +107,19 @@ var sectionId = 'dynsection-1';
<g id="Node000014" class="node"> <g id="Node000014" class="node">
<title>Node14</title> <title>Node14</title>
<g id="a_Node000014"><a xlink:href="engine__procedures_8h.html" target="_top" xlink:title=" "> <g id="a_Node000014"><a xlink:href="engine__procedures_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="806,-463.25 676,-463.25 676,-421.5 806,-421.5 806,-463.25"/> <polygon fill="white" stroke="#666666" points="1034.7,-463.25 904.7,-463.25 904.7,-421.5 1034.7,-421.5 1034.7,-463.25"/>
<text xml:space="preserve" text-anchor="start" x="684" y="-449.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="912.7" y="-449.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="start" x="684" y="-438.5" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/procedures/engine</text> <text xml:space="preserve" text-anchor="start" x="912.7" y="-438.5" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/procedures/engine</text>
<text xml:space="preserve" text-anchor="middle" x="741" y="-427.25" font-family="Helvetica,sans-Serif" font-size="10.00">_procedures.h</text> <text xml:space="preserve" text-anchor="middle" x="969.7" y="-427.25" font-family="Helvetica,sans-Serif" font-size="10.00">_procedures.h</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node2&#45;&gt;Node14 --> <!-- Node2&#45;&gt;Node14 -->
<g id="edge50_Node000002_Node000014" class="edge"> <g id="edge52_Node000002_Node000014" class="edge">
<title>Node2&#45;&gt;Node14</title> <title>Node2&#45;&gt;Node14</title>
<g id="a_edge50_Node000002_Node000014"><a xlink:title=" "> <g id="a_edge52_Node000002_Node000014"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M693.47,-632.07C704.33,-588.96 726,-502.93 735.88,-463.71"/> <path fill="none" stroke="#63b8ff" d="M994.49,-634.18C1018.27,-602.84 1052.49,-545.98 1031.7,-499.25 1025.4,-485.08 1013.53,-473 1001.85,-463.73"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="690.13,-631 691.08,-641.55 696.92,-632.71 690.13,-631"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="991.89,-631.83 988.46,-641.86 997.39,-636.16 991.89,-631.83"/>
</a> </a>
</g> </g>
</g> </g>
@@ -127,37 +127,37 @@ var sectionId = 'dynsection-1';
<g id="Node000015" class="node"> <g id="Node000015" class="node">
<title>Node15</title> <title>Node15</title>
<g id="a_Node000015"><a xlink:href="engine__graph_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000015"><a xlink:href="engine__graph_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="133.62,-457.62 28.38,-457.62 28.38,-427.12 133.62,-427.12 133.62,-457.62"/> <polygon fill="white" stroke="#666666" points="379.32,-457.62 274.07,-457.62 274.07,-427.12 379.32,-427.12 379.32,-457.62"/>
<text xml:space="preserve" text-anchor="start" x="36.38" y="-444.12" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/engine/engine</text> <text xml:space="preserve" text-anchor="start" x="282.07" y="-444.12" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/engine/engine</text>
<text xml:space="preserve" text-anchor="middle" x="81" y="-432.88" font-family="Helvetica,sans-Serif" font-size="10.00">_graph.cpp</text> <text xml:space="preserve" text-anchor="middle" x="326.7" y="-432.88" font-family="Helvetica,sans-Serif" font-size="10.00">_graph.cpp</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node2&#45;&gt;Node15 --> <!-- Node2&#45;&gt;Node15 -->
<g id="edge51_Node000002_Node000015" class="edge"> <g id="edge53_Node000002_Node000015" class="edge">
<title>Node2&#45;&gt;Node15</title> <title>Node2&#45;&gt;Node15</title>
<g id="a_edge51_Node000002_Node000015"><a xlink:title=" "> <g id="a_edge53_Node000002_Node000015"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M593.92,-653.99C439.24,-645.56 139.78,-619.31 75,-541 55.52,-517.45 66.4,-478.75 74.58,-457.85"/> <path fill="none" stroke="#63b8ff" d="M881.61,-651.66C728.98,-639.82 434.82,-608.71 358.7,-541 334.58,-519.54 328.57,-479.63 327.12,-458.08"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="593.58,-657.47 603.75,-654.51 593.95,-650.48 593.58,-657.47"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="881.05,-655.12 891.29,-652.39 881.58,-648.14 881.05,-655.12"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node31 --> <!-- Node32 -->
<g id="Node000031" class="node"> <g id="Node000032" class="node">
<title>Node31</title> <title>Node32</title>
<g id="a_Node000031"><a xlink:href="construction_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000032"><a xlink:href="construction_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="918.38,-607.5 793.62,-607.5 793.62,-577 918.38,-577 918.38,-607.5"/> <polygon fill="white" stroke="#666666" points="1308.07,-607.5 1183.32,-607.5 1183.32,-577 1308.07,-577 1308.07,-607.5"/>
<text xml:space="preserve" text-anchor="start" x="801.62" y="-594" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/engine/procedures</text> <text xml:space="preserve" text-anchor="start" x="1191.32" y="-594" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/engine/procedures</text>
<text xml:space="preserve" text-anchor="middle" x="856" y="-582.75" font-family="Helvetica,sans-Serif" font-size="10.00">/construction.cpp</text> <text xml:space="preserve" text-anchor="middle" x="1245.7" y="-582.75" font-family="Helvetica,sans-Serif" font-size="10.00">/construction.cpp</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node2&#45;&gt;Node31 --> <!-- Node2&#45;&gt;Node32 -->
<g id="edge52_Node000002_Node000031" class="edge"> <g id="edge54_Node000002_Node000032" class="edge">
<title>Node2&#45;&gt;Node31</title> <title>Node2&#45;&gt;Node32</title>
<g id="a_edge52_Node000002_Node000031"><a xlink:title=" "> <g id="a_edge54_Node000002_Node000032"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M736.09,-639.01C762.01,-629.12 793.37,-617.15 817.51,-607.94"/> <path fill="none" stroke="#63b8ff" d="M1047.7,-640.38C1090.36,-630.22 1143.6,-617.55 1184.13,-607.9"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="734.86,-635.74 726.76,-642.57 737.35,-642.28 734.86,-635.74"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="1046.92,-636.96 1038.01,-642.68 1048.54,-643.77 1046.92,-636.96"/>
</a> </a>
</g> </g>
</g> </g>
@@ -165,9 +165,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="engine_8h.html" target="_top" xlink:title="Core header for the GridFire reaction network engine module."> <g id="a_Node000004"><a xlink:href="engine_8h.html" target="_top" xlink:title="Core header for the GridFire reaction network engine module.">
<polygon fill="white" stroke="#666666" points="690.75,-241.25 595.25,-241.25 595.25,-210.75 690.75,-210.75 690.75,-241.25"/> <polygon fill="white" stroke="#666666" points="984.45,-241.25 888.95,-241.25 888.95,-210.75 984.45,-210.75 984.45,-241.25"/>
<text xml:space="preserve" text-anchor="start" x="603.25" y="-227.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="896.95" y="-227.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="643" y="-216.5" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/engine.h</text> <text xml:space="preserve" text-anchor="middle" x="936.7" y="-216.5" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/engine.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -175,8 +175,8 @@ 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="M467.13,-590.28C354.91,-587.64 140.45,-577.78 75,-541 27.3,-514.19 0,-498.09 0,-443.38 0,-443.38 0,-443.38 0,-363.62 0,-248.59 132.06,-303.78 244,-277.25 368.49,-247.74 519.2,-234.73 594.81,-229.72"/> <path fill="none" stroke="#63b8ff" d="M823.32,-585.42C880.64,-579.03 963.3,-566.15 1031.7,-541 1096.33,-517.24 1131.34,-522.92 1165.7,-463.25 1222.79,-364.13 1050.44,-275.52 972.67,-241.63"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="466.73,-593.78 476.81,-590.5 466.89,-586.78 466.73,-593.78"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="823.28,-581.9 813.71,-586.45 824.03,-588.86 823.28,-581.9"/>
</a> </a>
</g> </g>
</g> </g>
@@ -184,9 +184,9 @@ var sectionId = 'dynsection-1';
<g id="Node000013" class="node"> <g id="Node000013" class="node">
<title>Node13</title> <title>Node13</title>
<g id="a_Node000013"><a xlink:href="priming_8h.html" target="_top" xlink:title=" "> <g id="a_Node000013"><a xlink:href="priming_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="536.62,-535.38 395.38,-535.38 395.38,-504.88 536.62,-504.88 536.62,-535.38"/> <polygon fill="white" stroke="#666666" points="559.32,-535.38 418.07,-535.38 418.07,-504.88 559.32,-504.88 559.32,-535.38"/>
<text xml:space="preserve" text-anchor="start" x="403.38" y="-521.88" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="426.07" y="-521.88" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="466" y="-510.62" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/procedures/priming.h</text> <text xml:space="preserve" text-anchor="middle" x="488.7" y="-510.62" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/procedures/priming.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -194,17 +194,17 @@ var sectionId = 'dynsection-1';
<g id="edge15_Node000003_Node000013" class="edge"> <g id="edge15_Node000003_Node000013" class="edge">
<title>Node3&#45;&gt;Node13</title> <title>Node3&#45;&gt;Node13</title>
<g id="a_edge15_Node000003_Node000013"><a xlink:title=" "> <g id="a_edge15_Node000003_Node000013"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M514.32,-568.85C503.31,-557.98 490.4,-545.22 480.69,-535.64"/> <path fill="none" stroke="#63b8ff" d="M687.23,-573.66C643.1,-561.98 585.86,-546.83 544.18,-535.81"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="511.64,-571.12 521.21,-575.66 516.56,-566.14 511.64,-571.12"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="686.12,-576.99 696.68,-576.16 687.91,-570.22 686.12,-576.99"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node3&#45;&gt;Node15 --> <!-- Node3&#45;&gt;Node15 -->
<g id="edge46_Node000003_Node000015" class="edge"> <g id="edge48_Node000003_Node000015" class="edge">
<title>Node3&#45;&gt;Node15</title> <title>Node3&#45;&gt;Node15</title>
<g id="a_edge46_Node000003_Node000015"><a xlink:title=" "> <g id="a_edge48_Node000003_Node000015"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M466.97,-587.78C349.82,-581.32 124.29,-565.8 98,-541 75.35,-519.63 76.23,-479.68 78.69,-458.1"/> <path fill="none" stroke="#63b8ff" d="M683.9,-586.94C597.06,-580.59 454.62,-566.59 408.7,-541 373.32,-521.28 346.62,-479.87 334.27,-457.85"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="466.61,-591.27 476.79,-588.32 466.99,-584.28 466.61,-591.27"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="683.51,-590.42 693.73,-587.65 684.01,-583.44 683.51,-590.42"/>
</a> </a>
</g> </g>
</g> </g>
@@ -212,10 +212,10 @@ var sectionId = 'dynsection-1';
<g id="Node000018" class="node"> <g id="Node000018" class="node">
<title>Node18</title> <title>Node18</title>
<g id="a_Node000018"><a xlink:href="engine__graph__scratchpad_8h.html" target="_top" xlink:title="Scratchpad implementation for the GraphEngine using CppAD automatic differentiation."> <g id="a_Node000018"><a xlink:href="engine__graph__scratchpad_8h.html" target="_top" xlink:title="Scratchpad implementation for the GraphEngine using CppAD automatic differentiation.">
<polygon fill="white" stroke="#666666" points="242.62,-541 107.38,-541 107.38,-499.25 242.62,-499.25 242.62,-541"/> <polygon fill="white" stroke="#666666" points="216.32,-541 81.07,-541 81.07,-499.25 216.32,-499.25 216.32,-541"/>
<text xml:space="preserve" text-anchor="start" x="115.38" y="-527.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="89.07" y="-527.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="start" x="115.38" y="-516.25" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/scratchpads/engine</text> <text xml:space="preserve" text-anchor="start" x="89.07" y="-516.25" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/scratchpads/engine</text>
<text xml:space="preserve" text-anchor="middle" x="175" y="-505" font-family="Helvetica,sans-Serif" font-size="10.00">_graph_scratchpad.h</text> <text xml:space="preserve" text-anchor="middle" x="148.7" y="-505" font-family="Helvetica,sans-Serif" font-size="10.00">_graph_scratchpad.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -223,8 +223,8 @@ var sectionId = 'dynsection-1';
<g id="edge21_Node000003_Node000018" class="edge"> <g id="edge21_Node000003_Node000018" class="edge">
<title>Node3&#45;&gt;Node18</title> <title>Node3&#45;&gt;Node18</title>
<g id="a_edge21_Node000003_Node000018"><a xlink:title=" "> <g id="a_edge21_Node000003_Node000018"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M467.14,-580.61C409.04,-571.38 324.3,-557 251,-541 248.34,-540.42 245.62,-539.81 242.89,-539.17"/> <path fill="none" stroke="#63b8ff" d="M683.84,-583.15C566.7,-569.58 332.18,-542.39 216.46,-528.98"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="466.47,-584.05 476.9,-582.16 467.56,-577.14 466.47,-584.05"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="683.3,-586.61 693.64,-584.29 684.11,-579.66 683.3,-586.61"/>
</a> </a>
</g> </g>
</g> </g>
@@ -232,18 +232,18 @@ var sectionId = 'dynsection-1';
<g id="Node000022" class="node"> <g id="Node000022" class="node">
<title>Node22</title> <title>Node22</title>
<g id="a_Node000022"><a xlink:href="stellar__policy_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000022"><a xlink:href="stellar__policy_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="606,-307.75 506,-307.75 506,-277.25 606,-277.25 606,-307.75"/> <polygon fill="white" stroke="#666666" points="532.7,-307.75 432.7,-307.75 432.7,-277.25 532.7,-277.25 532.7,-307.75"/>
<text xml:space="preserve" text-anchor="start" x="514" y="-294.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/policy/stellar</text> <text xml:space="preserve" text-anchor="start" x="440.7" y="-294.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/policy/stellar</text>
<text xml:space="preserve" text-anchor="middle" x="556" y="-283" font-family="Helvetica,sans-Serif" font-size="10.00">_policy.cpp</text> <text xml:space="preserve" text-anchor="middle" x="482.7" y="-283" font-family="Helvetica,sans-Serif" font-size="10.00">_policy.cpp</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node3&#45;&gt;Node22 --> <!-- Node3&#45;&gt;Node22 -->
<g id="edge48_Node000003_Node000022" class="edge"> <g id="edge50_Node000003_Node000022" class="edge">
<title>Node3&#45;&gt;Node22</title> <title>Node3&#45;&gt;Node22</title>
<g id="a_edge48_Node000003_Node000022"><a xlink:title=" "> <g id="a_edge50_Node000003_Node000022"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M606.38,-581.8C630.94,-574.74 656.15,-562.44 671,-541 681.57,-525.75 673.44,-517.64 671,-499.25 666.29,-463.77 649.68,-372.97 629,-343.75 618.33,-328.68 601.63,-316.7 586.89,-308.22"/> <path fill="none" stroke="#63b8ff" d="M741.43,-566.22C737.91,-558.29 734.31,-549.41 731.7,-541 705.19,-455.75 755.44,-408.24 693.7,-343.75 671.89,-320.97 588.29,-306.49 533.1,-299.2"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="605.82,-578.33 597.01,-584.22 607.57,-585.11 605.82,-578.33"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="738.24,-567.66 745.63,-575.26 744.59,-564.71 738.24,-567.66"/>
</a> </a>
</g> </g>
</g> </g>
@@ -251,10 +251,10 @@ var sectionId = 'dynsection-1';
<g id="Node000023" class="node"> <g id="Node000023" class="node">
<title>Node23</title> <title>Node23</title>
<g id="a_Node000023"><a xlink:href="engine__defined_8h.html" target="_top" xlink:title=" "> <g id="a_Node000023"><a xlink:href="engine__defined_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="1007.75,-541 900.25,-541 900.25,-499.25 1007.75,-499.25 1007.75,-541"/> <polygon fill="white" stroke="#666666" points="848.45,-541 740.95,-541 740.95,-499.25 848.45,-499.25 848.45,-541"/>
<text xml:space="preserve" text-anchor="start" x="908.25" y="-527.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="748.95" y="-527.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="start" x="908.25" y="-516.25" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/views/engine</text> <text xml:space="preserve" text-anchor="start" x="748.95" y="-516.25" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/views/engine</text>
<text xml:space="preserve" text-anchor="middle" x="954" y="-505" font-family="Helvetica,sans-Serif" font-size="10.00">_defined.h</text> <text xml:space="preserve" text-anchor="middle" x="794.7" y="-505" font-family="Helvetica,sans-Serif" font-size="10.00">_defined.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -262,8 +262,8 @@ var sectionId = 'dynsection-1';
<g id="edge30_Node000003_Node000023" class="edge"> <g id="edge30_Node000003_Node000023" class="edge">
<title>Node3&#45;&gt;Node23</title> <title>Node3&#45;&gt;Node23</title>
<g id="a_edge30_Node000003_Node000023"><a xlink:title=" "> <g id="a_edge30_Node000003_Node000023"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M606.7,-579.53C689.24,-565.65 824.94,-542.83 899.94,-530.22"/> <path fill="none" stroke="#63b8ff" d="M767.96,-566.86C772.8,-558.58 778.16,-549.42 782.8,-541.49"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="606.19,-576.06 596.91,-581.17 607.36,-582.97 606.19,-576.06"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="764.98,-565.01 762.96,-575.41 771.03,-568.55 764.98,-565.01"/>
</a> </a>
</g> </g>
</g> </g>
@@ -271,18 +271,18 @@ var sectionId = 'dynsection-1';
<g id="Node000027" class="node"> <g id="Node000027" class="node">
<title>Node27</title> <title>Node27</title>
<g id="a_Node000027"><a xlink:href="engine__defined_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000027"><a xlink:href="engine__defined_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="965.5,-457.62 862.5,-457.62 862.5,-427.12 965.5,-427.12 965.5,-457.62"/> <polygon fill="white" stroke="#666666" points="1156.2,-457.62 1053.2,-457.62 1053.2,-427.12 1156.2,-427.12 1156.2,-457.62"/>
<text xml:space="preserve" text-anchor="start" x="870.5" y="-444.12" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/engine/views</text> <text xml:space="preserve" text-anchor="start" x="1061.2" y="-444.12" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/engine/views</text>
<text xml:space="preserve" text-anchor="middle" x="914" y="-432.88" font-family="Helvetica,sans-Serif" font-size="10.00">/engine_defined.cpp</text> <text xml:space="preserve" text-anchor="middle" x="1104.7" y="-432.88" font-family="Helvetica,sans-Serif" font-size="10.00">/engine_defined.cpp</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node3&#45;&gt;Node27 --> <!-- Node3&#45;&gt;Node27 -->
<g id="edge47_Node000003_Node000027" class="edge"> <g id="edge49_Node000003_Node000027" class="edge">
<title>Node3&#45;&gt;Node27</title> <title>Node3&#45;&gt;Node27</title>
<g id="a_edge47_Node000003_Node000027"><a xlink:title=" "> <g id="a_edge49_Node000003_Node000027"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M604.01,-573.46C634.81,-564.68 671.62,-553.33 704,-541 770.7,-515.61 845.86,-478.5 885.69,-458.12"/> <path fill="none" stroke="#63b8ff" d="M803.1,-572.05C821.15,-563.87 841.18,-553.33 857.7,-541 877.81,-525.99 874.12,-512.05 895.7,-499.25 953.92,-464.71 978.58,-481.75 1043.7,-463.25 1049.27,-461.67 1055.1,-459.91 1060.84,-458.11"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="603.09,-570.08 594.41,-576.16 604.98,-576.82 603.09,-570.08"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="801.88,-568.77 794.13,-575.99 804.69,-575.18 801.88,-568.77"/>
</a> </a>
</g> </g>
</g> </g>
@@ -290,10 +290,10 @@ var sectionId = 'dynsection-1';
<g id="Node000028" class="node"> <g id="Node000028" class="node">
<title>Node28</title> <title>Node28</title>
<g id="a_Node000028"><a xlink:href="engine__multiscale_8h.html" target="_top" xlink:title=" "> <g id="a_Node000028"><a xlink:href="engine__multiscale_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="661.75,-541 554.25,-541 554.25,-499.25 661.75,-499.25 661.75,-541"/> <polygon fill="white" stroke="#666666" points="684.45,-541 576.95,-541 576.95,-499.25 684.45,-499.25 684.45,-541"/>
<text xml:space="preserve" text-anchor="start" x="562.25" y="-527.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="584.95" y="-527.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="start" x="562.25" y="-516.25" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/views/engine</text> <text xml:space="preserve" text-anchor="start" x="584.95" y="-516.25" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/views/engine</text>
<text xml:space="preserve" text-anchor="middle" x="608" y="-505" font-family="Helvetica,sans-Serif" font-size="10.00">_multiscale.h</text> <text xml:space="preserve" text-anchor="middle" x="630.7" y="-505" font-family="Helvetica,sans-Serif" font-size="10.00">_multiscale.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -301,27 +301,27 @@ var sectionId = 'dynsection-1';
<g id="edge38_Node000003_Node000028" class="edge"> <g id="edge38_Node000003_Node000028" class="edge">
<title>Node3&#45;&gt;Node28</title> <title>Node3&#45;&gt;Node28</title>
<g id="a_edge38_Node000003_Node000028"><a xlink:title=" "> <g id="a_edge38_Node000003_Node000028"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M559.76,-568.77C568.63,-560.01 578.73,-550.04 587.38,-541.49"/> <path fill="none" stroke="#63b8ff" d="M718.2,-571.01C701.88,-561.71 682.57,-550.7 666.25,-541.39"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="557.44,-566.14 552.79,-575.66 562.36,-571.12 557.44,-566.14"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="716.18,-573.89 726.6,-575.8 719.65,-567.81 716.18,-573.89"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node30 --> <!-- Node31 -->
<g id="Node000030" class="node"> <g id="Node000031" class="node">
<title>Node30</title> <title>Node31</title>
<g id="a_Node000030"><a xlink:href="_point_solver_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000031"><a xlink:href="_point_solver_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="377.62,-535.38 260.38,-535.38 260.38,-504.88 377.62,-504.88 377.62,-535.38"/> <polygon fill="white" stroke="#666666" points="1022.32,-535.38 905.07,-535.38 905.07,-504.88 1022.32,-504.88 1022.32,-535.38"/>
<text xml:space="preserve" text-anchor="start" x="268.38" y="-521.88" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/solver/strategies</text> <text xml:space="preserve" text-anchor="start" x="913.07" y="-521.88" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/solver/strategies</text>
<text xml:space="preserve" text-anchor="middle" x="319" y="-510.62" font-family="Helvetica,sans-Serif" font-size="10.00">/PointSolver.cpp</text> <text xml:space="preserve" text-anchor="middle" x="963.7" y="-510.62" font-family="Helvetica,sans-Serif" font-size="10.00">/PointSolver.cpp</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node3&#45;&gt;Node30 --> <!-- Node3&#45;&gt;Node31 -->
<g id="edge49_Node000003_Node000030" class="edge"> <g id="edge51_Node000003_Node000031" class="edge">
<title>Node3&#45;&gt;Node30</title> <title>Node3&#45;&gt;Node31</title>
<g id="a_edge49_Node000003_Node000030"><a xlink:title=" "> <g id="a_edge51_Node000003_Node000031"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M480.46,-573.06C444.43,-561.47 398.34,-546.65 364.64,-535.81"/> <path fill="none" stroke="#63b8ff" d="M808.61,-572.91C843.26,-561.34 887.41,-546.6 919.73,-535.81"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="479.27,-576.36 489.86,-576.09 481.41,-569.69 479.27,-576.36"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="807.53,-569.58 799.16,-576.07 809.75,-576.22 807.53,-569.58"/>
</a> </a>
</g> </g>
</g> </g>
@@ -329,9 +329,9 @@ var sectionId = 'dynsection-1';
<g id="Node000005" class="node"> <g id="Node000005" class="node">
<title>Node5</title> <title>Node5</title>
<g id="a_Node000005"><a xlink:href="gridfire_8h.html" target="_top" xlink:title=" "> <g id="a_Node000005"><a xlink:href="gridfire_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="515.75,-174.75 420.25,-174.75 420.25,-144.25 515.75,-144.25 515.75,-174.75"/> <polygon fill="white" stroke="#666666" points="809.45,-174.75 713.95,-174.75 713.95,-144.25 809.45,-144.25 809.45,-174.75"/>
<text xml:space="preserve" text-anchor="start" x="428.25" y="-161.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="721.95" y="-161.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="468" y="-150" font-family="Helvetica,sans-Serif" font-size="10.00">/gridfire.h</text> <text xml:space="preserve" text-anchor="middle" x="761.7" y="-150" font-family="Helvetica,sans-Serif" font-size="10.00">/gridfire.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -339,8 +339,8 @@ var sectionId = 'dynsection-1';
<g id="edge4_Node000004_Node000005" class="edge"> <g id="edge4_Node000004_Node000005" class="edge">
<title>Node4&#45;&gt;Node5</title> <title>Node4&#45;&gt;Node5</title>
<g id="a_edge4_Node000004_Node000005"><a xlink:title=" "> <g id="a_edge4_Node000004_Node000005"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M592.53,-206.4C565.61,-196.48 532.97,-184.45 507.86,-175.19"/> <path fill="none" stroke="#63b8ff" d="M886.23,-206.4C859.31,-196.48 826.67,-184.45 801.56,-175.19"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="591.28,-209.67 601.87,-209.84 593.7,-203.1 591.28,-209.67"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="884.98,-209.67 895.57,-209.84 887.4,-203.1 884.98,-209.67"/>
</a> </a>
</g> </g>
</g> </g>
@@ -348,8 +348,8 @@ var sectionId = 'dynsection-1';
<g id="Node000009" class="node"> <g id="Node000009" class="node">
<title>Node9</title> <title>Node9</title>
<g id="a_Node000009"><a xlink:href="engine_2bindings_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000009"><a xlink:href="engine_2bindings_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="651.5,-97 500.5,-97 500.5,-77.75 651.5,-77.75 651.5,-97"/> <polygon fill="white" stroke="#666666" points="945.2,-97 794.2,-97 794.2,-77.75 945.2,-77.75 945.2,-97"/>
<text xml:space="preserve" text-anchor="middle" x="576" y="-83.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/engine/bindings.cpp</text> <text xml:space="preserve" text-anchor="middle" x="869.7" y="-83.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/engine/bindings.cpp</text>
</a> </a>
</g> </g>
</g> </g>
@@ -357,8 +357,8 @@ var sectionId = 'dynsection-1';
<g id="edge9_Node000004_Node000009" class="edge"> <g id="edge9_Node000004_Node000009" class="edge">
<title>Node4&#45;&gt;Node9</title> <title>Node4&#45;&gt;Node9</title>
<g id="a_edge9_Node000004_Node000009"><a xlink:title=" "> <g id="a_edge9_Node000004_Node000009"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M594.04,-204.9C581.72,-197.35 570.01,-187.44 563,-174.75 548.99,-149.4 563.12,-113.8 571.2,-97.35"/> <path fill="none" stroke="#63b8ff" d="M887.74,-204.9C875.42,-197.35 863.71,-187.44 856.7,-174.75 842.69,-149.4 856.82,-113.8 864.9,-97.35"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="592.22,-207.89 602.65,-209.71 595.63,-201.78 592.22,-207.89"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="885.92,-207.89 896.35,-209.71 889.33,-201.78 885.92,-207.89"/>
</a> </a>
</g> </g>
</g> </g>
@@ -366,9 +366,9 @@ var sectionId = 'dynsection-1';
<g id="Node000010" class="node"> <g id="Node000010" class="node">
<title>Node10</title> <title>Node10</title>
<g id="a_Node000010"><a xlink:href="py__engine_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000010"><a xlink:href="py__engine_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="811.62,-102.62 670.38,-102.62 670.38,-72.12 811.62,-72.12 811.62,-102.62"/> <polygon fill="white" stroke="#666666" points="1105.32,-102.62 964.07,-102.62 964.07,-72.12 1105.32,-72.12 1105.32,-102.62"/>
<text xml:space="preserve" text-anchor="start" x="678.38" y="-89.12" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/engine/trampoline</text> <text xml:space="preserve" text-anchor="start" x="972.07" y="-89.12" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/engine/trampoline</text>
<text xml:space="preserve" text-anchor="middle" x="741" y="-77.88" font-family="Helvetica,sans-Serif" font-size="10.00">/py_engine.cpp</text> <text xml:space="preserve" text-anchor="middle" x="1034.7" y="-77.88" font-family="Helvetica,sans-Serif" font-size="10.00">/py_engine.cpp</text>
</a> </a>
</g> </g>
</g> </g>
@@ -376,8 +376,8 @@ var sectionId = 'dynsection-1';
<g id="edge10_Node000004_Node000010" class="edge"> <g id="edge10_Node000004_Node000010" class="edge">
<title>Node4&#45;&gt;Node10</title> <title>Node4&#45;&gt;Node10</title>
<g id="a_edge10_Node000004_Node000010"><a xlink:title=" "> <g id="a_edge10_Node000004_Node000010"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M688.64,-204.92C701.51,-197.21 714.34,-187.2 723,-174.75 738.13,-152.99 741.03,-121.2 741.32,-102.87"/> <path fill="none" stroke="#63b8ff" d="M982.34,-204.92C995.21,-197.21 1008.04,-187.2 1016.7,-174.75 1031.83,-152.99 1034.73,-121.2 1035.02,-102.87"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="687.21,-201.7 680.18,-209.63 690.62,-207.82 687.21,-201.7"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="980.91,-201.7 973.88,-209.63 984.32,-207.82 980.91,-201.7"/>
</a> </a>
</g> </g>
</g> </g>
@@ -385,9 +385,9 @@ var sectionId = 'dynsection-1';
<g id="Node000011" class="node"> <g id="Node000011" class="node">
<title>Node11</title> <title>Node11</title>
<g id="a_Node000011"><a xlink:href="py__engine_8h.html" target="_top" xlink:title=" "> <g id="a_Node000011"><a xlink:href="py__engine_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="713.62,-174.75 572.38,-174.75 572.38,-144.25 713.62,-144.25 713.62,-174.75"/> <polygon fill="white" stroke="#666666" points="1007.32,-174.75 866.07,-174.75 866.07,-144.25 1007.32,-144.25 1007.32,-174.75"/>
<text xml:space="preserve" text-anchor="start" x="580.38" y="-161.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/engine/trampoline</text> <text xml:space="preserve" text-anchor="start" x="874.07" y="-161.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/engine/trampoline</text>
<text xml:space="preserve" text-anchor="middle" x="643" y="-150" font-family="Helvetica,sans-Serif" font-size="10.00">/py_engine.h</text> <text xml:space="preserve" text-anchor="middle" x="936.7" y="-150" font-family="Helvetica,sans-Serif" font-size="10.00">/py_engine.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -395,8 +395,8 @@ var sectionId = 'dynsection-1';
<g id="edge11_Node000004_Node000011" class="edge"> <g id="edge11_Node000004_Node000011" class="edge">
<title>Node4&#45;&gt;Node11</title> <title>Node4&#45;&gt;Node11</title>
<g id="a_edge11_Node000004_Node000011"><a xlink:title=" "> <g id="a_edge11_Node000004_Node000011"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M643,-199.06C643,-190.89 643,-182.16 643,-175.08"/> <path fill="none" stroke="#63b8ff" d="M936.7,-199.06C936.7,-190.89 936.7,-182.16 936.7,-175.08"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="639.5,-198.85 643,-208.85 646.5,-198.85 639.5,-198.85"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="933.2,-198.85 936.7,-208.85 940.2,-198.85 933.2,-198.85"/>
</a> </a>
</g> </g>
</g> </g>
@@ -404,9 +404,9 @@ var sectionId = 'dynsection-1';
<g id="Node000012" class="node"> <g id="Node000012" class="node">
<title>Node12</title> <title>Node12</title>
<g id="a_Node000012"><a xlink:href="py__policy_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000012"><a xlink:href="py__policy_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="908.12,-174.75 769.88,-174.75 769.88,-144.25 908.12,-144.25 908.12,-174.75"/> <polygon fill="white" stroke="#666666" points="1201.82,-174.75 1063.57,-174.75 1063.57,-144.25 1201.82,-144.25 1201.82,-174.75"/>
<text xml:space="preserve" text-anchor="start" x="777.88" y="-161.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/policy/trampoline</text> <text xml:space="preserve" text-anchor="start" x="1071.57" 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="839" y="-150" font-family="Helvetica,sans-Serif" font-size="10.00">/py_policy.cpp</text> <text xml:space="preserve" text-anchor="middle" x="1132.7" y="-150" font-family="Helvetica,sans-Serif" font-size="10.00">/py_policy.cpp</text>
</a> </a>
</g> </g>
</g> </g>
@@ -414,8 +414,8 @@ var sectionId = 'dynsection-1';
<g id="edge14_Node000004_Node000012" class="edge"> <g id="edge14_Node000004_Node000012" class="edge">
<title>Node4&#45;&gt;Node12</title> <title>Node4&#45;&gt;Node12</title>
<g id="a_edge14_Node000004_Node000012"><a xlink:title=" "> <g id="a_edge14_Node000004_Node000012"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M698.33,-206.79C728.7,-196.8 765.86,-184.57 794.36,-175.19"/> <path fill="none" stroke="#63b8ff" d="M992.03,-206.79C1022.4,-196.8 1059.56,-184.57 1088.06,-175.19"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="697.32,-203.44 688.91,-209.89 699.51,-210.09 697.32,-203.44"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="991.02,-203.44 982.61,-209.89 993.21,-210.09 991.02,-203.44"/>
</a> </a>
</g> </g>
</g> </g>
@@ -423,10 +423,10 @@ var sectionId = 'dynsection-1';
<g id="Node000006" class="node"> <g id="Node000006" class="node">
<title>Node6</title> <title>Node6</title>
<g id="a_Node000006"><a xlink:href="gridfire__context_8h.html" target="_top" xlink:title=" "> <g id="a_Node000006"><a xlink:href="gridfire__context_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="441.25,-108.25 330.75,-108.25 330.75,-66.5 441.25,-66.5 441.25,-108.25"/> <polygon fill="white" stroke="#666666" points="734.95,-108.25 624.45,-108.25 624.45,-66.5 734.95,-66.5 734.95,-108.25"/>
<text xml:space="preserve" text-anchor="start" x="338.75" y="-94.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/extern/include</text> <text xml:space="preserve" text-anchor="start" x="632.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="338.75" y="-83.5" font-family="Helvetica,sans-Serif" font-size="10.00">/gridfire/extern/gridfire</text> <text xml:space="preserve" text-anchor="start" x="632.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="386" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">_context.h</text> <text xml:space="preserve" text-anchor="middle" x="679.7" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">_context.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -434,8 +434,8 @@ var sectionId = 'dynsection-1';
<g id="edge5_Node000005_Node000006" class="edge"> <g id="edge5_Node000005_Node000006" class="edge">
<title>Node5&#45;&gt;Node6</title> <title>Node5&#45;&gt;Node6</title>
<g id="a_edge5_Node000005_Node000006"><a xlink:title=" "> <g id="a_edge5_Node000005_Node000006"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M442.35,-136.56C431.95,-127.67 420.01,-117.46 409.81,-108.74"/> <path fill="none" stroke="#63b8ff" d="M736.05,-136.56C725.65,-127.67 713.71,-117.46 703.51,-108.74"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="439.98,-139.15 449.86,-142.99 444.53,-133.83 439.98,-139.15"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="733.68,-139.15 743.56,-142.99 738.23,-133.83 733.68,-139.15"/>
</a> </a>
</g> </g>
</g> </g>
@@ -443,9 +443,9 @@ var sectionId = 'dynsection-1';
<g id="Node000008" class="node"> <g id="Node000008" class="node">
<title>Node8</title> <title>Node8</title>
<g id="a_Node000008"><a xlink:href="gridfire__extern_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000008"><a xlink:href="gridfire__extern_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="521.25,-30.5 416.75,-30.5 416.75,0 521.25,0 521.25,-30.5"/> <polygon fill="white" stroke="#666666" points="814.95,-30.5 710.45,-30.5 710.45,0 814.95,0 814.95,-30.5"/>
<text xml:space="preserve" text-anchor="start" x="424.75" y="-17" font-family="Helvetica,sans-Serif" font-size="10.00">src/extern/lib/gridfire</text> <text xml:space="preserve" text-anchor="start" x="718.45" y="-17" font-family="Helvetica,sans-Serif" font-size="10.00">src/extern/lib/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="469" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">_extern.cpp</text> <text xml:space="preserve" text-anchor="middle" x="762.7" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">_extern.cpp</text>
</a> </a>
</g> </g>
</g> </g>
@@ -453,8 +453,8 @@ var sectionId = 'dynsection-1';
<g id="edge8_Node000005_Node000008" class="edge"> <g id="edge8_Node000005_Node000008" class="edge">
<title>Node5&#45;&gt;Node8</title> <title>Node5&#45;&gt;Node8</title>
<g id="a_edge8_Node000005_Node000008"><a xlink:title=" "> <g id="a_edge8_Node000005_Node000008"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M468.18,-132.6C468.39,-102.68 468.73,-54.53 468.9,-30.65"/> <path fill="none" stroke="#63b8ff" d="M761.88,-132.6C762.09,-102.68 762.43,-54.53 762.6,-30.65"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="464.68,-132.27 468.11,-142.3 471.68,-132.32 464.68,-132.27"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="758.38,-132.27 761.81,-142.3 765.38,-132.32 758.38,-132.27"/>
</a> </a>
</g> </g>
</g> </g>
@@ -462,9 +462,9 @@ var sectionId = 'dynsection-1';
<g id="Node000007" class="node"> <g id="Node000007" class="node">
<title>Node7</title> <title>Node7</title>
<g id="a_Node000007"><a xlink:href="gridfire__context_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000007"><a xlink:href="gridfire__context_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="398.25,-30.5 293.75,-30.5 293.75,0 398.25,0 398.25,-30.5"/> <polygon fill="white" stroke="#666666" points="691.95,-30.5 587.45,-30.5 587.45,0 691.95,0 691.95,-30.5"/>
<text xml:space="preserve" text-anchor="start" x="301.75" y="-17" font-family="Helvetica,sans-Serif" font-size="10.00">src/extern/lib/gridfire</text> <text xml:space="preserve" text-anchor="start" x="595.45" y="-17" font-family="Helvetica,sans-Serif" font-size="10.00">src/extern/lib/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="346" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">_context.cpp</text> <text xml:space="preserve" text-anchor="middle" x="639.7" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">_context.cpp</text>
</a> </a>
</g> </g>
</g> </g>
@@ -472,8 +472,8 @@ var sectionId = 'dynsection-1';
<g id="edge6_Node000006_Node000007" class="edge"> <g id="edge6_Node000006_Node000007" class="edge">
<title>Node6&#45;&gt;Node7</title> <title>Node6&#45;&gt;Node7</title>
<g id="a_edge6_Node000006_Node000007"><a xlink:title=" "> <g id="a_edge6_Node000006_Node000007"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M368.88,-56.36C363.81,-47.47 358.48,-38.13 354.24,-30.7"/> <path fill="none" stroke="#63b8ff" d="M662.58,-56.36C657.51,-47.47 652.18,-38.13 647.94,-30.7"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="365.69,-57.83 373.68,-64.78 371.77,-54.36 365.69,-57.83"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="659.39,-57.83 667.38,-64.78 665.47,-54.36 659.39,-57.83"/>
</a> </a>
</g> </g>
</g> </g>
@@ -481,8 +481,8 @@ var sectionId = 'dynsection-1';
<g id="edge7_Node000006_Node000008" class="edge"> <g id="edge7_Node000006_Node000008" class="edge">
<title>Node6&#45;&gt;Node8</title> <title>Node6&#45;&gt;Node8</title>
<g id="a_edge7_Node000006_Node000008"><a xlink:title=" "> <g id="a_edge7_Node000006_Node000008"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M418.76,-58.7C429.99,-49.21 442.11,-38.97 451.64,-30.92"/> <path fill="none" stroke="#63b8ff" d="M712.45,-58.7C723.69,-49.21 735.81,-38.97 745.34,-30.92"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="416.54,-55.99 411.16,-65.12 421.06,-61.33 416.54,-55.99"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="710.24,-55.99 704.86,-65.12 714.76,-61.33 710.24,-55.99"/>
</a> </a>
</g> </g>
</g> </g>
@@ -490,8 +490,8 @@ var sectionId = 'dynsection-1';
<g id="edge12_Node000011_Node000009" class="edge"> <g id="edge12_Node000011_Node000009" class="edge">
<title>Node11&#45;&gt;Node9</title> <title>Node11&#45;&gt;Node9</title>
<g id="a_edge12_Node000011_Node000009"><a xlink:title=" "> <g id="a_edge12_Node000011_Node000009"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M621.3,-135.79C608.71,-122.61 593.56,-106.76 584.37,-97.13"/> <path fill="none" stroke="#63b8ff" d="M915,-135.79C902.41,-122.61 887.26,-106.76 878.07,-97.13"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="618.63,-138.06 628.07,-142.88 623.69,-133.23 618.63,-138.06"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="912.33,-138.06 921.77,-142.88 917.39,-133.23 912.33,-138.06"/>
</a> </a>
</g> </g>
</g> </g>
@@ -499,8 +499,8 @@ var sectionId = 'dynsection-1';
<g id="edge13_Node000011_Node000010" class="edge"> <g id="edge13_Node000011_Node000010" class="edge">
<title>Node11&#45;&gt;Node10</title> <title>Node11&#45;&gt;Node10</title>
<g id="a_edge13_Node000011_Node000010"><a xlink:title=" "> <g id="a_edge13_Node000011_Node000010"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M672.52,-137.37C688.09,-126.23 706.8,-112.85 720.72,-102.89"/> <path fill="none" stroke="#63b8ff" d="M966.22,-137.37C981.79,-126.23 1000.5,-112.85 1014.42,-102.89"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="670.63,-134.42 664.54,-143.09 674.71,-140.12 670.63,-134.42"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="964.33,-134.42 958.24,-143.09 968.41,-140.12 964.33,-134.42"/>
</a> </a>
</g> </g>
</g> </g>
@@ -508,8 +508,8 @@ var sectionId = 'dynsection-1';
<g id="edge16_Node000013_Node000014" class="edge"> <g id="edge16_Node000013_Node000014" class="edge">
<title>Node13&#45;&gt;Node14</title> <title>Node13&#45;&gt;Node14</title>
<g id="a_edge16_Node000013_Node000014"><a xlink:title=" "> <g id="a_edge16_Node000013_Node000014"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M530.43,-501.38C574.15,-489.33 631.77,-473.46 675.68,-461.37"/> <path fill="none" stroke="#63b8ff" d="M553.8,-502C558.49,-501 563.16,-500.07 567.7,-499.25 712.04,-473.3 751.57,-490.35 895.7,-463.25 898.58,-462.71 901.5,-462.11 904.45,-461.48"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="529.52,-498 520.81,-504.03 531.38,-504.75 529.52,-498"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="553.35,-498.52 544.36,-504.12 554.88,-505.35 553.35,-498.52"/>
</a> </a>
</g> </g>
</g> </g>
@@ -517,8 +517,8 @@ var sectionId = 'dynsection-1';
<g id="edge18_Node000013_Node000015" class="edge"> <g id="edge18_Node000013_Node000015" class="edge">
<title>Node13&#45;&gt;Node15</title> <title>Node13&#45;&gt;Node15</title>
<g id="a_edge18_Node000013_Node000015"><a xlink:title=" "> <g id="a_edge18_Node000013_Node000015"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M398.55,-501.84C394.65,-500.94 390.78,-500.07 387,-499.25 298.73,-480.11 195.19,-462.13 134.01,-451.96"/> <path fill="none" stroke="#63b8ff" d="M447.27,-499.75C419.5,-486.77 383.52,-469.94 358.11,-458.06"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="397.56,-505.21 408.1,-504.1 399.18,-498.39 397.56,-505.21"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="445.55,-502.81 456.09,-503.88 448.52,-496.47 445.55,-502.81"/>
</a> </a>
</g> </g>
</g> </g>
@@ -526,9 +526,9 @@ var sectionId = 'dynsection-1';
<g id="Node000016" class="node"> <g id="Node000016" class="node">
<title>Node16</title> <title>Node16</title>
<g id="a_Node000016"><a xlink:href="priming_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000016"><a xlink:href="priming_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="390.38,-457.62 265.62,-457.62 265.62,-427.12 390.38,-427.12 390.38,-457.62"/> <polygon fill="white" stroke="#666666" points="256.07,-457.62 131.32,-457.62 131.32,-427.12 256.07,-427.12 256.07,-457.62"/>
<text xml:space="preserve" text-anchor="start" x="273.62" y="-444.12" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/engine/procedures</text> <text xml:space="preserve" text-anchor="start" x="139.32" y="-444.12" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/engine/procedures</text>
<text xml:space="preserve" text-anchor="middle" x="328" y="-432.88" font-family="Helvetica,sans-Serif" font-size="10.00">/priming.cpp</text> <text xml:space="preserve" text-anchor="middle" x="193.7" y="-432.88" font-family="Helvetica,sans-Serif" font-size="10.00">/priming.cpp</text>
</a> </a>
</g> </g>
</g> </g>
@@ -536,8 +536,8 @@ var sectionId = 'dynsection-1';
<g id="edge19_Node000013_Node000016" class="edge"> <g id="edge19_Node000013_Node000016" class="edge">
<title>Node13&#45;&gt;Node16</title> <title>Node13&#45;&gt;Node16</title>
<g id="a_edge19_Node000013_Node000016"><a xlink:title=" "> <g id="a_edge19_Node000013_Node000016"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M429.41,-499.04C405.86,-486.11 375.79,-469.61 354.53,-457.94"/> <path fill="none" stroke="#63b8ff" d="M416.57,-501.69C372.6,-490.92 315.31,-476.64 264.7,-463.25 258.51,-461.61 252.03,-459.86 245.61,-458.09"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="427.62,-502.05 438.07,-503.79 430.98,-495.91 427.62,-502.05"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="415.72,-505.08 426.26,-504.06 417.38,-498.28 415.72,-505.08"/>
</a> </a>
</g> </g>
</g> </g>
@@ -545,9 +545,9 @@ var sectionId = 'dynsection-1';
<g id="Node000017" class="node"> <g id="Node000017" class="node">
<title>Node17</title> <title>Node17</title>
<g id="a_Node000017"><a xlink:href="engine__multiscale_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000017"><a xlink:href="engine__multiscale_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="619.88,-379.88 504.12,-379.88 504.12,-349.38 619.88,-349.38 619.88,-379.88"/> <polygon fill="white" stroke="#666666" points="497.57,-379.88 381.82,-379.88 381.82,-349.38 497.57,-349.38 497.57,-379.88"/>
<text xml:space="preserve" text-anchor="start" x="512.12" y="-366.38" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/engine/views</text> <text xml:space="preserve" text-anchor="start" x="389.82" y="-366.38" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/engine/views</text>
<text xml:space="preserve" text-anchor="middle" x="562" y="-355.12" font-family="Helvetica,sans-Serif" font-size="10.00">/engine_multiscale.cpp</text> <text xml:space="preserve" text-anchor="middle" x="439.7" y="-355.12" font-family="Helvetica,sans-Serif" font-size="10.00">/engine_multiscale.cpp</text>
</a> </a>
</g> </g>
</g> </g>
@@ -555,8 +555,8 @@ var sectionId = 'dynsection-1';
<g id="edge20_Node000013_Node000017" class="edge"> <g id="edge20_Node000013_Node000017" class="edge">
<title>Node13&#45;&gt;Node17</title> <title>Node13&#45;&gt;Node17</title>
<g id="a_edge20_Node000013_Node000017"><a xlink:title=" "> <g id="a_edge20_Node000013_Node000017"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M513.5,-499.06C528.59,-490.3 543.75,-478.48 553,-463.25 568.73,-437.36 566.94,-400.27 564.38,-380.08"/> <path fill="none" stroke="#63b8ff" d="M517.22,-496.99C526.9,-487.73 536.57,-476.12 541.7,-463.25 548.57,-446.01 551.16,-437.46 541.7,-421.5 530.17,-402.04 509.21,-388.92 489.27,-380.31"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="512.12,-495.83 504.99,-503.67 515.45,-501.99 512.12,-495.83"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="515.07,-494.21 509.94,-503.48 519.73,-499.43 515.07,-494.21"/>
</a> </a>
</g> </g>
</g> </g>
@@ -564,8 +564,8 @@ var sectionId = 'dynsection-1';
<g id="edge17_Node000014_Node000004" class="edge"> <g id="edge17_Node000014_Node000004" class="edge">
<title>Node14&#45;&gt;Node4</title> <title>Node14&#45;&gt;Node4</title>
<g id="a_edge17_Node000014_Node000004"><a xlink:title=" "> <g id="a_edge17_Node000014_Node000004"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M727.02,-410.79C705.62,-363.98 665.57,-276.38 649.72,-241.69"/> <path fill="none" stroke="#63b8ff" d="M975.66,-409.95C976.92,-402 978.06,-393.46 978.7,-385.5 980.18,-367 981.89,-362.03 978.7,-343.75 972.04,-305.55 953.98,-263.35 943.85,-241.66"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="723.81,-412.19 731.15,-419.83 730.18,-409.28 723.81,-412.19"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="972.26,-409.1 974.03,-419.54 979.16,-410.27 972.26,-409.1"/>
</a> </a>
</g> </g>
</g> </g>
@@ -573,8 +573,8 @@ var sectionId = 'dynsection-1';
<g id="edge27_Node000018_Node000015" class="edge"> <g id="edge27_Node000018_Node000015" class="edge">
<title>Node18&#45;&gt;Node15</title> <title>Node18&#45;&gt;Node15</title>
<g id="a_edge27_Node000018_Node000015"><a xlink:title=" "> <g id="a_edge27_Node000018_Node000015"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M141.23,-491.91C127.01,-480.45 111.03,-467.58 99.11,-457.96"/> <path fill="none" stroke="#63b8ff" d="M206.94,-494.34C235.11,-482.35 267.97,-468.37 292.14,-458.08"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="138.65,-494.33 148.63,-497.88 143.04,-488.88 138.65,-494.33"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="205.62,-491.1 197.79,-498.23 208.37,-497.54 205.62,-491.1"/>
</a> </a>
</g> </g>
</g> </g>
@@ -582,8 +582,8 @@ var sectionId = 'dynsection-1';
<g id="edge28_Node000018_Node000016" class="edge"> <g id="edge28_Node000018_Node000016" class="edge">
<title>Node18&#45;&gt;Node16</title> <title>Node18&#45;&gt;Node16</title>
<g id="a_edge28_Node000018_Node000016"><a xlink:title=" "> <g id="a_edge28_Node000018_Node000016"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M226.06,-493.85C250.14,-481.92 278.02,-468.12 298.53,-457.96"/> <path fill="none" stroke="#63b8ff" d="M166.46,-489.23C172.9,-478.38 179.89,-466.62 185.17,-457.73"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="224.77,-490.58 217.36,-498.15 227.87,-496.85 224.77,-490.58"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="163.63,-487.14 161.53,-497.52 169.65,-490.71 163.63,-487.14"/>
</a> </a>
</g> </g>
</g> </g>
@@ -591,9 +591,9 @@ var sectionId = 'dynsection-1';
<g id="Node000019" class="node"> <g id="Node000019" class="node">
<title>Node19</title> <title>Node19</title>
<g id="a_Node000019"><a xlink:href="engine_2scratchpads_2formatters_8h.html" target="_top" xlink:title=" "> <g id="a_Node000019"><a xlink:href="engine_2scratchpads_2formatters_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="349.62,-379.88 190.38,-379.88 190.38,-349.38 349.62,-349.38 349.62,-379.88"/> <polygon fill="white" stroke="#666666" points="180.32,-379.88 21.07,-379.88 21.07,-349.38 180.32,-349.38 180.32,-379.88"/>
<text xml:space="preserve" text-anchor="start" x="198.38" y="-366.38" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="29.07" y="-366.38" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="270" y="-355.12" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/scratchpads/formatters.h</text> <text xml:space="preserve" text-anchor="middle" x="100.7" y="-355.12" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/scratchpads/formatters.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -601,8 +601,8 @@ var sectionId = 'dynsection-1';
<g id="edge22_Node000018_Node000019" class="edge"> <g id="edge22_Node000018_Node000019" class="edge">
<title>Node18&#45;&gt;Node19</title> <title>Node18&#45;&gt;Node19</title>
<g id="a_edge22_Node000018_Node000019"><a xlink:title=" "> <g id="a_edge22_Node000018_Node000019"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M188.13,-488.69C197.17,-468.93 210.03,-442.96 224,-421.5 233.73,-406.55 246.82,-390.99 256.55,-380.1"/> <path fill="none" stroke="#63b8ff" d="M110.24,-491.43C101.92,-483.37 94.26,-473.84 89.7,-463.25 77.84,-435.68 87.48,-399.87 94.67,-380.19"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="185.04,-487.03 184.14,-497.58 191.43,-489.89 185.04,-487.03"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="107.78,-493.92 117.56,-497.98 112.44,-488.7 107.78,-493.92"/>
</a> </a>
</g> </g>
</g> </g>
@@ -610,9 +610,9 @@ var sectionId = 'dynsection-1';
<g id="Node000020" class="node"> <g id="Node000020" class="node">
<title>Node20</title> <title>Node20</title>
<g id="a_Node000020"><a xlink:href="scratchpads_8h.html" target="_top" xlink:title="Unified header for the scratchpad memory management system."> <g id="a_Node000020"><a xlink:href="scratchpads_8h.html" target="_top" xlink:title="Unified header for the scratchpad memory management system.">
<polygon fill="white" stroke="#666666" points="421.12,-307.75 252.88,-307.75 252.88,-277.25 421.12,-277.25 421.12,-307.75"/> <polygon fill="white" stroke="#666666" points="275.82,-307.75 107.57,-307.75 107.57,-277.25 275.82,-277.25 275.82,-307.75"/>
<text xml:space="preserve" text-anchor="start" x="260.88" y="-294.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="115.57" y="-294.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="337" y="-283" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/scratchpads/scratchpads.h</text> <text xml:space="preserve" text-anchor="middle" x="191.7" y="-283" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/scratchpads/scratchpads.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -620,8 +620,8 @@ var sectionId = 'dynsection-1';
<g id="edge26_Node000018_Node000020" class="edge"> <g id="edge26_Node000018_Node000020" class="edge">
<title>Node18&#45;&gt;Node20</title> <title>Node18&#45;&gt;Node20</title>
<g id="a_edge26_Node000018_Node000020"><a xlink:title=" "> <g id="a_edge26_Node000018_Node000020"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M166.21,-487.9C157.5,-449.82 149.56,-385.39 181,-343.75 198.06,-321.16 225.42,-308.53 252.51,-301.55"/> <path fill="none" stroke="#63b8ff" d="M102.74,-492.97C48.67,-458.85 -28.87,-397.2 11.7,-343.75 23.86,-327.73 66.47,-315.44 107.18,-307.02"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="162.74,-488.47 168.53,-497.35 169.54,-486.8 162.74,-488.47"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="100.89,-495.94 111.23,-498.22 104.56,-489.99 100.89,-495.94"/>
</a> </a>
</g> </g>
</g> </g>
@@ -629,8 +629,8 @@ var sectionId = 'dynsection-1';
<g id="edge29_Node000018_Node000022" class="edge"> <g id="edge29_Node000018_Node000022" class="edge">
<title>Node18&#45;&gt;Node22</title> <title>Node18&#45;&gt;Node22</title>
<g id="a_edge29_Node000018_Node000022"><a xlink:title=" "> <g id="a_edge29_Node000018_Node000022"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M200.77,-490.31C208.34,-481.69 216.59,-472.15 224,-463.25 239.14,-445.07 237.76,-435.25 257,-421.5 296.11,-393.54 314.5,-403.69 359,-385.5 419.8,-360.64 488.96,-327.08 527.02,-308.12"/> <path fill="none" stroke="#63b8ff" d="M128.67,-489.27C117.57,-468.66 108.6,-441.48 122.7,-421.5 141.23,-395.25 337.92,-335.42 432.48,-307.87"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="198.17,-487.96 194.18,-497.77 203.42,-492.59 198.17,-487.96"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="125.56,-490.89 133.61,-497.77 131.61,-487.37 125.56,-490.89"/>
</a> </a>
</g> </g>
</g> </g>
@@ -638,8 +638,8 @@ var sectionId = 'dynsection-1';
<g id="edge23_Node000019_Node000020" class="edge"> <g id="edge23_Node000019_Node000020" class="edge">
<title>Node19&#45;&gt;Node20</title> <title>Node19&#45;&gt;Node20</title>
<g id="a_edge23_Node000019_Node000020"><a xlink:title=" "> <g id="a_edge23_Node000019_Node000020"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M291.71,-340.91C302.03,-330.1 314.07,-317.5 323.14,-308.01"/> <path fill="none" stroke="#63b8ff" d="M128.53,-342.18C142.9,-331.1 160.06,-317.88 172.87,-308.01"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="289.31,-338.35 284.93,-348 294.37,-343.19 289.31,-338.35"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="126.54,-339.29 120.75,-348.17 130.81,-344.84 126.54,-339.29"/>
</a> </a>
</g> </g>
</g> </g>
@@ -647,8 +647,8 @@ var sectionId = 'dynsection-1';
<g id="edge24_Node000020_Node000004" class="edge"> <g id="edge24_Node000020_Node000004" class="edge">
<title>Node20&#45;&gt;Node4</title> <title>Node20&#45;&gt;Node4</title>
<g id="a_edge24_Node000020_Node000004"><a xlink:title=" "> <g id="a_edge24_Node000020_Node000004"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M417.85,-274.46C474.21,-262.58 547.51,-247.13 594.9,-237.14"/> <path fill="none" stroke="#63b8ff" d="M287.38,-283.22C448.26,-269.29 767.26,-241.67 888.45,-231.18"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="417.36,-270.98 408.3,-276.47 418.81,-277.83 417.36,-270.98"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="287.24,-279.72 277.58,-284.06 287.85,-286.69 287.24,-279.72"/>
</a> </a>
</g> </g>
</g> </g>
@@ -656,9 +656,9 @@ var sectionId = 'dynsection-1';
<g id="Node000021" class="node"> <g id="Node000021" class="node">
<title>Node21</title> <title>Node21</title>
<g id="a_Node000021"><a xlink:href="engine_2scratchpads_2bindings_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000021"><a xlink:href="engine_2scratchpads_2bindings_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="411.75,-241.25 262.25,-241.25 262.25,-210.75 411.75,-210.75 411.75,-241.25"/> <polygon fill="white" stroke="#666666" points="266.45,-241.25 116.95,-241.25 116.95,-210.75 266.45,-210.75 266.45,-241.25"/>
<text xml:space="preserve" text-anchor="start" x="270.25" y="-227.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/engine/scratchpads</text> <text xml:space="preserve" text-anchor="start" x="124.95" y="-227.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/engine/scratchpads</text>
<text xml:space="preserve" text-anchor="middle" x="337" y="-216.5" font-family="Helvetica,sans-Serif" font-size="10.00">/bindings.cpp</text> <text xml:space="preserve" text-anchor="middle" x="191.7" y="-216.5" font-family="Helvetica,sans-Serif" font-size="10.00">/bindings.cpp</text>
</a> </a>
</g> </g>
</g> </g>
@@ -666,8 +666,8 @@ var sectionId = 'dynsection-1';
<g id="edge25_Node000020_Node000021" class="edge"> <g id="edge25_Node000020_Node000021" class="edge">
<title>Node20&#45;&gt;Node21</title> <title>Node20&#45;&gt;Node21</title>
<g id="a_edge25_Node000020_Node000021"><a xlink:title=" "> <g id="a_edge25_Node000020_Node000021"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M337,-265.56C337,-257.39 337,-248.66 337,-241.58"/> <path fill="none" stroke="#63b8ff" d="M191.7,-265.56C191.7,-257.39 191.7,-248.66 191.7,-241.58"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="333.5,-265.35 337,-275.35 340.5,-265.35 333.5,-265.35"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="188.2,-265.35 191.7,-275.35 195.2,-265.35 188.2,-265.35"/>
</a> </a>
</g> </g>
</g> </g>
@@ -675,10 +675,10 @@ var sectionId = 'dynsection-1';
<g id="Node000024" class="node"> <g id="Node000024" class="node">
<title>Node24</title> <title>Node24</title>
<g id="a_Node000024"><a xlink:href="engine__priming_8h.html" target="_top" xlink:title=" "> <g id="a_Node000024"><a xlink:href="engine__priming_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="1129.75,-463.25 1022.25,-463.25 1022.25,-421.5 1129.75,-421.5 1129.75,-463.25"/> <polygon fill="white" stroke="#666666" points="886.45,-463.25 778.95,-463.25 778.95,-421.5 886.45,-421.5 886.45,-463.25"/>
<text xml:space="preserve" text-anchor="start" x="1030.25" y="-449.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="786.95" y="-449.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="start" x="1030.25" y="-438.5" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/views/engine</text> <text xml:space="preserve" text-anchor="start" x="786.95" y="-438.5" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/views/engine</text>
<text xml:space="preserve" text-anchor="middle" x="1076" y="-427.25" font-family="Helvetica,sans-Serif" font-size="10.00">_priming.h</text> <text xml:space="preserve" text-anchor="middle" x="832.7" y="-427.25" font-family="Helvetica,sans-Serif" font-size="10.00">_priming.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -686,8 +686,8 @@ var sectionId = 'dynsection-1';
<g id="edge31_Node000023_Node000024" class="edge"> <g id="edge31_Node000023_Node000024" class="edge">
<title>Node23&#45;&gt;Node24</title> <title>Node23&#45;&gt;Node24</title>
<g id="a_edge31_Node000023_Node000024"><a xlink:title=" "> <g id="a_edge31_Node000023_Node000024"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M996.47,-492.76C1011.8,-483.24 1028.85,-472.65 1043.22,-463.73"/> <path fill="none" stroke="#63b8ff" d="M810,-488.62C814.2,-480.25 818.65,-471.38 822.49,-463.73"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="994.63,-489.78 987.98,-498.03 998.32,-495.73 994.63,-489.78"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="806.92,-486.96 805.56,-497.47 813.17,-490.1 806.92,-486.96"/>
</a> </a>
</g> </g>
</g> </g>
@@ -695,10 +695,10 @@ var sectionId = 'dynsection-1';
<g id="Node000025" class="node"> <g id="Node000025" class="node">
<title>Node25</title> <title>Node25</title>
<g id="a_Node000025"><a xlink:href="engine__views_8h.html" target="_top" xlink:title=" "> <g id="a_Node000025"><a xlink:href="engine__views_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="887.75,-385.5 780.25,-385.5 780.25,-343.75 887.75,-343.75 887.75,-385.5"/> <polygon fill="white" stroke="#666666" points="848.45,-385.5 740.95,-385.5 740.95,-343.75 848.45,-343.75 848.45,-385.5"/>
<text xml:space="preserve" text-anchor="start" x="788.25" y="-372" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="748.95" y="-372" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="start" x="788.25" y="-360.75" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/views/engine</text> <text xml:space="preserve" text-anchor="start" x="748.95" y="-360.75" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/views/engine</text>
<text xml:space="preserve" text-anchor="middle" x="834" y="-349.5" font-family="Helvetica,sans-Serif" font-size="10.00">_views.h</text> <text xml:space="preserve" text-anchor="middle" x="794.7" y="-349.5" font-family="Helvetica,sans-Serif" font-size="10.00">_views.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -706,8 +706,8 @@ var sectionId = 'dynsection-1';
<g id="edge36_Node000023_Node000025" class="edge"> <g id="edge36_Node000023_Node000025" class="edge">
<title>Node23&#45;&gt;Node25</title> <title>Node23&#45;&gt;Node25</title>
<g id="a_edge36_Node000023_Node000025"><a xlink:title=" "> <g id="a_edge36_Node000023_Node000025"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M971.68,-488.99C981.21,-468.43 988.52,-441.4 975,-421.5 955.62,-392.97 919.15,-379.01 888.16,-372.17"/> <path fill="none" stroke="#63b8ff" d="M778.25,-488.53C774.72,-480.53 771.52,-471.75 769.7,-463.25 765.83,-445.1 765.83,-439.65 769.7,-421.5 772.34,-409.13 777.93,-396.19 783.15,-385.88"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="968.64,-487.23 967.27,-497.74 974.9,-490.38 968.64,-487.23"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="775.06,-489.97 782.5,-497.5 781.38,-486.97 775.06,-489.97"/>
</a> </a>
</g> </g>
</g> </g>
@@ -715,8 +715,8 @@ var sectionId = 'dynsection-1';
<g id="edge37_Node000023_Node000027" class="edge"> <g id="edge37_Node000023_Node000027" class="edge">
<title>Node23&#45;&gt;Node27</title> <title>Node23&#45;&gt;Node27</title>
<g id="a_edge37_Node000023_Node000027"><a xlink:title=" "> <g id="a_edge37_Node000023_Node000027"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M938.04,-488.9C932.36,-478.14 926.23,-466.53 921.58,-457.73"/> <path fill="none" stroke="#63b8ff" d="M859.7,-499.99C860.71,-499.74 861.71,-499.49 862.7,-499.25 942.36,-479.73 964.35,-483.99 1043.7,-463.25 1049.63,-461.7 1055.82,-459.9 1061.9,-458.03"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="934.81,-490.28 942.57,-497.49 941,-487.01 934.81,-490.28"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="859.03,-496.55 850.24,-502.47 860.8,-503.33 859.03,-496.55"/>
</a> </a>
</g> </g>
</g> </g>
@@ -724,8 +724,8 @@ var sectionId = 'dynsection-1';
<g id="edge32_Node000024_Node000025" class="edge"> <g id="edge32_Node000024_Node000025" class="edge">
<title>Node24&#45;&gt;Node25</title> <title>Node24&#45;&gt;Node25</title>
<g id="a_edge32_Node000024_Node000025"><a xlink:title=" "> <g id="a_edge32_Node000024_Node000025"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M1011.39,-421.15C972.8,-409.07 924.35,-393.91 887.84,-382.48"/> <path fill="none" stroke="#63b8ff" d="M817.4,-410.87C813.2,-402.5 808.75,-393.63 804.91,-385.98"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="1009.96,-424.37 1020.55,-424.02 1012.05,-417.69 1009.96,-424.37"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="814.23,-412.35 821.84,-419.72 820.48,-409.21 814.23,-412.35"/>
</a> </a>
</g> </g>
</g> </g>
@@ -733,9 +733,9 @@ var sectionId = 'dynsection-1';
<g id="Node000026" class="node"> <g id="Node000026" class="node">
<title>Node26</title> <title>Node26</title>
<g id="a_Node000026"><a xlink:href="engine__priming_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000026"><a xlink:href="engine__priming_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="1127.5,-379.88 1024.5,-379.88 1024.5,-349.38 1127.5,-349.38 1127.5,-379.88"/> <polygon fill="white" stroke="#666666" points="969.2,-379.88 866.2,-379.88 866.2,-349.38 969.2,-349.38 969.2,-379.88"/>
<text xml:space="preserve" text-anchor="start" x="1032.5" y="-366.38" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/engine/views</text> <text xml:space="preserve" text-anchor="start" x="874.2" y="-366.38" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/engine/views</text>
<text xml:space="preserve" text-anchor="middle" x="1076" y="-355.12" font-family="Helvetica,sans-Serif" font-size="10.00">/engine_priming.cpp</text> <text xml:space="preserve" text-anchor="middle" x="917.7" y="-355.12" font-family="Helvetica,sans-Serif" font-size="10.00">/engine_priming.cpp</text>
</a> </a>
</g> </g>
</g> </g>
@@ -743,8 +743,8 @@ var sectionId = 'dynsection-1';
<g id="edge35_Node000024_Node000026" class="edge"> <g id="edge35_Node000024_Node000026" class="edge">
<title>Node24&#45;&gt;Node26</title> <title>Node24&#45;&gt;Node26</title>
<g id="a_edge35_Node000024_Node000026"><a xlink:title=" "> <g id="a_edge35_Node000024_Node000026"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M1076,-409.81C1076,-399.44 1076,-388.42 1076,-379.98"/> <path fill="none" stroke="#63b8ff" d="M863.96,-413.51C876.64,-402.22 890.75,-389.64 901.33,-380.21"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="1072.5,-409.56 1076,-419.56 1079.5,-409.56 1072.5,-409.56"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="861.75,-410.8 856.61,-420.07 866.4,-416.03 861.75,-410.8"/>
</a> </a>
</g> </g>
</g> </g>
@@ -752,8 +752,8 @@ var sectionId = 'dynsection-1';
<g id="edge33_Node000025_Node000004" class="edge"> <g id="edge33_Node000025_Node000004" class="edge">
<title>Node25&#45;&gt;Node4</title> <title>Node25&#45;&gt;Node4</title>
<g id="a_edge33_Node000025_Node000004"><a xlink:title=" "> <g id="a_edge33_Node000025_Node000004"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M802.57,-335.93C781.98,-318.31 754.12,-295.46 728,-277.25 709.3,-264.21 687.08,-251.16 670.06,-241.62"/> <path fill="none" stroke="#63b8ff" d="M823.6,-335.82C853.35,-307.2 898.53,-263.73 921.75,-241.38"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="800.2,-338.51 810.06,-342.38 804.77,-333.2 800.2,-338.51"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="821.52,-332.96 816.74,-342.42 826.38,-338 821.52,-332.96"/>
</a> </a>
</g> </g>
</g> </g>
@@ -761,26 +761,26 @@ var sectionId = 'dynsection-1';
<g id="edge34_Node000025_Node000022" class="edge"> <g id="edge34_Node000025_Node000022" class="edge">
<title>Node25&#45;&gt;Node22</title> <title>Node25&#45;&gt;Node22</title>
<g id="a_edge34_Node000025_Node000022"><a xlink:title=" "> <g id="a_edge34_Node000025_Node000022"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M769.1,-347.25C719.34,-334.7 651.66,-317.63 606.04,-306.12"/> <path fill="none" stroke="#63b8ff" d="M729.7,-344.5C728.69,-344.25 727.69,-344 726.7,-343.75 660.17,-327.21 582.49,-311.89 532.97,-302.62"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="768.05,-350.6 778.6,-349.65 769.76,-343.81 768.05,-350.6"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="728.59,-347.83 739.15,-347 730.38,-341.06 728.59,-347.83"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node28&#45;&gt;Node17 --> <!-- Node28&#45;&gt;Node17 -->
<g id="edge45_Node000028_Node000017" class="edge"> <g id="edge47_Node000028_Node000017" class="edge">
<title>Node28&#45;&gt;Node17</title> <title>Node28&#45;&gt;Node17</title>
<g id="a_edge45_Node000028_Node000017"><a xlink:title=" "> <g id="a_edge47_Node000028_Node000017"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M602.47,-487.81C598.68,-468.46 593.06,-443.26 586,-421.5 581.31,-407.04 574.3,-391.17 569.07,-380.05"/> <path fill="none" stroke="#63b8ff" d="M614.04,-489.1C601.15,-468.01 581.64,-440.33 558.7,-421.5 536.64,-403.4 507.76,-389.66 483.97,-380.33"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="599.01,-488.35 604.31,-497.53 605.89,-487.05 599.01,-488.35"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="610.95,-490.74 619.06,-497.55 616.97,-487.16 610.95,-490.74"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node28&#45;&gt;Node25 --> <!-- Node28&#45;&gt;Node25 -->
<g id="edge44_Node000028_Node000025" class="edge"> <g id="edge45_Node000028_Node000025" class="edge">
<title>Node28&#45;&gt;Node25</title> <title>Node28&#45;&gt;Node25</title>
<g id="a_edge44_Node000028_Node000025"><a xlink:title=" "> <g id="a_edge45_Node000028_Node000025"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M673.19,-505.15C730.09,-492.38 805.09,-473.9 815,-463.25 834.41,-442.4 836.69,-407.87 835.86,-385.96"/> <path fill="none" stroke="#63b8ff" d="M660.36,-491.36C692.82,-460.98 744.08,-413 772.99,-385.94"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="672.56,-501.71 663.56,-507.3 674.08,-508.54 672.56,-501.71"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="658.15,-488.63 653.24,-498.02 662.94,-493.75 658.15,-488.63"/>
</a> </a>
</g> </g>
</g> </g>
@@ -788,10 +788,10 @@ var sectionId = 'dynsection-1';
<g id="Node000029" class="node"> <g id="Node000029" class="node">
<title>Node29</title> <title>Node29</title>
<g id="a_Node000029"><a xlink:href="engine__multiscale__scratchpad_8h.html" target="_top" xlink:title="Scratchpad implementation for the MultiscalePartitioningEngineView."> <g id="a_Node000029"><a xlink:href="engine__multiscale__scratchpad_8h.html" target="_top" xlink:title="Scratchpad implementation for the MultiscalePartitioningEngineView.">
<polygon fill="white" stroke="#666666" points="543.62,-463.25 408.38,-463.25 408.38,-421.5 543.62,-421.5 543.62,-463.25"/> <polygon fill="white" stroke="#666666" points="532.32,-463.25 397.07,-463.25 397.07,-421.5 532.32,-421.5 532.32,-463.25"/>
<text xml:space="preserve" text-anchor="start" x="416.38" y="-449.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="405.07" y="-449.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="start" x="416.38" y="-438.5" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/scratchpads/engine</text> <text xml:space="preserve" text-anchor="start" x="405.07" y="-438.5" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/scratchpads/engine</text>
<text xml:space="preserve" text-anchor="middle" x="476" y="-427.25" font-family="Helvetica,sans-Serif" font-size="10.00">_multiscale_scratchpad.h</text> <text xml:space="preserve" text-anchor="middle" x="464.7" y="-427.25" font-family="Helvetica,sans-Serif" font-size="10.00">_multiscale_scratchpad.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -799,17 +799,36 @@ var sectionId = 'dynsection-1';
<g id="edge39_Node000028_Node000029" class="edge"> <g id="edge39_Node000028_Node000029" class="edge">
<title>Node28&#45;&gt;Node29</title> <title>Node28&#45;&gt;Node29</title>
<g id="a_edge39_Node000028_Node000029"><a xlink:title=" "> <g id="a_edge39_Node000028_Node000029"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M562.99,-493.3C546.17,-483.64 527.32,-472.82 511.47,-463.73"/> <path fill="none" stroke="#63b8ff" d="M575.87,-494.11C554.28,-484.25 529.79,-473.08 509.31,-463.73"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="560.9,-496.13 571.31,-498.07 564.38,-490.06 560.9,-496.13"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="574.29,-497.23 584.84,-498.2 577.19,-490.86 574.29,-497.23"/>
</a>
</g>
</g>
<!-- Node30 -->
<g id="Node000030" class="node">
<title>Node30</title>
<g id="a_Node000030"><a xlink:href="engine__multiscale__scratchpad_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="684.2,-379.88 515.2,-379.88 515.2,-349.38 684.2,-349.38 684.2,-379.88"/>
<text xml:space="preserve" text-anchor="start" x="523.2" y="-366.38" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/engine/scratchpads</text>
<text xml:space="preserve" text-anchor="middle" x="599.7" y="-355.12" font-family="Helvetica,sans-Serif" font-size="10.00">/engine_multiscale_scratchpad.cpp</text>
</a>
</g>
</g>
<!-- Node28&#45;&gt;Node30 -->
<g id="edge46_Node000028_Node000030" class="edge">
<title>Node28&#45;&gt;Node30</title>
<g id="a_edge46_Node000028_Node000030"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M625.3,-487.77C621.9,-468.59 617.3,-443.58 612.7,-421.5 609.77,-407.46 606.03,-391.54 603.31,-380.29"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="621.81,-488.14 626.99,-497.39 628.71,-486.93 621.81,-488.14"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node29&#45;&gt;Node17 --> <!-- Node29&#45;&gt;Node17 -->
<g id="edge42_Node000029_Node000017" class="edge"> <g id="edge43_Node000029_Node000017" class="edge">
<title>Node29&#45;&gt;Node17</title> <title>Node29&#45;&gt;Node17</title>
<g id="a_edge42_Node000029_Node000017"><a xlink:title=" "> <g id="a_edge43_Node000029_Node000017"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M507.63,-413.51C520.45,-402.22 534.73,-389.64 545.44,-380.21"/> <path fill="none" stroke="#63b8ff" d="M454.39,-410.15C450.94,-399.68 447.25,-388.51 444.44,-379.98"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="505.37,-410.84 500.18,-420.07 510,-416.09 505.37,-410.84"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="451.07,-411.24 457.53,-419.64 457.72,-409.04 451.07,-411.24"/>
</a> </a>
</g> </g>
</g> </g>
@@ -817,8 +836,8 @@ var sectionId = 'dynsection-1';
<g id="edge40_Node000029_Node000019" class="edge"> <g id="edge40_Node000029_Node000019" class="edge">
<title>Node29&#45;&gt;Node19</title> <title>Node29&#45;&gt;Node19</title>
<g id="a_edge40_Node000029_Node000019"><a xlink:title=" "> <g id="a_edge40_Node000029_Node000019"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M410.32,-417.22C377.34,-405.1 338.46,-390.8 310,-380.33"/> <path fill="none" stroke="#63b8ff" d="M385.82,-420.9C311.34,-404.17 235.99,-389.8 180.75,-379.73"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="408.78,-420.39 419.38,-420.55 411.2,-413.82 408.78,-420.39"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="384.8,-424.26 395.32,-423.05 386.34,-417.43 384.8,-424.26"/>
</a> </a>
</g> </g>
</g> </g>
@@ -826,17 +845,26 @@ var sectionId = 'dynsection-1';
<g id="edge41_Node000029_Node000020" class="edge"> <g id="edge41_Node000029_Node000020" class="edge">
<title>Node29&#45;&gt;Node20</title> <title>Node29&#45;&gt;Node20</title>
<g id="a_edge41_Node000029_Node000020"><a xlink:title=" "> <g id="a_edge41_Node000029_Node000020"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M449.13,-412.79C419.69,-381.47 373.62,-332.45 350.78,-308.16"/> <path fill="none" stroke="#63b8ff" d="M417.39,-415.75C359.96,-384.64 265.05,-333.23 218.77,-308.16"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="446.53,-415.13 455.93,-420.02 451.63,-410.34 446.53,-415.13"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="415.52,-418.72 425.98,-420.4 418.86,-412.56 415.52,-418.72"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node29&#45;&gt;Node22 --> <!-- Node29&#45;&gt;Node22 -->
<g id="edge43_Node000029_Node000022" class="edge"> <g id="edge44_Node000029_Node000022" class="edge">
<title>Node29&#45;&gt;Node22</title> <title>Node29&#45;&gt;Node22</title>
<g id="a_edge43_Node000029_Node000022"><a xlink:title=" "> <g id="a_edge44_Node000029_Node000022"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M476.74,-409.89C478.46,-389.75 483.09,-363.75 495,-343.75 503.7,-329.13 518.29,-316.88 531.01,-308.14"/> <path fill="none" stroke="#63b8ff" d="M402.05,-415.38C390.3,-407.56 379.57,-397.71 372.7,-385.5 363.6,-369.33 362.67,-359.36 372.7,-343.75 385.98,-323.08 410.1,-310.81 432.37,-303.58"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="473.25,-409.56 476.11,-419.77 480.24,-410.01 473.25,-409.56"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="399.98,-418.22 410.34,-420.44 403.63,-412.25 399.98,-418.22"/>
</a>
</g>
</g>
<!-- Node29&#45;&gt;Node30 -->
<g id="edge42_Node000029_Node000030" class="edge">
<title>Node29&#45;&gt;Node30</title>
<g id="a_edge42_Node000029_Node000030"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M510.89,-415.46C531.88,-403.68 555.92,-390.19 573.7,-380.21"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="509.21,-412.39 502.2,-420.33 512.63,-418.49 509.21,-412.39"/>
</a> </a>
</g> </g>
</g> </g>

Before

Width:  |  Height:  |  Size: 45 KiB

After

Width:  |  Height:  |  Size: 47 KiB

View File

@@ -4,17 +4,17 @@
<!-- Generated by graphviz version 14.1.2 (20260124.0452) <!-- Generated by graphviz version 14.1.2 (20260124.0452)
--> -->
<!-- Title: src/include/gridfire/engine/types/building.h Pages: 1 --> <!-- Title: src/include/gridfire/engine/types/building.h Pages: 1 -->
<svg width="1138pt" height="749pt" <svg width="1316pt" height="749pt"
viewBox="0.00 0.00 1138.00 749.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> viewBox="0.00 0.00 1316.00 749.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 744.5)"> <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 744.5)">
<title>src/include/gridfire/engine/types/building.h</title> <title>src/include/gridfire/engine/types/building.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="Defines types related to building reaction networks in the GridFire engine."> <g id="a_Node000001"><a xlink:title="Defines types related to building reaction networks in the GridFire engine.">
<polygon fill="#999999" stroke="#666666" points="746.38,-740.5 627.62,-740.5 627.62,-710 746.38,-710 746.38,-740.5"/> <polygon fill="#999999" stroke="#666666" points="1034.07,-740.5 915.32,-740.5 915.32,-710 1034.07,-710 1034.07,-740.5"/>
<text xml:space="preserve" text-anchor="start" x="635.62" y="-727" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="923.32" y="-727" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="687" y="-715.75" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/types/building.h</text> <text xml:space="preserve" text-anchor="middle" x="974.7" y="-715.75" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/types/building.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="construction_8h.html" target="_top" xlink:title="Functions for constructing nuclear reaction networks."> <g id="a_Node000002"><a xlink:href="construction_8h.html" target="_top" xlink:title="Functions for constructing nuclear reaction networks.">
<polygon fill="white" stroke="#666666" points="768.5,-674 605.5,-674 605.5,-643.5 768.5,-643.5 768.5,-674"/> <polygon fill="white" stroke="#666666" points="1056.2,-674 893.2,-674 893.2,-643.5 1056.2,-643.5 1056.2,-674"/>
<text xml:space="preserve" text-anchor="start" x="613.5" y="-660.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="901.2" y="-660.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="687" y="-649.25" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/procedures/construction.h</text> <text xml:space="preserve" text-anchor="middle" x="974.7" y="-649.25" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/procedures/construction.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -32,8 +32,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="M687,-698.31C687,-690.14 687,-681.41 687,-674.33"/> <path fill="none" stroke="#63b8ff" d="M974.7,-698.31C974.7,-690.14 974.7,-681.41 974.7,-674.33"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="683.5,-698.1 687,-708.1 690.5,-698.1 683.5,-698.1"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="971.2,-698.1 974.7,-708.1 978.2,-698.1 971.2,-698.1"/>
</a> </a>
</g> </g>
</g> </g>
@@ -41,9 +41,9 @@
<g id="Node000003" class="node"> <g id="Node000003" class="node">
<title>Node3</title> <title>Node3</title>
<g id="a_Node000003"><a xlink:href="engine__graph_8h.html" target="_top" xlink:title=" "> <g id="a_Node000003"><a xlink:href="engine__graph_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="595.25,-607.5 478.75,-607.5 478.75,-577 595.25,-577 595.25,-607.5"/> <polygon fill="white" stroke="#666666" points="811.95,-607.5 695.45,-607.5 695.45,-577 811.95,-577 811.95,-607.5"/>
<text xml:space="preserve" text-anchor="start" x="486.75" y="-594" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="703.45" y="-594" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="537" y="-582.75" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/engine_graph.h</text> <text xml:space="preserve" text-anchor="middle" x="753.7" y="-582.75" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/engine_graph.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -51,8 +51,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="M642.5,-638.62C619.67,-628.8 592.3,-617.03 571.16,-607.94"/> <path fill="none" stroke="#63b8ff" d="M913.38,-639.85C878.9,-629.79 836.4,-617.39 803.91,-607.9"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="641,-641.78 651.57,-642.52 643.77,-635.35 641,-641.78"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="912.24,-643.17 922.82,-642.61 914.2,-636.45 912.24,-643.17"/>
</a> </a>
</g> </g>
</g> </g>
@@ -60,19 +60,19 @@
<g id="Node000014" class="node"> <g id="Node000014" class="node">
<title>Node14</title> <title>Node14</title>
<g id="a_Node000014"><a xlink:href="engine__procedures_8h.html" target="_top" xlink:title=" "> <g id="a_Node000014"><a xlink:href="engine__procedures_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="806,-463.25 676,-463.25 676,-421.5 806,-421.5 806,-463.25"/> <polygon fill="white" stroke="#666666" points="1034.7,-463.25 904.7,-463.25 904.7,-421.5 1034.7,-421.5 1034.7,-463.25"/>
<text xml:space="preserve" text-anchor="start" x="684" y="-449.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="912.7" y="-449.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="start" x="684" y="-438.5" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/procedures/engine</text> <text xml:space="preserve" text-anchor="start" x="912.7" y="-438.5" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/procedures/engine</text>
<text xml:space="preserve" text-anchor="middle" x="741" y="-427.25" font-family="Helvetica,sans-Serif" font-size="10.00">_procedures.h</text> <text xml:space="preserve" text-anchor="middle" x="969.7" y="-427.25" font-family="Helvetica,sans-Serif" font-size="10.00">_procedures.h</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node2&#45;&gt;Node14 --> <!-- Node2&#45;&gt;Node14 -->
<g id="edge50_Node000002_Node000014" class="edge"> <g id="edge52_Node000002_Node000014" class="edge">
<title>Node2&#45;&gt;Node14</title> <title>Node2&#45;&gt;Node14</title>
<g id="a_edge50_Node000002_Node000014"><a xlink:title=" "> <g id="a_edge52_Node000002_Node000014"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M693.47,-632.07C704.33,-588.96 726,-502.93 735.88,-463.71"/> <path fill="none" stroke="#63b8ff" d="M994.49,-634.18C1018.27,-602.84 1052.49,-545.98 1031.7,-499.25 1025.4,-485.08 1013.53,-473 1001.85,-463.73"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="690.13,-631 691.08,-641.55 696.92,-632.71 690.13,-631"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="991.89,-631.83 988.46,-641.86 997.39,-636.16 991.89,-631.83"/>
</a> </a>
</g> </g>
</g> </g>
@@ -80,37 +80,37 @@
<g id="Node000015" class="node"> <g id="Node000015" class="node">
<title>Node15</title> <title>Node15</title>
<g id="a_Node000015"><a xlink:href="engine__graph_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000015"><a xlink:href="engine__graph_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="133.62,-457.62 28.38,-457.62 28.38,-427.12 133.62,-427.12 133.62,-457.62"/> <polygon fill="white" stroke="#666666" points="379.32,-457.62 274.07,-457.62 274.07,-427.12 379.32,-427.12 379.32,-457.62"/>
<text xml:space="preserve" text-anchor="start" x="36.38" y="-444.12" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/engine/engine</text> <text xml:space="preserve" text-anchor="start" x="282.07" y="-444.12" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/engine/engine</text>
<text xml:space="preserve" text-anchor="middle" x="81" y="-432.88" font-family="Helvetica,sans-Serif" font-size="10.00">_graph.cpp</text> <text xml:space="preserve" text-anchor="middle" x="326.7" y="-432.88" font-family="Helvetica,sans-Serif" font-size="10.00">_graph.cpp</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node2&#45;&gt;Node15 --> <!-- Node2&#45;&gt;Node15 -->
<g id="edge51_Node000002_Node000015" class="edge"> <g id="edge53_Node000002_Node000015" class="edge">
<title>Node2&#45;&gt;Node15</title> <title>Node2&#45;&gt;Node15</title>
<g id="a_edge51_Node000002_Node000015"><a xlink:title=" "> <g id="a_edge53_Node000002_Node000015"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M593.92,-653.99C439.24,-645.56 139.78,-619.31 75,-541 55.52,-517.45 66.4,-478.75 74.58,-457.85"/> <path fill="none" stroke="#63b8ff" d="M881.61,-651.66C728.98,-639.82 434.82,-608.71 358.7,-541 334.58,-519.54 328.57,-479.63 327.12,-458.08"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="593.58,-657.47 603.75,-654.51 593.95,-650.48 593.58,-657.47"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="881.05,-655.12 891.29,-652.39 881.58,-648.14 881.05,-655.12"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node31 --> <!-- Node32 -->
<g id="Node000031" class="node"> <g id="Node000032" class="node">
<title>Node31</title> <title>Node32</title>
<g id="a_Node000031"><a xlink:href="construction_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000032"><a xlink:href="construction_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="918.38,-607.5 793.62,-607.5 793.62,-577 918.38,-577 918.38,-607.5"/> <polygon fill="white" stroke="#666666" points="1308.07,-607.5 1183.32,-607.5 1183.32,-577 1308.07,-577 1308.07,-607.5"/>
<text xml:space="preserve" text-anchor="start" x="801.62" y="-594" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/engine/procedures</text> <text xml:space="preserve" text-anchor="start" x="1191.32" y="-594" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/engine/procedures</text>
<text xml:space="preserve" text-anchor="middle" x="856" y="-582.75" font-family="Helvetica,sans-Serif" font-size="10.00">/construction.cpp</text> <text xml:space="preserve" text-anchor="middle" x="1245.7" y="-582.75" font-family="Helvetica,sans-Serif" font-size="10.00">/construction.cpp</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node2&#45;&gt;Node31 --> <!-- Node2&#45;&gt;Node32 -->
<g id="edge52_Node000002_Node000031" class="edge"> <g id="edge54_Node000002_Node000032" class="edge">
<title>Node2&#45;&gt;Node31</title> <title>Node2&#45;&gt;Node32</title>
<g id="a_edge52_Node000002_Node000031"><a xlink:title=" "> <g id="a_edge54_Node000002_Node000032"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M736.09,-639.01C762.01,-629.12 793.37,-617.15 817.51,-607.94"/> <path fill="none" stroke="#63b8ff" d="M1047.7,-640.38C1090.36,-630.22 1143.6,-617.55 1184.13,-607.9"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="734.86,-635.74 726.76,-642.57 737.35,-642.28 734.86,-635.74"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="1046.92,-636.96 1038.01,-642.68 1048.54,-643.77 1046.92,-636.96"/>
</a> </a>
</g> </g>
</g> </g>
@@ -118,9 +118,9 @@
<g id="Node000004" class="node"> <g id="Node000004" class="node">
<title>Node4</title> <title>Node4</title>
<g id="a_Node000004"><a xlink:href="engine_8h.html" target="_top" xlink:title="Core header for the GridFire reaction network engine module."> <g id="a_Node000004"><a xlink:href="engine_8h.html" target="_top" xlink:title="Core header for the GridFire reaction network engine module.">
<polygon fill="white" stroke="#666666" points="690.75,-241.25 595.25,-241.25 595.25,-210.75 690.75,-210.75 690.75,-241.25"/> <polygon fill="white" stroke="#666666" points="984.45,-241.25 888.95,-241.25 888.95,-210.75 984.45,-210.75 984.45,-241.25"/>
<text xml:space="preserve" text-anchor="start" x="603.25" y="-227.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="896.95" y="-227.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="643" y="-216.5" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/engine.h</text> <text xml:space="preserve" text-anchor="middle" x="936.7" y="-216.5" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/engine.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -128,8 +128,8 @@
<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="M467.13,-590.28C354.91,-587.64 140.45,-577.78 75,-541 27.3,-514.19 0,-498.09 0,-443.38 0,-443.38 0,-443.38 0,-363.62 0,-248.59 132.06,-303.78 244,-277.25 368.49,-247.74 519.2,-234.73 594.81,-229.72"/> <path fill="none" stroke="#63b8ff" d="M823.32,-585.42C880.64,-579.03 963.3,-566.15 1031.7,-541 1096.33,-517.24 1131.34,-522.92 1165.7,-463.25 1222.79,-364.13 1050.44,-275.52 972.67,-241.63"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="466.73,-593.78 476.81,-590.5 466.89,-586.78 466.73,-593.78"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="823.28,-581.9 813.71,-586.45 824.03,-588.86 823.28,-581.9"/>
</a> </a>
</g> </g>
</g> </g>
@@ -137,9 +137,9 @@
<g id="Node000013" class="node"> <g id="Node000013" class="node">
<title>Node13</title> <title>Node13</title>
<g id="a_Node000013"><a xlink:href="priming_8h.html" target="_top" xlink:title=" "> <g id="a_Node000013"><a xlink:href="priming_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="536.62,-535.38 395.38,-535.38 395.38,-504.88 536.62,-504.88 536.62,-535.38"/> <polygon fill="white" stroke="#666666" points="559.32,-535.38 418.07,-535.38 418.07,-504.88 559.32,-504.88 559.32,-535.38"/>
<text xml:space="preserve" text-anchor="start" x="403.38" y="-521.88" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="426.07" y="-521.88" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="466" y="-510.62" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/procedures/priming.h</text> <text xml:space="preserve" text-anchor="middle" x="488.7" y="-510.62" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/procedures/priming.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -147,17 +147,17 @@
<g id="edge15_Node000003_Node000013" class="edge"> <g id="edge15_Node000003_Node000013" class="edge">
<title>Node3&#45;&gt;Node13</title> <title>Node3&#45;&gt;Node13</title>
<g id="a_edge15_Node000003_Node000013"><a xlink:title=" "> <g id="a_edge15_Node000003_Node000013"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M514.32,-568.85C503.31,-557.98 490.4,-545.22 480.69,-535.64"/> <path fill="none" stroke="#63b8ff" d="M687.23,-573.66C643.1,-561.98 585.86,-546.83 544.18,-535.81"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="511.64,-571.12 521.21,-575.66 516.56,-566.14 511.64,-571.12"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="686.12,-576.99 696.68,-576.16 687.91,-570.22 686.12,-576.99"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node3&#45;&gt;Node15 --> <!-- Node3&#45;&gt;Node15 -->
<g id="edge46_Node000003_Node000015" class="edge"> <g id="edge48_Node000003_Node000015" class="edge">
<title>Node3&#45;&gt;Node15</title> <title>Node3&#45;&gt;Node15</title>
<g id="a_edge46_Node000003_Node000015"><a xlink:title=" "> <g id="a_edge48_Node000003_Node000015"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M466.97,-587.78C349.82,-581.32 124.29,-565.8 98,-541 75.35,-519.63 76.23,-479.68 78.69,-458.1"/> <path fill="none" stroke="#63b8ff" d="M683.9,-586.94C597.06,-580.59 454.62,-566.59 408.7,-541 373.32,-521.28 346.62,-479.87 334.27,-457.85"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="466.61,-591.27 476.79,-588.32 466.99,-584.28 466.61,-591.27"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="683.51,-590.42 693.73,-587.65 684.01,-583.44 683.51,-590.42"/>
</a> </a>
</g> </g>
</g> </g>
@@ -165,10 +165,10 @@
<g id="Node000018" class="node"> <g id="Node000018" class="node">
<title>Node18</title> <title>Node18</title>
<g id="a_Node000018"><a xlink:href="engine__graph__scratchpad_8h.html" target="_top" xlink:title="Scratchpad implementation for the GraphEngine using CppAD automatic differentiation."> <g id="a_Node000018"><a xlink:href="engine__graph__scratchpad_8h.html" target="_top" xlink:title="Scratchpad implementation for the GraphEngine using CppAD automatic differentiation.">
<polygon fill="white" stroke="#666666" points="242.62,-541 107.38,-541 107.38,-499.25 242.62,-499.25 242.62,-541"/> <polygon fill="white" stroke="#666666" points="216.32,-541 81.07,-541 81.07,-499.25 216.32,-499.25 216.32,-541"/>
<text xml:space="preserve" text-anchor="start" x="115.38" y="-527.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="89.07" y="-527.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="start" x="115.38" y="-516.25" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/scratchpads/engine</text> <text xml:space="preserve" text-anchor="start" x="89.07" y="-516.25" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/scratchpads/engine</text>
<text xml:space="preserve" text-anchor="middle" x="175" y="-505" font-family="Helvetica,sans-Serif" font-size="10.00">_graph_scratchpad.h</text> <text xml:space="preserve" text-anchor="middle" x="148.7" y="-505" font-family="Helvetica,sans-Serif" font-size="10.00">_graph_scratchpad.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -176,8 +176,8 @@
<g id="edge21_Node000003_Node000018" class="edge"> <g id="edge21_Node000003_Node000018" class="edge">
<title>Node3&#45;&gt;Node18</title> <title>Node3&#45;&gt;Node18</title>
<g id="a_edge21_Node000003_Node000018"><a xlink:title=" "> <g id="a_edge21_Node000003_Node000018"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M467.14,-580.61C409.04,-571.38 324.3,-557 251,-541 248.34,-540.42 245.62,-539.81 242.89,-539.17"/> <path fill="none" stroke="#63b8ff" d="M683.84,-583.15C566.7,-569.58 332.18,-542.39 216.46,-528.98"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="466.47,-584.05 476.9,-582.16 467.56,-577.14 466.47,-584.05"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="683.3,-586.61 693.64,-584.29 684.11,-579.66 683.3,-586.61"/>
</a> </a>
</g> </g>
</g> </g>
@@ -185,18 +185,18 @@
<g id="Node000022" class="node"> <g id="Node000022" class="node">
<title>Node22</title> <title>Node22</title>
<g id="a_Node000022"><a xlink:href="stellar__policy_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000022"><a xlink:href="stellar__policy_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="606,-307.75 506,-307.75 506,-277.25 606,-277.25 606,-307.75"/> <polygon fill="white" stroke="#666666" points="532.7,-307.75 432.7,-307.75 432.7,-277.25 532.7,-277.25 532.7,-307.75"/>
<text xml:space="preserve" text-anchor="start" x="514" y="-294.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/policy/stellar</text> <text xml:space="preserve" text-anchor="start" x="440.7" y="-294.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/policy/stellar</text>
<text xml:space="preserve" text-anchor="middle" x="556" y="-283" font-family="Helvetica,sans-Serif" font-size="10.00">_policy.cpp</text> <text xml:space="preserve" text-anchor="middle" x="482.7" y="-283" font-family="Helvetica,sans-Serif" font-size="10.00">_policy.cpp</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node3&#45;&gt;Node22 --> <!-- Node3&#45;&gt;Node22 -->
<g id="edge48_Node000003_Node000022" class="edge"> <g id="edge50_Node000003_Node000022" class="edge">
<title>Node3&#45;&gt;Node22</title> <title>Node3&#45;&gt;Node22</title>
<g id="a_edge48_Node000003_Node000022"><a xlink:title=" "> <g id="a_edge50_Node000003_Node000022"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M606.38,-581.8C630.94,-574.74 656.15,-562.44 671,-541 681.57,-525.75 673.44,-517.64 671,-499.25 666.29,-463.77 649.68,-372.97 629,-343.75 618.33,-328.68 601.63,-316.7 586.89,-308.22"/> <path fill="none" stroke="#63b8ff" d="M741.43,-566.22C737.91,-558.29 734.31,-549.41 731.7,-541 705.19,-455.75 755.44,-408.24 693.7,-343.75 671.89,-320.97 588.29,-306.49 533.1,-299.2"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="605.82,-578.33 597.01,-584.22 607.57,-585.11 605.82,-578.33"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="738.24,-567.66 745.63,-575.26 744.59,-564.71 738.24,-567.66"/>
</a> </a>
</g> </g>
</g> </g>
@@ -204,10 +204,10 @@
<g id="Node000023" class="node"> <g id="Node000023" class="node">
<title>Node23</title> <title>Node23</title>
<g id="a_Node000023"><a xlink:href="engine__defined_8h.html" target="_top" xlink:title=" "> <g id="a_Node000023"><a xlink:href="engine__defined_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="1007.75,-541 900.25,-541 900.25,-499.25 1007.75,-499.25 1007.75,-541"/> <polygon fill="white" stroke="#666666" points="848.45,-541 740.95,-541 740.95,-499.25 848.45,-499.25 848.45,-541"/>
<text xml:space="preserve" text-anchor="start" x="908.25" y="-527.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="748.95" y="-527.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="start" x="908.25" y="-516.25" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/views/engine</text> <text xml:space="preserve" text-anchor="start" x="748.95" y="-516.25" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/views/engine</text>
<text xml:space="preserve" text-anchor="middle" x="954" y="-505" font-family="Helvetica,sans-Serif" font-size="10.00">_defined.h</text> <text xml:space="preserve" text-anchor="middle" x="794.7" y="-505" font-family="Helvetica,sans-Serif" font-size="10.00">_defined.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -215,8 +215,8 @@
<g id="edge30_Node000003_Node000023" class="edge"> <g id="edge30_Node000003_Node000023" class="edge">
<title>Node3&#45;&gt;Node23</title> <title>Node3&#45;&gt;Node23</title>
<g id="a_edge30_Node000003_Node000023"><a xlink:title=" "> <g id="a_edge30_Node000003_Node000023"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M606.7,-579.53C689.24,-565.65 824.94,-542.83 899.94,-530.22"/> <path fill="none" stroke="#63b8ff" d="M767.96,-566.86C772.8,-558.58 778.16,-549.42 782.8,-541.49"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="606.19,-576.06 596.91,-581.17 607.36,-582.97 606.19,-576.06"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="764.98,-565.01 762.96,-575.41 771.03,-568.55 764.98,-565.01"/>
</a> </a>
</g> </g>
</g> </g>
@@ -224,18 +224,18 @@
<g id="Node000027" class="node"> <g id="Node000027" class="node">
<title>Node27</title> <title>Node27</title>
<g id="a_Node000027"><a xlink:href="engine__defined_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000027"><a xlink:href="engine__defined_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="965.5,-457.62 862.5,-457.62 862.5,-427.12 965.5,-427.12 965.5,-457.62"/> <polygon fill="white" stroke="#666666" points="1156.2,-457.62 1053.2,-457.62 1053.2,-427.12 1156.2,-427.12 1156.2,-457.62"/>
<text xml:space="preserve" text-anchor="start" x="870.5" y="-444.12" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/engine/views</text> <text xml:space="preserve" text-anchor="start" x="1061.2" y="-444.12" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/engine/views</text>
<text xml:space="preserve" text-anchor="middle" x="914" y="-432.88" font-family="Helvetica,sans-Serif" font-size="10.00">/engine_defined.cpp</text> <text xml:space="preserve" text-anchor="middle" x="1104.7" y="-432.88" font-family="Helvetica,sans-Serif" font-size="10.00">/engine_defined.cpp</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node3&#45;&gt;Node27 --> <!-- Node3&#45;&gt;Node27 -->
<g id="edge47_Node000003_Node000027" class="edge"> <g id="edge49_Node000003_Node000027" class="edge">
<title>Node3&#45;&gt;Node27</title> <title>Node3&#45;&gt;Node27</title>
<g id="a_edge47_Node000003_Node000027"><a xlink:title=" "> <g id="a_edge49_Node000003_Node000027"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M604.01,-573.46C634.81,-564.68 671.62,-553.33 704,-541 770.7,-515.61 845.86,-478.5 885.69,-458.12"/> <path fill="none" stroke="#63b8ff" d="M803.1,-572.05C821.15,-563.87 841.18,-553.33 857.7,-541 877.81,-525.99 874.12,-512.05 895.7,-499.25 953.92,-464.71 978.58,-481.75 1043.7,-463.25 1049.27,-461.67 1055.1,-459.91 1060.84,-458.11"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="603.09,-570.08 594.41,-576.16 604.98,-576.82 603.09,-570.08"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="801.88,-568.77 794.13,-575.99 804.69,-575.18 801.88,-568.77"/>
</a> </a>
</g> </g>
</g> </g>
@@ -243,10 +243,10 @@
<g id="Node000028" class="node"> <g id="Node000028" class="node">
<title>Node28</title> <title>Node28</title>
<g id="a_Node000028"><a xlink:href="engine__multiscale_8h.html" target="_top" xlink:title=" "> <g id="a_Node000028"><a xlink:href="engine__multiscale_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="661.75,-541 554.25,-541 554.25,-499.25 661.75,-499.25 661.75,-541"/> <polygon fill="white" stroke="#666666" points="684.45,-541 576.95,-541 576.95,-499.25 684.45,-499.25 684.45,-541"/>
<text xml:space="preserve" text-anchor="start" x="562.25" y="-527.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="584.95" y="-527.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="start" x="562.25" y="-516.25" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/views/engine</text> <text xml:space="preserve" text-anchor="start" x="584.95" y="-516.25" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/views/engine</text>
<text xml:space="preserve" text-anchor="middle" x="608" y="-505" font-family="Helvetica,sans-Serif" font-size="10.00">_multiscale.h</text> <text xml:space="preserve" text-anchor="middle" x="630.7" y="-505" font-family="Helvetica,sans-Serif" font-size="10.00">_multiscale.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -254,27 +254,27 @@
<g id="edge38_Node000003_Node000028" class="edge"> <g id="edge38_Node000003_Node000028" class="edge">
<title>Node3&#45;&gt;Node28</title> <title>Node3&#45;&gt;Node28</title>
<g id="a_edge38_Node000003_Node000028"><a xlink:title=" "> <g id="a_edge38_Node000003_Node000028"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M559.76,-568.77C568.63,-560.01 578.73,-550.04 587.38,-541.49"/> <path fill="none" stroke="#63b8ff" d="M718.2,-571.01C701.88,-561.71 682.57,-550.7 666.25,-541.39"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="557.44,-566.14 552.79,-575.66 562.36,-571.12 557.44,-566.14"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="716.18,-573.89 726.6,-575.8 719.65,-567.81 716.18,-573.89"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node30 --> <!-- Node31 -->
<g id="Node000030" class="node"> <g id="Node000031" class="node">
<title>Node30</title> <title>Node31</title>
<g id="a_Node000030"><a xlink:href="_point_solver_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000031"><a xlink:href="_point_solver_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="377.62,-535.38 260.38,-535.38 260.38,-504.88 377.62,-504.88 377.62,-535.38"/> <polygon fill="white" stroke="#666666" points="1022.32,-535.38 905.07,-535.38 905.07,-504.88 1022.32,-504.88 1022.32,-535.38"/>
<text xml:space="preserve" text-anchor="start" x="268.38" y="-521.88" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/solver/strategies</text> <text xml:space="preserve" text-anchor="start" x="913.07" y="-521.88" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/solver/strategies</text>
<text xml:space="preserve" text-anchor="middle" x="319" y="-510.62" font-family="Helvetica,sans-Serif" font-size="10.00">/PointSolver.cpp</text> <text xml:space="preserve" text-anchor="middle" x="963.7" y="-510.62" font-family="Helvetica,sans-Serif" font-size="10.00">/PointSolver.cpp</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node3&#45;&gt;Node30 --> <!-- Node3&#45;&gt;Node31 -->
<g id="edge49_Node000003_Node000030" class="edge"> <g id="edge51_Node000003_Node000031" class="edge">
<title>Node3&#45;&gt;Node30</title> <title>Node3&#45;&gt;Node31</title>
<g id="a_edge49_Node000003_Node000030"><a xlink:title=" "> <g id="a_edge51_Node000003_Node000031"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M480.46,-573.06C444.43,-561.47 398.34,-546.65 364.64,-535.81"/> <path fill="none" stroke="#63b8ff" d="M808.61,-572.91C843.26,-561.34 887.41,-546.6 919.73,-535.81"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="479.27,-576.36 489.86,-576.09 481.41,-569.69 479.27,-576.36"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="807.53,-569.58 799.16,-576.07 809.75,-576.22 807.53,-569.58"/>
</a> </a>
</g> </g>
</g> </g>
@@ -282,9 +282,9 @@
<g id="Node000005" class="node"> <g id="Node000005" class="node">
<title>Node5</title> <title>Node5</title>
<g id="a_Node000005"><a xlink:href="gridfire_8h.html" target="_top" xlink:title=" "> <g id="a_Node000005"><a xlink:href="gridfire_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="515.75,-174.75 420.25,-174.75 420.25,-144.25 515.75,-144.25 515.75,-174.75"/> <polygon fill="white" stroke="#666666" points="809.45,-174.75 713.95,-174.75 713.95,-144.25 809.45,-144.25 809.45,-174.75"/>
<text xml:space="preserve" text-anchor="start" x="428.25" y="-161.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="721.95" y="-161.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="468" y="-150" font-family="Helvetica,sans-Serif" font-size="10.00">/gridfire.h</text> <text xml:space="preserve" text-anchor="middle" x="761.7" y="-150" font-family="Helvetica,sans-Serif" font-size="10.00">/gridfire.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -292,8 +292,8 @@
<g id="edge4_Node000004_Node000005" class="edge"> <g id="edge4_Node000004_Node000005" class="edge">
<title>Node4&#45;&gt;Node5</title> <title>Node4&#45;&gt;Node5</title>
<g id="a_edge4_Node000004_Node000005"><a xlink:title=" "> <g id="a_edge4_Node000004_Node000005"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M592.53,-206.4C565.61,-196.48 532.97,-184.45 507.86,-175.19"/> <path fill="none" stroke="#63b8ff" d="M886.23,-206.4C859.31,-196.48 826.67,-184.45 801.56,-175.19"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="591.28,-209.67 601.87,-209.84 593.7,-203.1 591.28,-209.67"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="884.98,-209.67 895.57,-209.84 887.4,-203.1 884.98,-209.67"/>
</a> </a>
</g> </g>
</g> </g>
@@ -301,8 +301,8 @@
<g id="Node000009" class="node"> <g id="Node000009" class="node">
<title>Node9</title> <title>Node9</title>
<g id="a_Node000009"><a xlink:href="engine_2bindings_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000009"><a xlink:href="engine_2bindings_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="651.5,-97 500.5,-97 500.5,-77.75 651.5,-77.75 651.5,-97"/> <polygon fill="white" stroke="#666666" points="945.2,-97 794.2,-97 794.2,-77.75 945.2,-77.75 945.2,-97"/>
<text xml:space="preserve" text-anchor="middle" x="576" y="-83.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/engine/bindings.cpp</text> <text xml:space="preserve" text-anchor="middle" x="869.7" y="-83.5" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/engine/bindings.cpp</text>
</a> </a>
</g> </g>
</g> </g>
@@ -310,8 +310,8 @@
<g id="edge9_Node000004_Node000009" class="edge"> <g id="edge9_Node000004_Node000009" class="edge">
<title>Node4&#45;&gt;Node9</title> <title>Node4&#45;&gt;Node9</title>
<g id="a_edge9_Node000004_Node000009"><a xlink:title=" "> <g id="a_edge9_Node000004_Node000009"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M594.04,-204.9C581.72,-197.35 570.01,-187.44 563,-174.75 548.99,-149.4 563.12,-113.8 571.2,-97.35"/> <path fill="none" stroke="#63b8ff" d="M887.74,-204.9C875.42,-197.35 863.71,-187.44 856.7,-174.75 842.69,-149.4 856.82,-113.8 864.9,-97.35"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="592.22,-207.89 602.65,-209.71 595.63,-201.78 592.22,-207.89"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="885.92,-207.89 896.35,-209.71 889.33,-201.78 885.92,-207.89"/>
</a> </a>
</g> </g>
</g> </g>
@@ -319,9 +319,9 @@
<g id="Node000010" class="node"> <g id="Node000010" class="node">
<title>Node10</title> <title>Node10</title>
<g id="a_Node000010"><a xlink:href="py__engine_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000010"><a xlink:href="py__engine_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="811.62,-102.62 670.38,-102.62 670.38,-72.12 811.62,-72.12 811.62,-102.62"/> <polygon fill="white" stroke="#666666" points="1105.32,-102.62 964.07,-102.62 964.07,-72.12 1105.32,-72.12 1105.32,-102.62"/>
<text xml:space="preserve" text-anchor="start" x="678.38" y="-89.12" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/engine/trampoline</text> <text xml:space="preserve" text-anchor="start" x="972.07" y="-89.12" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/engine/trampoline</text>
<text xml:space="preserve" text-anchor="middle" x="741" y="-77.88" font-family="Helvetica,sans-Serif" font-size="10.00">/py_engine.cpp</text> <text xml:space="preserve" text-anchor="middle" x="1034.7" y="-77.88" font-family="Helvetica,sans-Serif" font-size="10.00">/py_engine.cpp</text>
</a> </a>
</g> </g>
</g> </g>
@@ -329,8 +329,8 @@
<g id="edge10_Node000004_Node000010" class="edge"> <g id="edge10_Node000004_Node000010" class="edge">
<title>Node4&#45;&gt;Node10</title> <title>Node4&#45;&gt;Node10</title>
<g id="a_edge10_Node000004_Node000010"><a xlink:title=" "> <g id="a_edge10_Node000004_Node000010"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M688.64,-204.92C701.51,-197.21 714.34,-187.2 723,-174.75 738.13,-152.99 741.03,-121.2 741.32,-102.87"/> <path fill="none" stroke="#63b8ff" d="M982.34,-204.92C995.21,-197.21 1008.04,-187.2 1016.7,-174.75 1031.83,-152.99 1034.73,-121.2 1035.02,-102.87"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="687.21,-201.7 680.18,-209.63 690.62,-207.82 687.21,-201.7"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="980.91,-201.7 973.88,-209.63 984.32,-207.82 980.91,-201.7"/>
</a> </a>
</g> </g>
</g> </g>
@@ -338,9 +338,9 @@
<g id="Node000011" class="node"> <g id="Node000011" class="node">
<title>Node11</title> <title>Node11</title>
<g id="a_Node000011"><a xlink:href="py__engine_8h.html" target="_top" xlink:title=" "> <g id="a_Node000011"><a xlink:href="py__engine_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="713.62,-174.75 572.38,-174.75 572.38,-144.25 713.62,-144.25 713.62,-174.75"/> <polygon fill="white" stroke="#666666" points="1007.32,-174.75 866.07,-174.75 866.07,-144.25 1007.32,-144.25 1007.32,-174.75"/>
<text xml:space="preserve" text-anchor="start" x="580.38" y="-161.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/engine/trampoline</text> <text xml:space="preserve" text-anchor="start" x="874.07" y="-161.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/engine/trampoline</text>
<text xml:space="preserve" text-anchor="middle" x="643" y="-150" font-family="Helvetica,sans-Serif" font-size="10.00">/py_engine.h</text> <text xml:space="preserve" text-anchor="middle" x="936.7" y="-150" font-family="Helvetica,sans-Serif" font-size="10.00">/py_engine.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -348,8 +348,8 @@
<g id="edge11_Node000004_Node000011" class="edge"> <g id="edge11_Node000004_Node000011" class="edge">
<title>Node4&#45;&gt;Node11</title> <title>Node4&#45;&gt;Node11</title>
<g id="a_edge11_Node000004_Node000011"><a xlink:title=" "> <g id="a_edge11_Node000004_Node000011"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M643,-199.06C643,-190.89 643,-182.16 643,-175.08"/> <path fill="none" stroke="#63b8ff" d="M936.7,-199.06C936.7,-190.89 936.7,-182.16 936.7,-175.08"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="639.5,-198.85 643,-208.85 646.5,-198.85 639.5,-198.85"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="933.2,-198.85 936.7,-208.85 940.2,-198.85 933.2,-198.85"/>
</a> </a>
</g> </g>
</g> </g>
@@ -357,9 +357,9 @@
<g id="Node000012" class="node"> <g id="Node000012" class="node">
<title>Node12</title> <title>Node12</title>
<g id="a_Node000012"><a xlink:href="py__policy_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000012"><a xlink:href="py__policy_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="908.12,-174.75 769.88,-174.75 769.88,-144.25 908.12,-144.25 908.12,-174.75"/> <polygon fill="white" stroke="#666666" points="1201.82,-174.75 1063.57,-174.75 1063.57,-144.25 1201.82,-144.25 1201.82,-174.75"/>
<text xml:space="preserve" text-anchor="start" x="777.88" y="-161.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/policy/trampoline</text> <text xml:space="preserve" text-anchor="start" x="1071.57" 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="839" y="-150" font-family="Helvetica,sans-Serif" font-size="10.00">/py_policy.cpp</text> <text xml:space="preserve" text-anchor="middle" x="1132.7" y="-150" font-family="Helvetica,sans-Serif" font-size="10.00">/py_policy.cpp</text>
</a> </a>
</g> </g>
</g> </g>
@@ -367,8 +367,8 @@
<g id="edge14_Node000004_Node000012" class="edge"> <g id="edge14_Node000004_Node000012" class="edge">
<title>Node4&#45;&gt;Node12</title> <title>Node4&#45;&gt;Node12</title>
<g id="a_edge14_Node000004_Node000012"><a xlink:title=" "> <g id="a_edge14_Node000004_Node000012"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M698.33,-206.79C728.7,-196.8 765.86,-184.57 794.36,-175.19"/> <path fill="none" stroke="#63b8ff" d="M992.03,-206.79C1022.4,-196.8 1059.56,-184.57 1088.06,-175.19"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="697.32,-203.44 688.91,-209.89 699.51,-210.09 697.32,-203.44"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="991.02,-203.44 982.61,-209.89 993.21,-210.09 991.02,-203.44"/>
</a> </a>
</g> </g>
</g> </g>
@@ -376,10 +376,10 @@
<g id="Node000006" class="node"> <g id="Node000006" class="node">
<title>Node6</title> <title>Node6</title>
<g id="a_Node000006"><a xlink:href="gridfire__context_8h.html" target="_top" xlink:title=" "> <g id="a_Node000006"><a xlink:href="gridfire__context_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="441.25,-108.25 330.75,-108.25 330.75,-66.5 441.25,-66.5 441.25,-108.25"/> <polygon fill="white" stroke="#666666" points="734.95,-108.25 624.45,-108.25 624.45,-66.5 734.95,-66.5 734.95,-108.25"/>
<text xml:space="preserve" text-anchor="start" x="338.75" y="-94.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/extern/include</text> <text xml:space="preserve" text-anchor="start" x="632.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="338.75" y="-83.5" font-family="Helvetica,sans-Serif" font-size="10.00">/gridfire/extern/gridfire</text> <text xml:space="preserve" text-anchor="start" x="632.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="386" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">_context.h</text> <text xml:space="preserve" text-anchor="middle" x="679.7" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">_context.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -387,8 +387,8 @@
<g id="edge5_Node000005_Node000006" class="edge"> <g id="edge5_Node000005_Node000006" class="edge">
<title>Node5&#45;&gt;Node6</title> <title>Node5&#45;&gt;Node6</title>
<g id="a_edge5_Node000005_Node000006"><a xlink:title=" "> <g id="a_edge5_Node000005_Node000006"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M442.35,-136.56C431.95,-127.67 420.01,-117.46 409.81,-108.74"/> <path fill="none" stroke="#63b8ff" d="M736.05,-136.56C725.65,-127.67 713.71,-117.46 703.51,-108.74"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="439.98,-139.15 449.86,-142.99 444.53,-133.83 439.98,-139.15"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="733.68,-139.15 743.56,-142.99 738.23,-133.83 733.68,-139.15"/>
</a> </a>
</g> </g>
</g> </g>
@@ -396,9 +396,9 @@
<g id="Node000008" class="node"> <g id="Node000008" class="node">
<title>Node8</title> <title>Node8</title>
<g id="a_Node000008"><a xlink:href="gridfire__extern_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000008"><a xlink:href="gridfire__extern_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="521.25,-30.5 416.75,-30.5 416.75,0 521.25,0 521.25,-30.5"/> <polygon fill="white" stroke="#666666" points="814.95,-30.5 710.45,-30.5 710.45,0 814.95,0 814.95,-30.5"/>
<text xml:space="preserve" text-anchor="start" x="424.75" y="-17" font-family="Helvetica,sans-Serif" font-size="10.00">src/extern/lib/gridfire</text> <text xml:space="preserve" text-anchor="start" x="718.45" y="-17" font-family="Helvetica,sans-Serif" font-size="10.00">src/extern/lib/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="469" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">_extern.cpp</text> <text xml:space="preserve" text-anchor="middle" x="762.7" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">_extern.cpp</text>
</a> </a>
</g> </g>
</g> </g>
@@ -406,8 +406,8 @@
<g id="edge8_Node000005_Node000008" class="edge"> <g id="edge8_Node000005_Node000008" class="edge">
<title>Node5&#45;&gt;Node8</title> <title>Node5&#45;&gt;Node8</title>
<g id="a_edge8_Node000005_Node000008"><a xlink:title=" "> <g id="a_edge8_Node000005_Node000008"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M468.18,-132.6C468.39,-102.68 468.73,-54.53 468.9,-30.65"/> <path fill="none" stroke="#63b8ff" d="M761.88,-132.6C762.09,-102.68 762.43,-54.53 762.6,-30.65"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="464.68,-132.27 468.11,-142.3 471.68,-132.32 464.68,-132.27"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="758.38,-132.27 761.81,-142.3 765.38,-132.32 758.38,-132.27"/>
</a> </a>
</g> </g>
</g> </g>
@@ -415,9 +415,9 @@
<g id="Node000007" class="node"> <g id="Node000007" class="node">
<title>Node7</title> <title>Node7</title>
<g id="a_Node000007"><a xlink:href="gridfire__context_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000007"><a xlink:href="gridfire__context_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="398.25,-30.5 293.75,-30.5 293.75,0 398.25,0 398.25,-30.5"/> <polygon fill="white" stroke="#666666" points="691.95,-30.5 587.45,-30.5 587.45,0 691.95,0 691.95,-30.5"/>
<text xml:space="preserve" text-anchor="start" x="301.75" y="-17" font-family="Helvetica,sans-Serif" font-size="10.00">src/extern/lib/gridfire</text> <text xml:space="preserve" text-anchor="start" x="595.45" y="-17" font-family="Helvetica,sans-Serif" font-size="10.00">src/extern/lib/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="346" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">_context.cpp</text> <text xml:space="preserve" text-anchor="middle" x="639.7" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">_context.cpp</text>
</a> </a>
</g> </g>
</g> </g>
@@ -425,8 +425,8 @@
<g id="edge6_Node000006_Node000007" class="edge"> <g id="edge6_Node000006_Node000007" class="edge">
<title>Node6&#45;&gt;Node7</title> <title>Node6&#45;&gt;Node7</title>
<g id="a_edge6_Node000006_Node000007"><a xlink:title=" "> <g id="a_edge6_Node000006_Node000007"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M368.88,-56.36C363.81,-47.47 358.48,-38.13 354.24,-30.7"/> <path fill="none" stroke="#63b8ff" d="M662.58,-56.36C657.51,-47.47 652.18,-38.13 647.94,-30.7"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="365.69,-57.83 373.68,-64.78 371.77,-54.36 365.69,-57.83"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="659.39,-57.83 667.38,-64.78 665.47,-54.36 659.39,-57.83"/>
</a> </a>
</g> </g>
</g> </g>
@@ -434,8 +434,8 @@
<g id="edge7_Node000006_Node000008" class="edge"> <g id="edge7_Node000006_Node000008" class="edge">
<title>Node6&#45;&gt;Node8</title> <title>Node6&#45;&gt;Node8</title>
<g id="a_edge7_Node000006_Node000008"><a xlink:title=" "> <g id="a_edge7_Node000006_Node000008"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M418.76,-58.7C429.99,-49.21 442.11,-38.97 451.64,-30.92"/> <path fill="none" stroke="#63b8ff" d="M712.45,-58.7C723.69,-49.21 735.81,-38.97 745.34,-30.92"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="416.54,-55.99 411.16,-65.12 421.06,-61.33 416.54,-55.99"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="710.24,-55.99 704.86,-65.12 714.76,-61.33 710.24,-55.99"/>
</a> </a>
</g> </g>
</g> </g>
@@ -443,8 +443,8 @@
<g id="edge12_Node000011_Node000009" class="edge"> <g id="edge12_Node000011_Node000009" class="edge">
<title>Node11&#45;&gt;Node9</title> <title>Node11&#45;&gt;Node9</title>
<g id="a_edge12_Node000011_Node000009"><a xlink:title=" "> <g id="a_edge12_Node000011_Node000009"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M621.3,-135.79C608.71,-122.61 593.56,-106.76 584.37,-97.13"/> <path fill="none" stroke="#63b8ff" d="M915,-135.79C902.41,-122.61 887.26,-106.76 878.07,-97.13"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="618.63,-138.06 628.07,-142.88 623.69,-133.23 618.63,-138.06"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="912.33,-138.06 921.77,-142.88 917.39,-133.23 912.33,-138.06"/>
</a> </a>
</g> </g>
</g> </g>
@@ -452,8 +452,8 @@
<g id="edge13_Node000011_Node000010" class="edge"> <g id="edge13_Node000011_Node000010" class="edge">
<title>Node11&#45;&gt;Node10</title> <title>Node11&#45;&gt;Node10</title>
<g id="a_edge13_Node000011_Node000010"><a xlink:title=" "> <g id="a_edge13_Node000011_Node000010"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M672.52,-137.37C688.09,-126.23 706.8,-112.85 720.72,-102.89"/> <path fill="none" stroke="#63b8ff" d="M966.22,-137.37C981.79,-126.23 1000.5,-112.85 1014.42,-102.89"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="670.63,-134.42 664.54,-143.09 674.71,-140.12 670.63,-134.42"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="964.33,-134.42 958.24,-143.09 968.41,-140.12 964.33,-134.42"/>
</a> </a>
</g> </g>
</g> </g>
@@ -461,8 +461,8 @@
<g id="edge16_Node000013_Node000014" class="edge"> <g id="edge16_Node000013_Node000014" class="edge">
<title>Node13&#45;&gt;Node14</title> <title>Node13&#45;&gt;Node14</title>
<g id="a_edge16_Node000013_Node000014"><a xlink:title=" "> <g id="a_edge16_Node000013_Node000014"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M530.43,-501.38C574.15,-489.33 631.77,-473.46 675.68,-461.37"/> <path fill="none" stroke="#63b8ff" d="M553.8,-502C558.49,-501 563.16,-500.07 567.7,-499.25 712.04,-473.3 751.57,-490.35 895.7,-463.25 898.58,-462.71 901.5,-462.11 904.45,-461.48"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="529.52,-498 520.81,-504.03 531.38,-504.75 529.52,-498"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="553.35,-498.52 544.36,-504.12 554.88,-505.35 553.35,-498.52"/>
</a> </a>
</g> </g>
</g> </g>
@@ -470,8 +470,8 @@
<g id="edge18_Node000013_Node000015" class="edge"> <g id="edge18_Node000013_Node000015" class="edge">
<title>Node13&#45;&gt;Node15</title> <title>Node13&#45;&gt;Node15</title>
<g id="a_edge18_Node000013_Node000015"><a xlink:title=" "> <g id="a_edge18_Node000013_Node000015"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M398.55,-501.84C394.65,-500.94 390.78,-500.07 387,-499.25 298.73,-480.11 195.19,-462.13 134.01,-451.96"/> <path fill="none" stroke="#63b8ff" d="M447.27,-499.75C419.5,-486.77 383.52,-469.94 358.11,-458.06"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="397.56,-505.21 408.1,-504.1 399.18,-498.39 397.56,-505.21"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="445.55,-502.81 456.09,-503.88 448.52,-496.47 445.55,-502.81"/>
</a> </a>
</g> </g>
</g> </g>
@@ -479,9 +479,9 @@
<g id="Node000016" class="node"> <g id="Node000016" class="node">
<title>Node16</title> <title>Node16</title>
<g id="a_Node000016"><a xlink:href="priming_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000016"><a xlink:href="priming_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="390.38,-457.62 265.62,-457.62 265.62,-427.12 390.38,-427.12 390.38,-457.62"/> <polygon fill="white" stroke="#666666" points="256.07,-457.62 131.32,-457.62 131.32,-427.12 256.07,-427.12 256.07,-457.62"/>
<text xml:space="preserve" text-anchor="start" x="273.62" y="-444.12" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/engine/procedures</text> <text xml:space="preserve" text-anchor="start" x="139.32" y="-444.12" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/engine/procedures</text>
<text xml:space="preserve" text-anchor="middle" x="328" y="-432.88" font-family="Helvetica,sans-Serif" font-size="10.00">/priming.cpp</text> <text xml:space="preserve" text-anchor="middle" x="193.7" y="-432.88" font-family="Helvetica,sans-Serif" font-size="10.00">/priming.cpp</text>
</a> </a>
</g> </g>
</g> </g>
@@ -489,8 +489,8 @@
<g id="edge19_Node000013_Node000016" class="edge"> <g id="edge19_Node000013_Node000016" class="edge">
<title>Node13&#45;&gt;Node16</title> <title>Node13&#45;&gt;Node16</title>
<g id="a_edge19_Node000013_Node000016"><a xlink:title=" "> <g id="a_edge19_Node000013_Node000016"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M429.41,-499.04C405.86,-486.11 375.79,-469.61 354.53,-457.94"/> <path fill="none" stroke="#63b8ff" d="M416.57,-501.69C372.6,-490.92 315.31,-476.64 264.7,-463.25 258.51,-461.61 252.03,-459.86 245.61,-458.09"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="427.62,-502.05 438.07,-503.79 430.98,-495.91 427.62,-502.05"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="415.72,-505.08 426.26,-504.06 417.38,-498.28 415.72,-505.08"/>
</a> </a>
</g> </g>
</g> </g>
@@ -498,9 +498,9 @@
<g id="Node000017" class="node"> <g id="Node000017" class="node">
<title>Node17</title> <title>Node17</title>
<g id="a_Node000017"><a xlink:href="engine__multiscale_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000017"><a xlink:href="engine__multiscale_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="619.88,-379.88 504.12,-379.88 504.12,-349.38 619.88,-349.38 619.88,-379.88"/> <polygon fill="white" stroke="#666666" points="497.57,-379.88 381.82,-379.88 381.82,-349.38 497.57,-349.38 497.57,-379.88"/>
<text xml:space="preserve" text-anchor="start" x="512.12" y="-366.38" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/engine/views</text> <text xml:space="preserve" text-anchor="start" x="389.82" y="-366.38" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/engine/views</text>
<text xml:space="preserve" text-anchor="middle" x="562" y="-355.12" font-family="Helvetica,sans-Serif" font-size="10.00">/engine_multiscale.cpp</text> <text xml:space="preserve" text-anchor="middle" x="439.7" y="-355.12" font-family="Helvetica,sans-Serif" font-size="10.00">/engine_multiscale.cpp</text>
</a> </a>
</g> </g>
</g> </g>
@@ -508,8 +508,8 @@
<g id="edge20_Node000013_Node000017" class="edge"> <g id="edge20_Node000013_Node000017" class="edge">
<title>Node13&#45;&gt;Node17</title> <title>Node13&#45;&gt;Node17</title>
<g id="a_edge20_Node000013_Node000017"><a xlink:title=" "> <g id="a_edge20_Node000013_Node000017"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M513.5,-499.06C528.59,-490.3 543.75,-478.48 553,-463.25 568.73,-437.36 566.94,-400.27 564.38,-380.08"/> <path fill="none" stroke="#63b8ff" d="M517.22,-496.99C526.9,-487.73 536.57,-476.12 541.7,-463.25 548.57,-446.01 551.16,-437.46 541.7,-421.5 530.17,-402.04 509.21,-388.92 489.27,-380.31"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="512.12,-495.83 504.99,-503.67 515.45,-501.99 512.12,-495.83"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="515.07,-494.21 509.94,-503.48 519.73,-499.43 515.07,-494.21"/>
</a> </a>
</g> </g>
</g> </g>
@@ -517,8 +517,8 @@
<g id="edge17_Node000014_Node000004" class="edge"> <g id="edge17_Node000014_Node000004" class="edge">
<title>Node14&#45;&gt;Node4</title> <title>Node14&#45;&gt;Node4</title>
<g id="a_edge17_Node000014_Node000004"><a xlink:title=" "> <g id="a_edge17_Node000014_Node000004"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M727.02,-410.79C705.62,-363.98 665.57,-276.38 649.72,-241.69"/> <path fill="none" stroke="#63b8ff" d="M975.66,-409.95C976.92,-402 978.06,-393.46 978.7,-385.5 980.18,-367 981.89,-362.03 978.7,-343.75 972.04,-305.55 953.98,-263.35 943.85,-241.66"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="723.81,-412.19 731.15,-419.83 730.18,-409.28 723.81,-412.19"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="972.26,-409.1 974.03,-419.54 979.16,-410.27 972.26,-409.1"/>
</a> </a>
</g> </g>
</g> </g>
@@ -526,8 +526,8 @@
<g id="edge27_Node000018_Node000015" class="edge"> <g id="edge27_Node000018_Node000015" class="edge">
<title>Node18&#45;&gt;Node15</title> <title>Node18&#45;&gt;Node15</title>
<g id="a_edge27_Node000018_Node000015"><a xlink:title=" "> <g id="a_edge27_Node000018_Node000015"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M141.23,-491.91C127.01,-480.45 111.03,-467.58 99.11,-457.96"/> <path fill="none" stroke="#63b8ff" d="M206.94,-494.34C235.11,-482.35 267.97,-468.37 292.14,-458.08"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="138.65,-494.33 148.63,-497.88 143.04,-488.88 138.65,-494.33"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="205.62,-491.1 197.79,-498.23 208.37,-497.54 205.62,-491.1"/>
</a> </a>
</g> </g>
</g> </g>
@@ -535,8 +535,8 @@
<g id="edge28_Node000018_Node000016" class="edge"> <g id="edge28_Node000018_Node000016" class="edge">
<title>Node18&#45;&gt;Node16</title> <title>Node18&#45;&gt;Node16</title>
<g id="a_edge28_Node000018_Node000016"><a xlink:title=" "> <g id="a_edge28_Node000018_Node000016"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M226.06,-493.85C250.14,-481.92 278.02,-468.12 298.53,-457.96"/> <path fill="none" stroke="#63b8ff" d="M166.46,-489.23C172.9,-478.38 179.89,-466.62 185.17,-457.73"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="224.77,-490.58 217.36,-498.15 227.87,-496.85 224.77,-490.58"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="163.63,-487.14 161.53,-497.52 169.65,-490.71 163.63,-487.14"/>
</a> </a>
</g> </g>
</g> </g>
@@ -544,9 +544,9 @@
<g id="Node000019" class="node"> <g id="Node000019" class="node">
<title>Node19</title> <title>Node19</title>
<g id="a_Node000019"><a xlink:href="engine_2scratchpads_2formatters_8h.html" target="_top" xlink:title=" "> <g id="a_Node000019"><a xlink:href="engine_2scratchpads_2formatters_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="349.62,-379.88 190.38,-379.88 190.38,-349.38 349.62,-349.38 349.62,-379.88"/> <polygon fill="white" stroke="#666666" points="180.32,-379.88 21.07,-379.88 21.07,-349.38 180.32,-349.38 180.32,-379.88"/>
<text xml:space="preserve" text-anchor="start" x="198.38" y="-366.38" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="29.07" y="-366.38" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="270" y="-355.12" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/scratchpads/formatters.h</text> <text xml:space="preserve" text-anchor="middle" x="100.7" y="-355.12" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/scratchpads/formatters.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -554,8 +554,8 @@
<g id="edge22_Node000018_Node000019" class="edge"> <g id="edge22_Node000018_Node000019" class="edge">
<title>Node18&#45;&gt;Node19</title> <title>Node18&#45;&gt;Node19</title>
<g id="a_edge22_Node000018_Node000019"><a xlink:title=" "> <g id="a_edge22_Node000018_Node000019"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M188.13,-488.69C197.17,-468.93 210.03,-442.96 224,-421.5 233.73,-406.55 246.82,-390.99 256.55,-380.1"/> <path fill="none" stroke="#63b8ff" d="M110.24,-491.43C101.92,-483.37 94.26,-473.84 89.7,-463.25 77.84,-435.68 87.48,-399.87 94.67,-380.19"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="185.04,-487.03 184.14,-497.58 191.43,-489.89 185.04,-487.03"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="107.78,-493.92 117.56,-497.98 112.44,-488.7 107.78,-493.92"/>
</a> </a>
</g> </g>
</g> </g>
@@ -563,9 +563,9 @@
<g id="Node000020" class="node"> <g id="Node000020" class="node">
<title>Node20</title> <title>Node20</title>
<g id="a_Node000020"><a xlink:href="scratchpads_8h.html" target="_top" xlink:title="Unified header for the scratchpad memory management system."> <g id="a_Node000020"><a xlink:href="scratchpads_8h.html" target="_top" xlink:title="Unified header for the scratchpad memory management system.">
<polygon fill="white" stroke="#666666" points="421.12,-307.75 252.88,-307.75 252.88,-277.25 421.12,-277.25 421.12,-307.75"/> <polygon fill="white" stroke="#666666" points="275.82,-307.75 107.57,-307.75 107.57,-277.25 275.82,-277.25 275.82,-307.75"/>
<text xml:space="preserve" text-anchor="start" x="260.88" y="-294.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="115.57" y="-294.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="middle" x="337" y="-283" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/scratchpads/scratchpads.h</text> <text xml:space="preserve" text-anchor="middle" x="191.7" y="-283" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/scratchpads/scratchpads.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -573,8 +573,8 @@
<g id="edge26_Node000018_Node000020" class="edge"> <g id="edge26_Node000018_Node000020" class="edge">
<title>Node18&#45;&gt;Node20</title> <title>Node18&#45;&gt;Node20</title>
<g id="a_edge26_Node000018_Node000020"><a xlink:title=" "> <g id="a_edge26_Node000018_Node000020"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M166.21,-487.9C157.5,-449.82 149.56,-385.39 181,-343.75 198.06,-321.16 225.42,-308.53 252.51,-301.55"/> <path fill="none" stroke="#63b8ff" d="M102.74,-492.97C48.67,-458.85 -28.87,-397.2 11.7,-343.75 23.86,-327.73 66.47,-315.44 107.18,-307.02"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="162.74,-488.47 168.53,-497.35 169.54,-486.8 162.74,-488.47"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="100.89,-495.94 111.23,-498.22 104.56,-489.99 100.89,-495.94"/>
</a> </a>
</g> </g>
</g> </g>
@@ -582,8 +582,8 @@
<g id="edge29_Node000018_Node000022" class="edge"> <g id="edge29_Node000018_Node000022" class="edge">
<title>Node18&#45;&gt;Node22</title> <title>Node18&#45;&gt;Node22</title>
<g id="a_edge29_Node000018_Node000022"><a xlink:title=" "> <g id="a_edge29_Node000018_Node000022"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M200.77,-490.31C208.34,-481.69 216.59,-472.15 224,-463.25 239.14,-445.07 237.76,-435.25 257,-421.5 296.11,-393.54 314.5,-403.69 359,-385.5 419.8,-360.64 488.96,-327.08 527.02,-308.12"/> <path fill="none" stroke="#63b8ff" d="M128.67,-489.27C117.57,-468.66 108.6,-441.48 122.7,-421.5 141.23,-395.25 337.92,-335.42 432.48,-307.87"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="198.17,-487.96 194.18,-497.77 203.42,-492.59 198.17,-487.96"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="125.56,-490.89 133.61,-497.77 131.61,-487.37 125.56,-490.89"/>
</a> </a>
</g> </g>
</g> </g>
@@ -591,8 +591,8 @@
<g id="edge23_Node000019_Node000020" class="edge"> <g id="edge23_Node000019_Node000020" class="edge">
<title>Node19&#45;&gt;Node20</title> <title>Node19&#45;&gt;Node20</title>
<g id="a_edge23_Node000019_Node000020"><a xlink:title=" "> <g id="a_edge23_Node000019_Node000020"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M291.71,-340.91C302.03,-330.1 314.07,-317.5 323.14,-308.01"/> <path fill="none" stroke="#63b8ff" d="M128.53,-342.18C142.9,-331.1 160.06,-317.88 172.87,-308.01"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="289.31,-338.35 284.93,-348 294.37,-343.19 289.31,-338.35"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="126.54,-339.29 120.75,-348.17 130.81,-344.84 126.54,-339.29"/>
</a> </a>
</g> </g>
</g> </g>
@@ -600,8 +600,8 @@
<g id="edge24_Node000020_Node000004" class="edge"> <g id="edge24_Node000020_Node000004" class="edge">
<title>Node20&#45;&gt;Node4</title> <title>Node20&#45;&gt;Node4</title>
<g id="a_edge24_Node000020_Node000004"><a xlink:title=" "> <g id="a_edge24_Node000020_Node000004"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M417.85,-274.46C474.21,-262.58 547.51,-247.13 594.9,-237.14"/> <path fill="none" stroke="#63b8ff" d="M287.38,-283.22C448.26,-269.29 767.26,-241.67 888.45,-231.18"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="417.36,-270.98 408.3,-276.47 418.81,-277.83 417.36,-270.98"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="287.24,-279.72 277.58,-284.06 287.85,-286.69 287.24,-279.72"/>
</a> </a>
</g> </g>
</g> </g>
@@ -609,9 +609,9 @@
<g id="Node000021" class="node"> <g id="Node000021" class="node">
<title>Node21</title> <title>Node21</title>
<g id="a_Node000021"><a xlink:href="engine_2scratchpads_2bindings_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000021"><a xlink:href="engine_2scratchpads_2bindings_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="411.75,-241.25 262.25,-241.25 262.25,-210.75 411.75,-210.75 411.75,-241.25"/> <polygon fill="white" stroke="#666666" points="266.45,-241.25 116.95,-241.25 116.95,-210.75 266.45,-210.75 266.45,-241.25"/>
<text xml:space="preserve" text-anchor="start" x="270.25" y="-227.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/engine/scratchpads</text> <text xml:space="preserve" text-anchor="start" x="124.95" y="-227.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/engine/scratchpads</text>
<text xml:space="preserve" text-anchor="middle" x="337" y="-216.5" font-family="Helvetica,sans-Serif" font-size="10.00">/bindings.cpp</text> <text xml:space="preserve" text-anchor="middle" x="191.7" y="-216.5" font-family="Helvetica,sans-Serif" font-size="10.00">/bindings.cpp</text>
</a> </a>
</g> </g>
</g> </g>
@@ -619,8 +619,8 @@
<g id="edge25_Node000020_Node000021" class="edge"> <g id="edge25_Node000020_Node000021" class="edge">
<title>Node20&#45;&gt;Node21</title> <title>Node20&#45;&gt;Node21</title>
<g id="a_edge25_Node000020_Node000021"><a xlink:title=" "> <g id="a_edge25_Node000020_Node000021"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M337,-265.56C337,-257.39 337,-248.66 337,-241.58"/> <path fill="none" stroke="#63b8ff" d="M191.7,-265.56C191.7,-257.39 191.7,-248.66 191.7,-241.58"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="333.5,-265.35 337,-275.35 340.5,-265.35 333.5,-265.35"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="188.2,-265.35 191.7,-275.35 195.2,-265.35 188.2,-265.35"/>
</a> </a>
</g> </g>
</g> </g>
@@ -628,10 +628,10 @@
<g id="Node000024" class="node"> <g id="Node000024" class="node">
<title>Node24</title> <title>Node24</title>
<g id="a_Node000024"><a xlink:href="engine__priming_8h.html" target="_top" xlink:title=" "> <g id="a_Node000024"><a xlink:href="engine__priming_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="1129.75,-463.25 1022.25,-463.25 1022.25,-421.5 1129.75,-421.5 1129.75,-463.25"/> <polygon fill="white" stroke="#666666" points="886.45,-463.25 778.95,-463.25 778.95,-421.5 886.45,-421.5 886.45,-463.25"/>
<text xml:space="preserve" text-anchor="start" x="1030.25" y="-449.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="786.95" y="-449.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="start" x="1030.25" y="-438.5" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/views/engine</text> <text xml:space="preserve" text-anchor="start" x="786.95" y="-438.5" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/views/engine</text>
<text xml:space="preserve" text-anchor="middle" x="1076" y="-427.25" font-family="Helvetica,sans-Serif" font-size="10.00">_priming.h</text> <text xml:space="preserve" text-anchor="middle" x="832.7" y="-427.25" font-family="Helvetica,sans-Serif" font-size="10.00">_priming.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -639,8 +639,8 @@
<g id="edge31_Node000023_Node000024" class="edge"> <g id="edge31_Node000023_Node000024" class="edge">
<title>Node23&#45;&gt;Node24</title> <title>Node23&#45;&gt;Node24</title>
<g id="a_edge31_Node000023_Node000024"><a xlink:title=" "> <g id="a_edge31_Node000023_Node000024"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M996.47,-492.76C1011.8,-483.24 1028.85,-472.65 1043.22,-463.73"/> <path fill="none" stroke="#63b8ff" d="M810,-488.62C814.2,-480.25 818.65,-471.38 822.49,-463.73"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="994.63,-489.78 987.98,-498.03 998.32,-495.73 994.63,-489.78"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="806.92,-486.96 805.56,-497.47 813.17,-490.1 806.92,-486.96"/>
</a> </a>
</g> </g>
</g> </g>
@@ -648,10 +648,10 @@
<g id="Node000025" class="node"> <g id="Node000025" class="node">
<title>Node25</title> <title>Node25</title>
<g id="a_Node000025"><a xlink:href="engine__views_8h.html" target="_top" xlink:title=" "> <g id="a_Node000025"><a xlink:href="engine__views_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="887.75,-385.5 780.25,-385.5 780.25,-343.75 887.75,-343.75 887.75,-385.5"/> <polygon fill="white" stroke="#666666" points="848.45,-385.5 740.95,-385.5 740.95,-343.75 848.45,-343.75 848.45,-385.5"/>
<text xml:space="preserve" text-anchor="start" x="788.25" y="-372" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="748.95" y="-372" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="start" x="788.25" y="-360.75" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/views/engine</text> <text xml:space="preserve" text-anchor="start" x="748.95" y="-360.75" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/views/engine</text>
<text xml:space="preserve" text-anchor="middle" x="834" y="-349.5" font-family="Helvetica,sans-Serif" font-size="10.00">_views.h</text> <text xml:space="preserve" text-anchor="middle" x="794.7" y="-349.5" font-family="Helvetica,sans-Serif" font-size="10.00">_views.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -659,8 +659,8 @@
<g id="edge36_Node000023_Node000025" class="edge"> <g id="edge36_Node000023_Node000025" class="edge">
<title>Node23&#45;&gt;Node25</title> <title>Node23&#45;&gt;Node25</title>
<g id="a_edge36_Node000023_Node000025"><a xlink:title=" "> <g id="a_edge36_Node000023_Node000025"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M971.68,-488.99C981.21,-468.43 988.52,-441.4 975,-421.5 955.62,-392.97 919.15,-379.01 888.16,-372.17"/> <path fill="none" stroke="#63b8ff" d="M778.25,-488.53C774.72,-480.53 771.52,-471.75 769.7,-463.25 765.83,-445.1 765.83,-439.65 769.7,-421.5 772.34,-409.13 777.93,-396.19 783.15,-385.88"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="968.64,-487.23 967.27,-497.74 974.9,-490.38 968.64,-487.23"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="775.06,-489.97 782.5,-497.5 781.38,-486.97 775.06,-489.97"/>
</a> </a>
</g> </g>
</g> </g>
@@ -668,8 +668,8 @@
<g id="edge37_Node000023_Node000027" class="edge"> <g id="edge37_Node000023_Node000027" class="edge">
<title>Node23&#45;&gt;Node27</title> <title>Node23&#45;&gt;Node27</title>
<g id="a_edge37_Node000023_Node000027"><a xlink:title=" "> <g id="a_edge37_Node000023_Node000027"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M938.04,-488.9C932.36,-478.14 926.23,-466.53 921.58,-457.73"/> <path fill="none" stroke="#63b8ff" d="M859.7,-499.99C860.71,-499.74 861.71,-499.49 862.7,-499.25 942.36,-479.73 964.35,-483.99 1043.7,-463.25 1049.63,-461.7 1055.82,-459.9 1061.9,-458.03"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="934.81,-490.28 942.57,-497.49 941,-487.01 934.81,-490.28"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="859.03,-496.55 850.24,-502.47 860.8,-503.33 859.03,-496.55"/>
</a> </a>
</g> </g>
</g> </g>
@@ -677,8 +677,8 @@
<g id="edge32_Node000024_Node000025" class="edge"> <g id="edge32_Node000024_Node000025" class="edge">
<title>Node24&#45;&gt;Node25</title> <title>Node24&#45;&gt;Node25</title>
<g id="a_edge32_Node000024_Node000025"><a xlink:title=" "> <g id="a_edge32_Node000024_Node000025"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M1011.39,-421.15C972.8,-409.07 924.35,-393.91 887.84,-382.48"/> <path fill="none" stroke="#63b8ff" d="M817.4,-410.87C813.2,-402.5 808.75,-393.63 804.91,-385.98"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="1009.96,-424.37 1020.55,-424.02 1012.05,-417.69 1009.96,-424.37"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="814.23,-412.35 821.84,-419.72 820.48,-409.21 814.23,-412.35"/>
</a> </a>
</g> </g>
</g> </g>
@@ -686,9 +686,9 @@
<g id="Node000026" class="node"> <g id="Node000026" class="node">
<title>Node26</title> <title>Node26</title>
<g id="a_Node000026"><a xlink:href="engine__priming_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000026"><a xlink:href="engine__priming_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="1127.5,-379.88 1024.5,-379.88 1024.5,-349.38 1127.5,-349.38 1127.5,-379.88"/> <polygon fill="white" stroke="#666666" points="969.2,-379.88 866.2,-379.88 866.2,-349.38 969.2,-349.38 969.2,-379.88"/>
<text xml:space="preserve" text-anchor="start" x="1032.5" y="-366.38" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/engine/views</text> <text xml:space="preserve" text-anchor="start" x="874.2" y="-366.38" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/engine/views</text>
<text xml:space="preserve" text-anchor="middle" x="1076" y="-355.12" font-family="Helvetica,sans-Serif" font-size="10.00">/engine_priming.cpp</text> <text xml:space="preserve" text-anchor="middle" x="917.7" y="-355.12" font-family="Helvetica,sans-Serif" font-size="10.00">/engine_priming.cpp</text>
</a> </a>
</g> </g>
</g> </g>
@@ -696,8 +696,8 @@
<g id="edge35_Node000024_Node000026" class="edge"> <g id="edge35_Node000024_Node000026" class="edge">
<title>Node24&#45;&gt;Node26</title> <title>Node24&#45;&gt;Node26</title>
<g id="a_edge35_Node000024_Node000026"><a xlink:title=" "> <g id="a_edge35_Node000024_Node000026"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M1076,-409.81C1076,-399.44 1076,-388.42 1076,-379.98"/> <path fill="none" stroke="#63b8ff" d="M863.96,-413.51C876.64,-402.22 890.75,-389.64 901.33,-380.21"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="1072.5,-409.56 1076,-419.56 1079.5,-409.56 1072.5,-409.56"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="861.75,-410.8 856.61,-420.07 866.4,-416.03 861.75,-410.8"/>
</a> </a>
</g> </g>
</g> </g>
@@ -705,8 +705,8 @@
<g id="edge33_Node000025_Node000004" class="edge"> <g id="edge33_Node000025_Node000004" class="edge">
<title>Node25&#45;&gt;Node4</title> <title>Node25&#45;&gt;Node4</title>
<g id="a_edge33_Node000025_Node000004"><a xlink:title=" "> <g id="a_edge33_Node000025_Node000004"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M802.57,-335.93C781.98,-318.31 754.12,-295.46 728,-277.25 709.3,-264.21 687.08,-251.16 670.06,-241.62"/> <path fill="none" stroke="#63b8ff" d="M823.6,-335.82C853.35,-307.2 898.53,-263.73 921.75,-241.38"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="800.2,-338.51 810.06,-342.38 804.77,-333.2 800.2,-338.51"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="821.52,-332.96 816.74,-342.42 826.38,-338 821.52,-332.96"/>
</a> </a>
</g> </g>
</g> </g>
@@ -714,26 +714,26 @@
<g id="edge34_Node000025_Node000022" class="edge"> <g id="edge34_Node000025_Node000022" class="edge">
<title>Node25&#45;&gt;Node22</title> <title>Node25&#45;&gt;Node22</title>
<g id="a_edge34_Node000025_Node000022"><a xlink:title=" "> <g id="a_edge34_Node000025_Node000022"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M769.1,-347.25C719.34,-334.7 651.66,-317.63 606.04,-306.12"/> <path fill="none" stroke="#63b8ff" d="M729.7,-344.5C728.69,-344.25 727.69,-344 726.7,-343.75 660.17,-327.21 582.49,-311.89 532.97,-302.62"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="768.05,-350.6 778.6,-349.65 769.76,-343.81 768.05,-350.6"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="728.59,-347.83 739.15,-347 730.38,-341.06 728.59,-347.83"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node28&#45;&gt;Node17 --> <!-- Node28&#45;&gt;Node17 -->
<g id="edge45_Node000028_Node000017" class="edge"> <g id="edge47_Node000028_Node000017" class="edge">
<title>Node28&#45;&gt;Node17</title> <title>Node28&#45;&gt;Node17</title>
<g id="a_edge45_Node000028_Node000017"><a xlink:title=" "> <g id="a_edge47_Node000028_Node000017"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M602.47,-487.81C598.68,-468.46 593.06,-443.26 586,-421.5 581.31,-407.04 574.3,-391.17 569.07,-380.05"/> <path fill="none" stroke="#63b8ff" d="M614.04,-489.1C601.15,-468.01 581.64,-440.33 558.7,-421.5 536.64,-403.4 507.76,-389.66 483.97,-380.33"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="599.01,-488.35 604.31,-497.53 605.89,-487.05 599.01,-488.35"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="610.95,-490.74 619.06,-497.55 616.97,-487.16 610.95,-490.74"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node28&#45;&gt;Node25 --> <!-- Node28&#45;&gt;Node25 -->
<g id="edge44_Node000028_Node000025" class="edge"> <g id="edge45_Node000028_Node000025" class="edge">
<title>Node28&#45;&gt;Node25</title> <title>Node28&#45;&gt;Node25</title>
<g id="a_edge44_Node000028_Node000025"><a xlink:title=" "> <g id="a_edge45_Node000028_Node000025"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M673.19,-505.15C730.09,-492.38 805.09,-473.9 815,-463.25 834.41,-442.4 836.69,-407.87 835.86,-385.96"/> <path fill="none" stroke="#63b8ff" d="M660.36,-491.36C692.82,-460.98 744.08,-413 772.99,-385.94"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="672.56,-501.71 663.56,-507.3 674.08,-508.54 672.56,-501.71"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="658.15,-488.63 653.24,-498.02 662.94,-493.75 658.15,-488.63"/>
</a> </a>
</g> </g>
</g> </g>
@@ -741,10 +741,10 @@
<g id="Node000029" class="node"> <g id="Node000029" class="node">
<title>Node29</title> <title>Node29</title>
<g id="a_Node000029"><a xlink:href="engine__multiscale__scratchpad_8h.html" target="_top" xlink:title="Scratchpad implementation for the MultiscalePartitioningEngineView."> <g id="a_Node000029"><a xlink:href="engine__multiscale__scratchpad_8h.html" target="_top" xlink:title="Scratchpad implementation for the MultiscalePartitioningEngineView.">
<polygon fill="white" stroke="#666666" points="543.62,-463.25 408.38,-463.25 408.38,-421.5 543.62,-421.5 543.62,-463.25"/> <polygon fill="white" stroke="#666666" points="532.32,-463.25 397.07,-463.25 397.07,-421.5 532.32,-421.5 532.32,-463.25"/>
<text xml:space="preserve" text-anchor="start" x="416.38" y="-449.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text> <text xml:space="preserve" text-anchor="start" x="405.07" y="-449.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/gridfire</text>
<text xml:space="preserve" text-anchor="start" x="416.38" y="-438.5" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/scratchpads/engine</text> <text xml:space="preserve" text-anchor="start" x="405.07" y="-438.5" font-family="Helvetica,sans-Serif" font-size="10.00">/engine/scratchpads/engine</text>
<text xml:space="preserve" text-anchor="middle" x="476" y="-427.25" font-family="Helvetica,sans-Serif" font-size="10.00">_multiscale_scratchpad.h</text> <text xml:space="preserve" text-anchor="middle" x="464.7" y="-427.25" font-family="Helvetica,sans-Serif" font-size="10.00">_multiscale_scratchpad.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -752,17 +752,36 @@
<g id="edge39_Node000028_Node000029" class="edge"> <g id="edge39_Node000028_Node000029" class="edge">
<title>Node28&#45;&gt;Node29</title> <title>Node28&#45;&gt;Node29</title>
<g id="a_edge39_Node000028_Node000029"><a xlink:title=" "> <g id="a_edge39_Node000028_Node000029"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M562.99,-493.3C546.17,-483.64 527.32,-472.82 511.47,-463.73"/> <path fill="none" stroke="#63b8ff" d="M575.87,-494.11C554.28,-484.25 529.79,-473.08 509.31,-463.73"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="560.9,-496.13 571.31,-498.07 564.38,-490.06 560.9,-496.13"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="574.29,-497.23 584.84,-498.2 577.19,-490.86 574.29,-497.23"/>
</a>
</g>
</g>
<!-- Node30 -->
<g id="Node000030" class="node">
<title>Node30</title>
<g id="a_Node000030"><a xlink:href="engine__multiscale__scratchpad_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="684.2,-379.88 515.2,-379.88 515.2,-349.38 684.2,-349.38 684.2,-379.88"/>
<text xml:space="preserve" text-anchor="start" x="523.2" y="-366.38" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/engine/scratchpads</text>
<text xml:space="preserve" text-anchor="middle" x="599.7" y="-355.12" font-family="Helvetica,sans-Serif" font-size="10.00">/engine_multiscale_scratchpad.cpp</text>
</a>
</g>
</g>
<!-- Node28&#45;&gt;Node30 -->
<g id="edge46_Node000028_Node000030" class="edge">
<title>Node28&#45;&gt;Node30</title>
<g id="a_edge46_Node000028_Node000030"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M625.3,-487.77C621.9,-468.59 617.3,-443.58 612.7,-421.5 609.77,-407.46 606.03,-391.54 603.31,-380.29"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="621.81,-488.14 626.99,-497.39 628.71,-486.93 621.81,-488.14"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node29&#45;&gt;Node17 --> <!-- Node29&#45;&gt;Node17 -->
<g id="edge42_Node000029_Node000017" class="edge"> <g id="edge43_Node000029_Node000017" class="edge">
<title>Node29&#45;&gt;Node17</title> <title>Node29&#45;&gt;Node17</title>
<g id="a_edge42_Node000029_Node000017"><a xlink:title=" "> <g id="a_edge43_Node000029_Node000017"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M507.63,-413.51C520.45,-402.22 534.73,-389.64 545.44,-380.21"/> <path fill="none" stroke="#63b8ff" d="M454.39,-410.15C450.94,-399.68 447.25,-388.51 444.44,-379.98"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="505.37,-410.84 500.18,-420.07 510,-416.09 505.37,-410.84"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="451.07,-411.24 457.53,-419.64 457.72,-409.04 451.07,-411.24"/>
</a> </a>
</g> </g>
</g> </g>
@@ -770,8 +789,8 @@
<g id="edge40_Node000029_Node000019" class="edge"> <g id="edge40_Node000029_Node000019" class="edge">
<title>Node29&#45;&gt;Node19</title> <title>Node29&#45;&gt;Node19</title>
<g id="a_edge40_Node000029_Node000019"><a xlink:title=" "> <g id="a_edge40_Node000029_Node000019"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M410.32,-417.22C377.34,-405.1 338.46,-390.8 310,-380.33"/> <path fill="none" stroke="#63b8ff" d="M385.82,-420.9C311.34,-404.17 235.99,-389.8 180.75,-379.73"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="408.78,-420.39 419.38,-420.55 411.2,-413.82 408.78,-420.39"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="384.8,-424.26 395.32,-423.05 386.34,-417.43 384.8,-424.26"/>
</a> </a>
</g> </g>
</g> </g>
@@ -779,17 +798,26 @@
<g id="edge41_Node000029_Node000020" class="edge"> <g id="edge41_Node000029_Node000020" class="edge">
<title>Node29&#45;&gt;Node20</title> <title>Node29&#45;&gt;Node20</title>
<g id="a_edge41_Node000029_Node000020"><a xlink:title=" "> <g id="a_edge41_Node000029_Node000020"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M449.13,-412.79C419.69,-381.47 373.62,-332.45 350.78,-308.16"/> <path fill="none" stroke="#63b8ff" d="M417.39,-415.75C359.96,-384.64 265.05,-333.23 218.77,-308.16"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="446.53,-415.13 455.93,-420.02 451.63,-410.34 446.53,-415.13"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="415.52,-418.72 425.98,-420.4 418.86,-412.56 415.52,-418.72"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node29&#45;&gt;Node22 --> <!-- Node29&#45;&gt;Node22 -->
<g id="edge43_Node000029_Node000022" class="edge"> <g id="edge44_Node000029_Node000022" class="edge">
<title>Node29&#45;&gt;Node22</title> <title>Node29&#45;&gt;Node22</title>
<g id="a_edge43_Node000029_Node000022"><a xlink:title=" "> <g id="a_edge44_Node000029_Node000022"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M476.74,-409.89C478.46,-389.75 483.09,-363.75 495,-343.75 503.7,-329.13 518.29,-316.88 531.01,-308.14"/> <path fill="none" stroke="#63b8ff" d="M402.05,-415.38C390.3,-407.56 379.57,-397.71 372.7,-385.5 363.6,-369.33 362.67,-359.36 372.7,-343.75 385.98,-323.08 410.1,-310.81 432.37,-303.58"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="473.25,-409.56 476.11,-419.77 480.24,-410.01 473.25,-409.56"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="399.98,-418.22 410.34,-420.44 403.63,-412.25 399.98,-418.22"/>
</a>
</g>
</g>
<!-- Node29&#45;&gt;Node30 -->
<g id="edge42_Node000029_Node000030" class="edge">
<title>Node29&#45;&gt;Node30</title>
<g id="a_edge42_Node000029_Node000030"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M510.89,-415.46C531.88,-403.68 555.92,-390.19 573.7,-380.21"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="509.21,-412.39 502.2,-420.33 512.63,-418.49 509.21,-412.39"/>
</a> </a>
</g> </g>
</g> </g>

Before

Width:  |  Height:  |  Size: 41 KiB

After

Width:  |  Height:  |  Size: 43 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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>

View File

@@ -1,170 +1,172 @@
<map id="src/lib/policy/chains.cpp" name="src/lib/policy/chains.cpp"> <map id="src/lib/policy/chains.cpp" name="src/lib/policy/chains.cpp">
<area shape="rect" id="Node000001" title=" " alt="" coords="1737,5,1899,31"/> <area shape="rect" id="Node000001" title=" " alt="" coords="959,5,1121,31"/>
<area shape="rect" id="Node000002" href="$policy__abstract_8h.html" title="Abstract policy interfaces used to construct reaction networks (DynamicEngine) from seed compositions..." alt="" coords="1683,241,1819,282"/> <area shape="rect" id="Node000002" href="$policy__abstract_8h.html" title="Abstract policy interfaces used to construct reaction networks (DynamicEngine) from seed compositions..." alt="" coords="972,241,1108,282"/>
<area shape="poly" id="edge1_Node000001_Node000002" title=" " alt="" coords="1768,33,1726,51,1676,75,1630,110,1611,130,1595,154,1588,173,1595,192,1609,209,1627,223,1671,245,1665,245,1625,227,1606,213,1590,195,1583,173,1590,151,1606,127,1626,106,1673,71,1724,46,1773,31"/> <area shape="poly" id="edge1_Node000001_Node000002" title=" " alt="" coords="1006,33,979,53,965,65,954,80,952,91,955,104,967,138,983,171,1018,229,1013,228,978,174,962,140,949,105,946,91,950,78,961,62,975,48,1011,30"/>
<area shape="rect" id="Node000052" href="$policy__logical_8h.html" title=" " alt="" coords="1604,153,1741,193"/> <area shape="rect" id="Node000053" href="$policy__logical_8h.html" title=" " alt="" coords="85,153,222,193"/>
<area shape="poly" id="edge96_Node000001_Node000052" title=" " alt="" coords="1797,30,1764,54,1732,81,1709,110,1690,141,1687,137,1704,107,1728,77,1761,50,1792,33"/> <area shape="poly" id="edge97_Node000001_Node000053" title=" " alt="" coords="957,24,552,44,353,61,282,71,241,81,222,93,204,108,176,141,171,138,200,104,219,89,239,77,281,65,352,56,552,39,961,20"/>
<area shape="rect" id="Node000053" href="$chains_8h.html" title="Concrete implementations of ReactionChainPolicy for key stellar reaction chains." alt="" coords="1742,79,1894,105"/> <area shape="rect" id="Node000054" href="$chains_8h.html" title="Concrete implementations of ReactionChainPolicy for key stellar reaction chains." alt="" coords="964,79,1116,105"/>
<area shape="poly" id="edge100_Node000001_Node000053" title=" " alt="" coords="1819,29,1820,65,1816,62,1816,33"/> <area shape="poly" id="edge101_Node000001_Node000054" title=" " alt="" coords="1041,29,1042,64,1038,62,1039,34"/>
<area shape="rect" id="Node000054" href="$error__policy_8h.html" title="Defines custom exception types related to network policy construction and verification." alt="" coords="53,588,180,629"/> <area shape="rect" id="Node000055" href="$error__policy_8h.html" title="Defines custom exception types related to network policy construction and verification." alt="" coords="1312,500,1440,540"/>
<area shape="poly" id="edge105_Node000001_Node000054" title=" " alt="" coords="1735,24,1359,44,846,76,600,97,394,120,314,133,253,146,214,160,205,166,202,172,202,426,196,469,182,510,163,547,143,577,139,575,158,544,177,508,191,467,197,425,197,171,201,163,212,155,251,141,313,127,393,115,599,91,845,71,1359,38,1740,22"/> <area shape="poly" id="edge107_Node000001_Node000055" title=" " alt="" coords="957,20,765,25,650,32,534,44,428,63,341,90,308,107,282,126,267,148,261,172,261,263,267,289,284,310,310,328,345,343,388,355,436,364,545,376,773,386,871,391,945,401,1136,449,1300,496,1295,497,1134,455,943,406,871,396,773,391,544,381,435,369,387,360,344,348,308,333,280,314,262,291,256,263,256,171,262,146,279,123,305,103,339,85,427,58,533,39,649,27,765,19,961,17"/>
<area shape="rect" id="Node000055" href="$hashing_8h.html" title=" " alt="" coords="2417,411,2565,437"/> <area shape="rect" id="Node000056" href="$hashing_8h.html" title=" " alt="" coords="2928,330,3077,356"/>
<area shape="poly" id="edge107_Node000001_Node000055" title=" " alt="" coords="1899,19,2188,29,2372,39,2560,54,2735,74,2882,99,2939,114,2982,131,3010,149,3018,160,3021,171,3021,263,3017,280,3007,296,2972,325,2920,349,2856,369,2713,399,2581,417,2580,411,2712,393,2855,364,2918,344,2969,320,3003,293,3012,278,3015,263,3015,172,3013,162,3006,153,2980,135,2937,119,2880,104,2735,79,2559,59,2371,45,2187,34,1899,24"/> <area shape="poly" id="edge109_Node000001_Node000056" title=" " alt="" coords="1114,29,2916,325,2913,329,1114,34"/>
<area shape="rect" id="Node000064" href="$reaclib_8h.html" title=" " alt="" coords="3166,160,3329,186"/> <area shape="rect" id="Node000064" href="$reaclib_8h.html" title=" " alt="" coords="3462,160,3626,186"/>
<area shape="poly" id="edge116_Node000001_Node000064" title=" " alt="" coords="1899,17,2146,19,2475,27,2801,45,2935,59,3037,76,3067,88,3095,102,3208,154,3203,153,3093,107,3065,92,3036,82,2935,64,2800,51,2475,33,2146,25,1900,22"/> <area shape="poly" id="edge118_Node000001_Node000064" title=" " alt="" coords="1121,17,1640,21,2394,31,3092,49,3330,61,3405,68,3445,76,3471,90,3494,108,3529,149,3524,147,3490,112,3468,95,3443,82,3404,74,3329,66,3092,54,2394,36,1640,26,1121,23"/>
<area shape="rect" id="Node000065" title=" " alt="" coords="3106,79,3194,105"/> <area shape="rect" id="Node000065" title=" " alt="" coords="3513,79,3602,105"/>
<area shape="poly" id="edge118_Node000001_Node000065" title=" " alt="" coords="1899,17,2107,19,2401,28,2742,46,2916,59,3088,76,3093,79,3087,79,3087,82,2916,64,2741,51,2401,33,2107,25,1900,22"/> <area shape="poly" id="edge120_Node000001_Node000065" title=" " alt="" coords="1120,17,1580,20,2268,29,2975,47,3271,60,3495,76,3500,79,3495,79,3494,82,3271,65,2975,52,2268,34,1580,25,1121,22"/>
<area shape="rect" id="Node000003" title=" " alt="" coords="3203,781,3409,806"/> <area shape="rect" id="Node000003" title=" " alt="" coords="2833,781,3039,806"/>
<area shape="poly" id="edge2_Node000002_Node000003" title=" " alt="" coords="1820,262,2393,283,2725,302,2863,314,2968,327,3047,335,3113,338,3143,344,3172,355,3202,374,3232,402,3263,445,3286,493,3302,545,3311,597,3316,694,3311,767,3307,763,3311,694,3306,597,3297,546,3281,495,3259,448,3228,405,3198,378,3170,360,3141,349,3112,343,3047,340,2967,333,2863,319,2725,308,2393,289,1820,267"/> <area shape="poly" id="edge2_Node000002_Node000003" title=" " alt="" coords="1108,261,1549,265,2199,275,2529,284,2823,295,3052,309,3132,318,3186,327,3232,338,3270,349,3302,367,3332,402,3351,440,3358,474,3353,509,3337,549,3308,596,3270,638,3227,673,3181,704,3132,729,3085,750,3001,779,3000,773,3083,745,3130,724,3178,699,3224,669,3267,634,3304,593,3332,547,3348,508,3353,474,3346,442,3327,405,3298,371,3268,353,3231,343,3185,333,3132,323,3051,315,2823,300,2529,289,2199,280,1549,270,1109,266"/>
<area shape="rect" id="Node000004" href="$reaction_8h.html" title="Defines classes for representing and managing nuclear reactions." alt="" coords="2660,692,2832,718"/> <area shape="rect" id="Node000004" href="$reaction_8h.html" title="Defines classes for representing and managing nuclear reactions." alt="" coords="2324,692,2495,718"/>
<area shape="poly" id="edge3_Node000002_Node000004" title=" " alt="" coords="1820,263,2069,277,2232,292,2403,314,2570,343,2720,382,2785,404,2840,430,2885,459,2917,491,2931,519,2929,548,2917,576,2896,603,2869,628,2840,651,2783,687,2781,682,2837,647,2866,624,2892,599,2912,573,2924,547,2925,520,2913,494,2881,463,2837,435,2783,409,2718,387,2569,348,2402,319,2231,297,2069,283,1820,268"/> <area shape="poly" id="edge3_Node000002_Node000004" title=" " alt="" coords="1108,261,2150,282,2743,302,2961,314,3090,327,3155,335,3209,341,3234,347,3257,359,3279,376,3301,402,3321,434,3334,462,3337,489,3329,515,3310,541,3277,569,3170,639,3134,651,3071,662,2892,680,2688,693,2511,702,2511,697,2687,688,2892,675,3070,656,3132,646,3168,634,3274,565,3306,537,3324,512,3332,488,3329,464,3317,437,3297,405,3275,380,3254,363,3232,352,3208,346,3155,341,3089,333,2961,319,2743,307,2150,288,1109,267"/>
<area shape="rect" id="Node000014" href="$engine__abstract_8h.html" title="Abstract interfaces for reaction network engines in GridFire." alt="" coords="1852,404,1997,444"/> <area shape="rect" id="Node000010" title=" " alt="" coords="193,781,250,806"/>
<area shape="poly" id="edge14_Node000002_Node000014" title=" " alt="" coords="1820,280,1861,300,1896,328,1913,357,1922,390,1918,387,1908,359,1892,332,1858,304,1820,285"/> <area shape="poly" id="edge93_Node000002_Node000010" title=" " alt="" coords="969,269,899,280,807,295,701,317,588,349,471,391,358,446,303,478,252,514,204,554,159,598,133,629,115,658,111,689,122,724,133,740,147,753,181,776,176,776,144,757,129,743,118,727,106,689,110,657,128,626,155,594,200,550,249,510,301,474,355,441,469,387,586,344,700,312,806,290,898,275,974,267"/>
<area shape="rect" id="Node000021" title=" " alt="" coords="347,781,401,806"/> <area shape="rect" id="Node000015" href="$engine__abstract_8h.html" title="Abstract interfaces for reaction network engines in GridFire." alt="" coords="2090,404,2235,444"/>
<area shape="poly" id="edge91_Node000002_Node000021" title=" " alt="" coords="1680,265,1353,281,1125,295,879,317,633,346,407,385,306,408,217,434,142,463,83,495,55,518,32,545,17,575,9,606,9,637,17,668,33,697,58,723,78,735,107,746,182,764,263,777,335,788,329,788,262,783,181,769,106,751,76,740,55,727,29,700,12,670,4,638,4,605,12,573,28,542,51,514,80,490,140,458,216,429,305,403,406,379,633,341,878,311,1124,290,1352,275,1685,264"/> <area shape="poly" id="edge15_Node000002_Node000015" title=" " alt="" coords="1108,262,1296,269,1539,282,1779,301,1878,313,1953,327,2041,358,2118,396,2112,396,2039,363,1951,333,1877,319,1778,307,1539,287,1295,275,1109,268"/>
<area shape="rect" id="Node000033" href="$blob_8h.html" title="Container class for managing multiple scratchpad instances." alt="" coords="1441,492,1619,533"/> <area shape="rect" id="Node000017" title=" " alt="" coords="2052,604,2110,629"/>
<area shape="poly" id="edge95_Node000002_Node000033" title=" " alt="" coords="1723,281,1693,306,1664,332,1630,369,1599,409,1551,481,1548,477,1595,406,1626,366,1660,328,1690,302,1719,284"/> <area shape="poly" id="edge92_Node000002_Node000017" title=" " alt="" coords="1108,265,1261,283,1359,300,1466,322,1579,351,1693,388,1804,434,1908,490,1925,504,1936,517,1945,531,1960,546,2001,573,2042,597,2037,596,1998,577,1957,550,1941,535,1931,521,1921,507,1905,495,1801,439,1691,393,1577,356,1465,327,1358,305,1261,289,1109,271"/>
<area shape="rect" id="Node000041" href="$partition_8h.html" title=" " alt="" coords="936,492,1046,533"/> <area shape="rect" id="Node000023" title=" " alt="" coords="1164,692,1217,718"/>
<area shape="poly" id="edge57_Node000002_Node000041" title=" " alt="" coords="1694,282,1062,491,1061,486,1689,283"/> <area shape="poly" id="edge90_Node000002_Node000023" title=" " alt="" coords="1038,280,1033,332,1031,401,1040,476,1051,513,1068,546,1083,563,1101,571,1120,579,1141,594,1168,636,1185,679,1180,676,1163,638,1137,598,1118,583,1099,576,1080,568,1063,550,1046,515,1035,477,1026,401,1027,332,1035,285"/>
<area shape="rect" id="Node000049" href="$logging_8h.html" title=" " alt="" coords="1738,330,1882,356"/> <area shape="rect" id="Node000034" href="$blob_8h.html" title="Container class for managing multiple scratchpad instances." alt="" coords="1718,500,1895,540"/>
<area shape="poly" id="edge85_Node000002_Node000049" title=" " alt="" coords="1767,280,1794,318,1789,317,1765,285"/> <area shape="poly" id="edge96_Node000002_Node000034" title=" " alt="" coords="1108,279,1289,332,1505,401,1747,494,1742,494,1503,406,1287,337,1108,285"/>
<area shape="rect" id="Node000050" title=" " alt="" coords="1674,330,1714,356"/> <area shape="rect" id="Node000042" href="$partition_8h.html" title=" " alt="" coords="822,404,932,444"/>
<area shape="poly" id="edge92_Node000002_Node000050" title=" " alt="" coords="1739,281,1713,319,1710,315,1735,284"/> <area shape="poly" id="edge56_Node000002_Node000042" title=" " alt="" coords="1012,281,953,332,901,393,898,389,949,328,1008,284"/>
<area shape="rect" id="Node000051" href="$engine__types_8h.html" title=" " alt="" coords="3079,404,3218,444"/> <area shape="rect" id="Node000050" href="$logging_8h.html" title=" " alt="" coords="2056,330,2200,356"/>
<area shape="poly" id="edge93_Node000002_Node000051" title=" " alt="" coords="1819,262,2051,267,2367,279,2681,298,2811,312,2909,327,2960,341,3010,358,3099,397,3093,397,3009,363,2959,346,2908,333,2810,317,2680,304,2366,284,2051,273,1820,267"/> <area shape="poly" id="edge84_Node000002_Node000050" title=" " alt="" coords="1108,264,1496,288,2020,327,2043,332,2038,332,2020,333,1496,293,1109,269"/>
<area shape="poly" id="edge6_Node000004_Node000003" title=" " alt="" coords="2829,716,3192,771,3221,778,3216,778,3191,776,2829,721"/> <area shape="rect" id="Node000051" title=" " alt="" coords="963,330,1002,356"/>
<area shape="rect" id="Node000005" title=" " alt="" coords="2704,781,2764,806"/> <area shape="poly" id="edge91_Node000002_Node000051" title=" " alt="" coords="1028,281,1002,319,999,315,1024,284"/>
<area shape="poly" id="edge4_Node000004_Node000005" title=" " alt="" coords="2746,717,2739,768,2736,764,2742,720"/> <area shape="rect" id="Node000052" href="$engine__types_8h.html" title=" " alt="" coords="144,685,282,725"/>
<area shape="rect" id="Node000006" title=" " alt="" coords="3092,781,3179,806"/> <area shape="poly" id="edge94_Node000002_Node000052" title=" " alt="" coords="969,281,865,313,729,358,582,419,509,455,440,495,380,538,325,587,241,674,238,670,321,583,377,534,437,490,506,450,579,414,727,353,864,308,974,279"/>
<area shape="poly" id="edge5_Node000004_Node000006" title=" " alt="" coords="2820,716,2943,739,3080,771,3090,776,3085,775,3079,776,2942,744,2820,721"/> <area shape="poly" id="edge6_Node000004_Node000003" title=" " alt="" coords="2484,716,2850,778,2844,778,2483,721"/>
<area shape="rect" id="Node000007" title=" " alt="" coords="837,781,999,806"/> <area shape="rect" id="Node000005" title=" " alt="" coords="2383,781,2444,806"/>
<area shape="poly" id="edge7_Node000004_Node000007" title=" " alt="" coords="2663,712,2446,728,2065,742,1768,747,1471,754,1090,776,1015,783,1014,778,1090,771,1471,749,1768,741,2064,737,2446,723,2657,713"/> <area shape="poly" id="edge4_Node000004_Node000005" title=" " alt="" coords="2412,716,2414,767,2410,763,2408,720"/>
<area shape="rect" id="Node000008" title=" " alt="" coords="2209,781,2307,806"/> <area shape="rect" id="Node000006" title=" " alt="" coords="308,781,396,806"/>
<area shape="poly" id="edge8_Node000004_Node000008" title=" " alt="" coords="2680,718,2322,784,2322,778,2674,719"/> <area shape="poly" id="edge5_Node000004_Node000006" title=" " alt="" coords="2320,708,1311,736,752,755,547,766,426,776,408,779,407,774,425,771,546,760,751,750,1311,731,2326,708"/>
<area shape="rect" id="Node000009" title=" " alt="" coords="1588,781,1698,806"/> <area shape="rect" id="Node000007" title=" " alt="" coords="438,781,600,806"/>
<area shape="poly" id="edge9_Node000004_Node000009" title=" " alt="" coords="2663,713,1714,789,1714,784,2657,713"/> <area shape="poly" id="edge7_Node000004_Node000007" title=" " alt="" coords="2323,713,616,791,615,785,2323,708"/>
<area shape="rect" id="Node000010" title=" " alt="" coords="2496,781,2553,806"/> <area shape="rect" id="Node000008" title=" " alt="" coords="2135,781,2233,806"/>
<area shape="poly" id="edge10_Node000004_Node000010" title=" " alt="" coords="2713,718,2566,776,2563,777,2562,772,2564,771,2707,719"/> <area shape="poly" id="edge8_Node000004_Node000008" title=" " alt="" coords="2380,718,2230,778,2229,772,2375,719"/>
<area shape="rect" id="Node000011" title=" " alt="" coords="2577,781,2680,806"/> <area shape="rect" id="Node000009" title=" " alt="" coords="1760,781,1870,806"/>
<area shape="poly" id="edge11_Node000004_Node000011" title=" " alt="" coords="2732,717,2658,774,2657,769,2727,719"/> <area shape="poly" id="edge9_Node000004_Node000009" title=" " alt="" coords="2328,718,1886,785,1885,779,2323,719"/>
<area shape="rect" id="Node000012" title=" " alt="" coords="2947,781,3067,806"/> <area shape="poly" id="edge10_Node000004_Node000010" title=" " alt="" coords="2321,709,1204,742,602,761,296,776,266,782,265,777,296,771,602,756,1204,737,2326,708"/>
<area shape="poly" id="edge12_Node000004_Node000012" title=" " alt="" coords="2783,716,2959,776,2954,775,2782,721"/> <area shape="rect" id="Node000011" title=" " alt="" coords="2256,781,2360,806"/>
<area shape="rect" id="Node000013" title=" " alt="" coords="2788,773,2923,814"/> <area shape="poly" id="edge11_Node000004_Node000011" title=" " alt="" coords="2398,717,2334,773,2332,769,2393,719"/>
<area shape="poly" id="edge13_Node000004_Node000013" title=" " alt="" coords="2762,716,2821,765,2816,763,2760,721"/> <area shape="rect" id="Node000012" title=" " alt="" coords="3202,781,3268,806"/>
<area shape="poly" id="edge15_Node000014_Node000004" title=" " alt="" coords="1997,425,2124,430,2276,442,2419,461,2476,474,2519,490,2546,515,2586,561,2650,635,2716,684,2710,683,2647,639,2582,565,2542,519,2516,495,2475,479,2418,466,2275,447,2124,435,1997,430"/> <area shape="poly" id="edge12_Node000004_Node000012" title=" " alt="" coords="2495,713,3189,787,3183,787,2495,718"/>
<area shape="poly" id="edge54_Node000014_Node000009" title=" " alt="" coords="1904,444,1841,505,1771,583,1736,632,1704,683,1657,769,1654,764,1700,680,1731,629,1766,579,1837,501,1899,446"/> <area shape="rect" id="Node000013" title=" " alt="" coords="2472,781,2592,806"/>
<area shape="poly" id="edge53_Node000014_Node000010" title=" " alt="" coords="1997,427,2059,434,2130,446,2205,464,2276,490,2314,508,2341,526,2395,579,2434,628,2468,679,2515,768,2510,766,2463,682,2429,631,2391,583,2338,531,2311,513,2274,495,2203,469,2129,451,2058,439,1997,432"/> <area shape="poly" id="edge13_Node000004_Node000013" title=" " alt="" coords="2427,716,2505,772,2500,771,2426,721"/>
<area shape="rect" id="Node000015" href="$types_2types_8h.html" title=" " alt="" coords="2957,692,3100,718"/> <area shape="rect" id="Node000014" title=" " alt="" coords="2642,773,2777,814"/>
<area shape="poly" id="edge16_Node000014_Node000015" title=" " alt="" coords="1997,423,2116,426,2270,436,2441,456,2528,471,2612,490,2659,506,2718,530,2820,579,2919,633,3000,684,2995,683,2916,637,2818,583,2716,535,2657,511,2611,495,2527,476,2440,461,2269,441,2115,431,1997,428"/> <area shape="poly" id="edge14_Node000004_Node000014" title=" " alt="" coords="2452,716,2629,769,2624,768,2451,721"/>
<area shape="rect" id="Node000016" href="$screening__abstract_8h.html" title=" " alt="" coords="2661,588,2807,629"/> <area shape="poly" id="edge16_Node000015_Node000004" title=" " alt="" coords="2186,442,2257,508,2338,594,2371,638,2397,680,2392,678,2366,641,2334,598,2253,511,2184,447"/>
<area shape="poly" id="edge19_Node000014_Node000016" title=" " alt="" coords="1997,426,2132,434,2296,447,2451,465,2515,477,2563,490,2696,580,2691,579,2561,495,2514,482,2450,470,2295,452,2132,439,1998,431"/> <area shape="poly" id="edge51_Node000015_Node000009" title=" " alt="" coords="2154,444,2125,495,2085,550,2022,618,1954,682,1843,774,1841,769,1951,678,2018,615,2081,546,2120,492,2150,446"/>
<area shape="rect" id="Node000017" href="$screening__types_8h.html" title=" " alt="" coords="2375,492,2506,533"/> <area shape="poly" id="edge50_Node000015_Node000010" title=" " alt="" coords="2088,429,1158,462,668,481,439,495,338,525,296,539,258,556,224,577,193,604,163,639,134,686,128,705,134,724,155,751,184,773,178,773,152,755,130,727,123,705,130,684,159,636,189,600,221,572,256,551,294,534,336,520,438,490,668,476,1158,457,2092,426"/>
<area shape="poly" id="edge24_Node000014_Node000017" title=" " alt="" coords="1997,432,2162,457,2357,490,2363,493,2357,493,2356,495,2161,462,1997,438"/> <area shape="poly" id="edge54_Node000015_Node000012" title=" " alt="" coords="2235,422,2362,424,2529,433,2716,454,2810,470,2902,490,3016,515,3065,527,3110,542,3149,563,3185,591,3216,631,3244,684,3250,705,3251,727,3245,768,3241,764,3246,727,3244,706,3239,686,3212,634,3181,595,3146,567,3108,547,3064,532,3015,520,2901,495,2809,475,2715,459,2529,439,2362,429,2235,427"/>
<area shape="rect" id="Node000019" href="$reporting_8h.html" title=" " alt="" coords="2295,685,2434,725"/> <area shape="rect" id="Node000016" href="$types_2types_8h.html" title=" " alt="" coords="2511,507,2654,533"/>
<area shape="poly" id="edge27_Node000014_Node000019" title=" " alt="" coords="1997,434,2100,455,2157,471,2212,490,2298,527,2342,552,2359,566,2371,580,2380,602,2382,625,2377,671,2373,668,2377,625,2374,603,2366,582,2356,570,2339,557,2295,532,2210,495,2156,476,2099,461,1997,439"/> <area shape="poly" id="edge17_Node000015_Node000016" title=" " alt="" coords="2235,436,2356,459,2493,490,2532,503,2527,502,2491,495,2355,464,2235,441"/>
<area shape="rect" id="Node000024" href="$jacobian_8h.html" title="Wrapper for handling the network Jacobian matrix in GridFire. Currently uses Eigen&#39;s SparseMatrix." alt="" coords="2061,492,2199,533"/> <area shape="poly" id="edge55_Node000015_Node000017" title=" " alt="" coords="2162,443,2153,494,2133,549,2103,594,2101,589,2128,547,2147,492,2158,447"/>
<area shape="poly" id="edge30_Node000014_Node000024" title=" " alt="" coords="1972,442,2072,486,2067,486,1971,447"/> <area shape="rect" id="Node000018" href="$screening__abstract_8h.html" title=" " alt="" coords="2399,596,2545,637"/>
<area shape="rect" id="Node000025" title=" " alt="" coords="2020,588,2181,629"/> <area shape="poly" id="edge21_Node000015_Node000018" title=" " alt="" coords="2235,431,2359,453,2414,469,2435,479,2450,490,2464,511,2472,534,2477,582,2473,579,2467,535,2459,513,2446,494,2432,484,2412,474,2358,458,2235,436"/>
<area shape="poly" id="edge52_Node000014_Node000025" title=" " alt="" coords="1910,443,1896,466,1885,488,1881,511,1888,531,1903,541,1934,554,2020,584,2014,583,1932,559,1901,546,1884,535,1876,511,1880,486,1891,463,1905,446"/> <area shape="rect" id="Node000019" href="$screening__types_8h.html" title=" " alt="" coords="2305,500,2436,540"/>
<area shape="rect" id="Node000030" href="$error__engine_8h.html" title=" " alt="" coords="205,588,332,629"/> <area shape="poly" id="edge26_Node000015_Node000019" title=" " alt="" coords="2207,442,2316,493,2311,493,2206,448"/>
<area shape="poly" id="edge36_Node000014_Node000030" title=" " alt="" coords="1850,426,1487,433,980,444,732,452,520,464,366,478,319,486,295,495,282,511,274,531,268,574,263,572,269,529,278,508,292,490,317,481,365,472,519,458,732,447,980,438,1487,428,1855,425"/> <area shape="rect" id="Node000021" href="$reporting_8h.html" title=" " alt="" coords="2186,596,2324,637"/>
<area shape="poly" id="edge39_Node000014_Node000033" title=" " alt="" coords="1855,441,1634,491,1633,486,1850,442"/> <area shape="poly" id="edge29_Node000015_Node000021" title=" " alt="" coords="2174,443,2241,583,2236,581,2171,447"/>
<area shape="rect" id="Node000039" title=" " alt="" coords="1567,596,1642,622"/> <area shape="rect" id="Node000026" href="$jacobian_8h.html" title="Wrapper for handling the network Jacobian matrix in GridFire. Currently uses Eigen&#39;s SparseMatrix." alt="" coords="2751,500,2889,540"/>
<area shape="poly" id="edge56_Node000014_Node000039" title=" " alt="" coords="1855,433,1771,456,1729,472,1690,495,1667,514,1648,537,1618,584,1615,579,1643,534,1664,510,1687,490,1726,468,1769,451,1850,434"/> <area shape="poly" id="edge32_Node000015_Node000026" title=" " alt="" coords="2235,428,2454,450,2588,467,2722,490,2740,496,2735,496,2721,495,2587,472,2454,455,2236,433"/>
<area shape="rect" id="Node000040" title=" " alt="" coords="1898,500,1951,526"/> <area shape="rect" id="Node000027" title=" " alt="" coords="2670,596,2831,637"/>
<area shape="poly" id="edge55_Node000014_Node000040" title=" " alt="" coords="1926,443,1927,486,1922,483,1923,447"/> <area shape="poly" id="edge49_Node000015_Node000027" title=" " alt="" coords="2235,425,2345,431,2471,443,2587,462,2634,475,2668,490,2692,509,2712,532,2740,583,2735,580,2707,536,2688,513,2665,495,2632,480,2586,467,2470,448,2344,437,2236,430"/>
<area shape="poly" id="edge18_Node000015_Node000012" title=" " alt="" coords="3028,717,3016,768,3012,764,3024,720"/> <area shape="rect" id="Node000031" href="$error__engine_8h.html" title=" " alt="" coords="1567,500,1694,540"/>
<area shape="poly" id="edge17_Node000015_Node000013" title=" " alt="" coords="3007,718,2909,769,2907,764,3002,719"/> <area shape="poly" id="edge39_Node000015_Node000031" title=" " alt="" coords="2088,432,1914,455,1810,473,1706,495,1697,497,1696,492,1705,490,1809,467,1913,450,2093,431"/>
<area shape="poly" id="edge21_Node000016_Node000003" title=" " alt="" coords="2807,611,2882,617,2971,630,3066,651,3158,682,3194,701,3229,724,3285,771,3280,769,3226,728,3192,706,3156,687,3065,656,2971,635,2882,623,2807,616"/> <area shape="poly" id="edge42_Node000015_Node000034" title=" " alt="" coords="2093,444,1897,498,1896,493,2088,445"/>
<area shape="poly" id="edge20_Node000016_Node000004" title=" " alt="" coords="2738,628,2745,679,2740,675,2735,632"/> <area shape="rect" id="Node000040" title=" " alt="" coords="1903,604,1977,629"/>
<area shape="poly" id="edge23_Node000016_Node000010" title=" " alt="" coords="2714,629,2551,773,2549,768,2709,631"/> <area shape="poly" id="edge53_Node000015_Node000040" title=" " alt="" coords="2145,444,2095,494,2067,523,2038,550,1972,597,1970,593,2034,546,2064,519,2091,490,2140,446"/>
<area shape="poly" id="edge22_Node000016_Node000012" title=" " alt="" coords="2764,627,2979,773,2974,771,2762,632"/> <area shape="rect" id="Node000041" title=" " alt="" coords="1971,507,2024,533"/>
<area shape="poly" id="edge25_Node000017_Node000016" title=" " alt="" coords="2502,531,2661,584,2655,583,2502,536"/> <area shape="poly" id="edge52_Node000015_Node000041" title=" " alt="" coords="2130,444,2044,495,2032,502,2030,497,2041,490,2125,446"/>
<area shape="rect" id="Node000018" title=" " alt="" coords="1102,781,1171,806"/> <area shape="poly" id="edge19_Node000016_Node000013" title=" " alt="" coords="2583,532,2539,767,2535,764,2578,535"/>
<area shape="poly" id="edge26_Node000017_Node000018" title=" " alt="" coords="2450,531,2465,573,2475,625,2476,653,2472,680,2463,705,2447,728,2399,734,2278,742,1901,761,1187,793,1186,788,1901,756,2278,736,2398,728,2445,723,2459,702,2467,678,2471,652,2470,626,2460,574,2448,536"/> <area shape="poly" id="edge18_Node000016_Node000014" title=" " alt="" coords="2590,531,2696,761,2692,758,2587,536"/>
<area shape="poly" id="edge29_Node000019_Node000013" title=" " alt="" coords="2434,713,2586,737,2775,773,2770,772,2585,742,2434,719"/> <area shape="poly" id="edge20_Node000016_Node000017" title=" " alt="" coords="2525,533,2448,551,2174,599,2126,608,2126,603,2173,593,2448,545,2520,534"/>
<area shape="poly" id="edge28_Node000019_Node000021" title=" " alt="" coords="2295,712,416,793,416,788,2295,707"/> <area shape="poly" id="edge23_Node000018_Node000003" title=" " alt="" coords="2524,635,2892,775,2887,775,2523,640"/>
<area shape="poly" id="edge31_Node000024_Node000003" title=" " alt="" coords="2199,517,2548,549,2820,578,2934,595,3024,607,3066,616,3110,631,3158,652,3211,682,3236,701,3259,723,3293,769,3288,767,3255,727,3233,705,3208,687,3155,657,3108,636,3065,621,3023,612,2933,600,2819,584,2547,555,2199,523"/> <area shape="poly" id="edge22_Node000018_Node000004" title=" " alt="" coords="2460,636,2428,682,2425,677,2455,638"/>
<area shape="poly" id="edge33_Node000024_Node000008" title=" " alt="" coords="2200,529,2292,555,2328,568,2346,579,2355,594,2357,608,2347,638,2333,655,2316,664,2300,671,2285,686,2269,727,2261,768,2257,764,2264,725,2281,683,2297,667,2314,659,2330,651,2342,635,2351,608,2350,596,2343,583,2325,573,2290,560,2199,534"/> <area shape="poly" id="edge25_Node000018_Node000010" title=" " alt="" coords="2401,628,2336,639,2026,671,1784,692,1229,728,1087,735,966,738,761,739,557,746,437,757,296,776,266,782,265,777,296,771,437,752,557,741,761,734,966,733,1087,730,1229,723,1783,686,2025,666,2336,634,2396,629"/>
<area shape="poly" id="edge35_Node000024_Node000009" title=" " alt="" coords="2157,531,2179,553,2195,580,2204,610,2203,624,2195,638,2162,666,2113,692,2052,714,1982,734,1838,765,1714,786,1713,780,1837,760,1981,729,2050,709,2111,687,2159,662,2190,635,2198,622,2199,610,2190,582,2174,556,2155,536"/> <area shape="poly" id="edge24_Node000018_Node000013" title=" " alt="" coords="2485,635,2509,684,2522,727,2530,768,2526,764,2517,728,2504,686,2482,639"/>
<area shape="poly" id="edge32_Node000024_Node000025" title=" " alt="" coords="2126,532,2113,576,2109,572,2122,535"/> <area shape="poly" id="edge27_Node000019_Node000018" title=" " alt="" coords="2393,538,2443,586,2438,585,2391,543"/>
<area shape="rect" id="Node000028" title=" " alt="" coords="2255,596,2333,622"/> <area shape="rect" id="Node000020" title=" " alt="" coords="684,692,753,718"/>
<area shape="poly" id="edge34_Node000024_Node000028" title=" " alt="" coords="2165,531,2262,588,2257,587,2164,536"/> <area shape="poly" id="edge28_Node000019_Node000020" title=" " alt="" coords="2307,540,2241,567,2175,598,2160,609,2151,620,2140,630,2123,639,1532,670,769,704,768,699,1532,665,2122,634,2137,626,2147,616,2157,605,2172,594,2239,562,2302,541"/>
<area shape="rect" id="Node000031" href="$error__gridfire_8h.html" title=" " alt="" coords="158,685,286,725"/> <area shape="poly" id="edge31_Node000021_Node000014" title=" " alt="" coords="2325,629,2413,651,2508,682,2594,722,2668,766,2663,765,2591,727,2506,687,2412,656,2324,634"/>
<area shape="poly" id="edge37_Node000030_Node000031" title=" " alt="" coords="261,628,240,672,236,669,257,631"/> <area shape="poly" id="edge30_Node000021_Node000023" title=" " alt="" coords="2188,633,2167,639,2006,653,1730,673,1233,704,1232,698,1730,667,2006,648,2166,634,2183,634"/>
<area shape="poly" id="edge38_Node000031_Node000021" title=" " alt="" coords="257,723,342,773,337,773,256,728"/> <area shape="poly" id="edge33_Node000026_Node000003" title=" " alt="" coords="2874,538,2911,561,2927,577,2940,595,2955,639,2958,686,2954,730,2946,768,2942,764,2949,730,2953,686,2950,640,2935,597,2923,580,2907,566,2872,544"/>
<area shape="poly" id="edge48_Node000033_Node000009" title=" " alt="" coords="1534,532,1542,581,1558,636,1592,708,1629,769,1624,767,1588,711,1553,638,1537,582,1530,536"/> <area shape="poly" id="edge35_Node000026_Node000008" title=" " alt="" coords="2846,539,2870,560,2889,586,2898,613,2896,626,2889,638,2869,654,2843,666,2777,680,2698,683,2611,680,2440,672,2367,675,2338,680,2313,687,2281,704,2251,726,2205,771,2202,766,2248,722,2278,700,2311,682,2336,675,2367,670,2440,667,2611,675,2698,678,2777,674,2841,661,2866,650,2885,635,2891,624,2893,613,2885,588,2866,564,2845,544"/>
<area shape="poly" id="edge51_Node000033_Node000011" title=" " alt="" coords="1567,531,1673,582,1739,610,1807,634,1938,670,2043,688,2148,702,2284,723,2425,744,2487,754,2565,771,2579,776,2573,776,2564,776,2486,759,2424,750,2283,728,2148,707,2042,693,1937,675,1805,639,1737,615,1671,587,1566,536"/> <area shape="poly" id="edge37_Node000026_Node000009" title=" " alt="" coords="2834,539,2846,562,2855,588,2856,615,2845,638,2830,648,2807,655,2740,666,2551,678,2359,682,2244,687,2139,708,2036,732,1869,778,1868,773,2034,727,2138,702,2244,682,2359,677,2551,672,2739,661,2806,650,2828,643,2841,635,2851,614,2850,589,2841,564,2831,543"/>
<area shape="poly" id="edge49_Node000033_Node000018" title=" " alt="" coords="1443,525,1340,550,1298,565,1272,583,1261,600,1258,617,1263,651,1270,687,1268,706,1259,727,1244,745,1226,759,1186,780,1185,775,1223,755,1240,741,1254,724,1263,705,1265,687,1258,652,1252,617,1256,598,1268,579,1295,561,1338,545,1438,526"/> <area shape="poly" id="edge38_Node000026_Node000012" title=" " alt="" coords="2861,538,2964,594,3104,689,3210,772,3205,770,3101,693,2961,598,2860,543"/>
<area shape="rect" id="Node000034" href="$scratchpad__abstract_8h.html" title="Abstract base class for scratchpad memory used during engine computations." alt="" coords="1327,685,1504,725"/> <area shape="poly" id="edge34_Node000026_Node000027" title=" " alt="" coords="2808,540,2775,586,2773,581,2803,542"/>
<area shape="poly" id="edge40_Node000033_Node000034" title=" " alt="" coords="1520,532,1436,674,1433,670,1516,535"/> <area shape="rect" id="Node000030" title=" " alt="" coords="3057,604,3135,629"/>
<area shape="rect" id="Node000035" href="$engine_2scratchpads_2types_8h.html" title="Type definitions and utilities for the scratchpad system." alt="" coords="1819,588,1996,629"/> <area shape="poly" id="edge36_Node000026_Node000030" title=" " alt="" coords="2878,538,3048,598,3043,598,2877,544"/>
<area shape="poly" id="edge42_Node000033_Node000035" title=" " alt="" coords="1609,531,1816,584,1811,584,1609,536"/> <area shape="rect" id="Node000032" href="$error__gridfire_8h.html" title=" " alt="" coords="1396,596,1524,637"/>
<area shape="rect" id="Node000037" href="$error__scratchpad_8h.html" title=" " alt="" coords="407,588,541,629"/> <area shape="poly" id="edge40_Node000031_Node000032" title=" " alt="" coords="1597,540,1510,591,1508,586,1592,542"/>
<area shape="poly" id="edge45_Node000033_Node000037" title=" " alt="" coords="1438,517,1075,538,840,557,604,584,557,592,555,586,603,578,839,551,1074,532,1443,516"/> <area shape="poly" id="edge41_Node000032_Node000023" title=" " alt="" coords="1401,637,1233,693,1232,688,1396,638"/>
<area shape="poly" id="edge50_Node000033_Node000039" title=" " alt="" coords="1546,531,1588,585,1583,583,1544,536"/> <area shape="poly" id="edge45_Node000034_Node000009" title=" " alt="" coords="1809,539,1816,767,1812,763,1805,543"/>
<area shape="poly" id="edge41_Node000034_Node000018" title=" " alt="" coords="1354,726,1186,780,1185,775,1349,726"/> <area shape="poly" id="edge48_Node000034_Node000011" title=" " alt="" coords="1817,539,1848,587,1868,612,1892,634,1947,661,2047,699,2260,776,2255,775,2045,704,1945,666,1889,639,1864,616,1843,590,1815,543"/>
<area shape="poly" id="edge44_Node000035_Node000006" title=" " alt="" coords="1974,627,2009,634,2087,638,2219,638,2571,635,2754,637,2918,644,3044,658,3087,669,3114,683,3129,701,3137,722,3140,767,3136,763,3132,723,3124,703,3111,687,3085,674,3043,663,2917,649,2754,642,2571,640,2219,643,2087,643,2008,639,1974,632"/> <area shape="poly" id="edge46_Node000034_Node000020" title=" " alt="" coords="1743,541,1654,572,1588,598,1574,609,1564,619,1553,630,1537,639,1490,650,1410,660,1188,679,768,704,768,699,1187,674,1409,655,1489,645,1535,634,1550,626,1560,616,1570,605,1585,594,1652,567,1738,542"/>
<area shape="rect" id="Node000036" title=" " alt="" coords="1732,692,1792,718"/> <area shape="rect" id="Node000035" href="$scratchpad__abstract_8h.html" title="Abstract base class for scratchpad memory used during engine computations." alt="" coords="1599,596,1777,637"/>
<area shape="poly" id="edge43_Node000035_Node000036" title=" " alt="" coords="1879,629,1794,686,1793,681,1874,631"/> <area shape="poly" id="edge43_Node000034_Node000035" title=" " alt="" coords="1785,540,1725,589,1723,584,1780,542"/>
<area shape="poly" id="edge46_Node000037_Node000021" title=" " alt="" coords="423,628,385,654,370,669,358,686,351,706,352,726,363,768,358,766,346,727,346,705,353,683,366,665,382,650,418,631"/> <area shape="poly" id="edge47_Node000034_Node000040" title=" " alt="" coords="1835,538,1913,595,1908,594,1834,543"/>
<area shape="poly" id="edge47_Node000037_Node000031" title=" " alt="" coords="419,631,290,681,288,676,423,629"/> <area shape="poly" id="edge44_Node000035_Node000020" title=" " alt="" coords="1602,634,1580,639,1343,665,1109,684,769,704,768,699,1109,679,1342,660,1580,634,1596,634"/>
<area shape="rect" id="Node000042" href="$partition__types_8h.html" title=" " alt="" coords="927,685,1048,725"/> <area shape="rect" id="Node000043" href="$partition__types_8h.html" title=" " alt="" coords="963,596,1085,637"/>
<area shape="poly" id="edge58_Node000041_Node000042" title=" " alt="" coords="993,532,990,671,986,668,989,535"/> <area shape="poly" id="edge57_Node000042_Node000043" title=" " alt="" coords="904,442,931,465,955,491,987,537,1011,583,1006,581,982,539,951,494,927,469,903,448"/>
<area shape="rect" id="Node000043" href="$partition__abstract_8h.html" title=" " alt="" coords="664,685,801,725"/> <area shape="rect" id="Node000044" href="$partition__abstract_8h.html" title=" " alt="" coords="650,596,787,637"/>
<area shape="poly" id="edge61_Node000041_Node000043" title=" " alt="" coords="938,523,871,547,838,563,808,583,788,603,771,626,747,672,743,668,767,623,784,599,804,579,835,558,869,542,933,525"/> <area shape="poly" id="edge60_Node000042_Node000044" title=" " alt="" coords="854,444,803,494,768,540,739,585,736,580,764,537,799,491,850,446"/>
<area shape="rect" id="Node000044" href="$partition__ground_8h.html" title=" " alt="" coords="1028,588,1157,629"/> <area shape="rect" id="Node000045" href="$partition__ground_8h.html" title=" " alt="" coords="813,500,942,540"/>
<area shape="poly" id="edge64_Node000041_Node000044" title=" " alt="" coords="1013,531,1063,579,1058,578,1011,536"/> <area shape="poly" id="edge63_Node000042_Node000045" title=" " alt="" coords="879,443,880,486,875,483,876,447"/>
<area shape="rect" id="Node000045" href="$partition__rauscher__thielemann_8h.html" title=" " alt="" coords="615,581,743,637"/> <area shape="rect" id="Node000046" href="$partition__rauscher__thielemann_8h.html" title=" " alt="" coords="610,492,739,548"/>
<area shape="poly" id="edge70_Node000041_Node000045" title=" " alt="" coords="933,531,763,584,759,585,757,580,761,578,938,529"/> <area shape="poly" id="edge69_Node000042_Node000046" title=" " alt="" coords="837,444,748,488,746,483,832,446"/>
<area shape="rect" id="Node000047" href="$rauscher__thielemann__partition__data__record_8h.html" title=" " alt="" coords="1282,581,1442,637"/> <area shape="rect" id="Node000048" href="$rauscher__thielemann__partition__data__record_8h.html" title=" " alt="" coords="1077,492,1238,548"/>
<area shape="poly" id="edge76_Node000041_Node000047" title=" " alt="" coords="1047,525,1269,583,1264,584,1047,531"/> <area shape="poly" id="edge75_Node000042_Node000048" title=" " alt="" coords="933,441,1065,487,1060,487,933,447"/>
<area shape="rect" id="Node000048" href="$partition__composite_8h.html" title=" " alt="" coords="818,581,954,637"/> <area shape="rect" id="Node000049" href="$partition__composite_8h.html" title=" " alt="" coords="451,492,586,548"/>
<area shape="poly" id="edge78_Node000041_Node000048" title=" " alt="" coords="972,532,929,573,926,568,967,535"/> <area shape="poly" id="edge77_Node000042_Node000049" title=" " alt="" coords="819,438,724,463,602,494,600,489,722,457,824,436"/>
<area shape="poly" id="edge59_Node000042_Node000009" title=" " alt="" coords="1049,712,1575,783,1570,783,1048,717"/> <area shape="poly" id="edge58_Node000043_Node000009" title=" " alt="" coords="1041,635,1089,681,1119,705,1153,723,1202,738,1269,751,1432,770,1604,782,1747,790,1742,790,1604,787,1432,775,1268,756,1201,743,1151,728,1116,709,1085,685,1039,640"/>
<area shape="poly" id="edge60_Node000042_Node000021" title=" " alt="" coords="927,717,417,789,416,784,925,712"/> <area shape="poly" id="edge59_Node000043_Node000023" title=" " alt="" coords="1062,635,1157,685,1151,684,1061,640"/>
<area shape="poly" id="edge63_Node000043_Node000018" title=" " alt="" coords="801,718,1090,782,1085,782,801,724"/> <area shape="poly" id="edge62_Node000044_Node000020" title=" " alt="" coords="720,635,721,678,717,675,717,639"/>
<area shape="poly" id="edge62_Node000043_Node000021" title=" " alt="" coords="667,723,416,785,415,780,661,723"/> <area shape="poly" id="edge61_Node000044_Node000023" title=" " alt="" coords="787,628,1151,696,1146,696,787,633"/>
<area shape="poly" id="edge66_Node000044_Node000007" title=" " alt="" coords="1094,628,1086,677,1076,703,1061,727,1044,744,1024,757,982,778,981,773,1022,753,1041,740,1057,724,1072,701,1081,676,1090,631"/> <area shape="poly" id="edge65_Node000045_Node000007" title=" " alt="" coords="875,539,864,582,843,633,811,685,791,708,767,728,731,748,692,763,615,784,614,778,691,758,729,743,764,723,787,704,807,682,838,631,859,580,871,542"/>
<area shape="poly" id="edge69_Node000044_Node000008" title=" " alt="" coords="1157,617,1561,682,1640,703,1720,723,1851,745,1983,762,2197,787,2191,787,1982,768,1851,750,1719,728,1639,708,1560,687,1157,623"/> <area shape="poly" id="edge68_Node000045_Node000008" title=" " alt="" coords="942,537,1134,591,1301,634,1536,683,1770,725,2122,783,2117,783,1769,730,1535,688,1299,639,1132,596,942,543"/>
<area shape="poly" id="edge67_Node000044_Node000009" title=" " alt="" coords="1157,617,1366,650,1462,668,1516,682,1566,719,1622,771,1617,769,1563,723,1514,687,1461,673,1365,655,1157,622"/> <area shape="poly" id="edge66_Node000045_Node000009" title=" " alt="" coords="888,538,915,585,953,635,985,667,1013,689,1044,706,1086,723,1142,737,1217,750,1400,769,1591,781,1746,790,1741,790,1591,786,1400,774,1216,755,1141,743,1085,728,1042,711,1010,693,982,671,949,638,910,588,885,543"/>
<area shape="poly" id="edge68_Node000044_Node000018" title=" " alt="" coords="1099,628,1132,767,1128,764,1096,632"/> <area shape="poly" id="edge67_Node000045_Node000020" title=" " alt="" coords="868,539,840,588,801,638,749,685,746,680,797,635,835,585,864,543"/>
<area shape="poly" id="edge65_Node000044_Node000043" title=" " alt="" coords="1030,626,816,685,815,679,1025,627"/> <area shape="poly" id="edge64_Node000045_Node000044" title=" " alt="" coords="847,540,766,590,764,585,842,542"/>
<area shape="poly" id="edge72_Node000045_Node000007" title=" " alt="" coords="617,626,567,646,524,668,510,681,501,694,501,708,509,724,529,739,559,752,639,771,732,782,824,790,819,790,732,788,638,776,557,757,526,744,505,727,496,709,496,693,506,677,521,664,565,641,612,627"/> <area shape="poly" id="edge71_Node000046_Node000007" title=" " alt="" coords="608,545,537,575,509,588,495,598,485,618,480,640,482,686,493,730,508,768,503,766,488,732,477,687,475,639,480,616,491,594,506,584,535,570,613,543"/>
<area shape="poly" id="edge74_Node000045_Node000009" title=" " alt="" coords="663,635,653,659,645,682,645,705,654,723,688,730,772,738,1035,757,1575,789,1570,789,1034,762,771,743,687,735,651,727,640,706,640,681,648,657,659,639"/> <area shape="poly" id="edge73_Node000046_Node000009" title=" " alt="" coords="655,547,641,572,631,597,623,636,627,669,643,697,673,723,697,733,735,742,844,758,988,770,1153,778,1490,787,1747,792,1741,792,1490,792,1153,783,988,775,844,763,734,748,695,738,671,728,639,701,622,671,618,636,625,595,636,570,651,550"/>
<area shape="poly" id="edge75_Node000045_Node000018" title=" " alt="" coords="646,636,625,659,609,681,603,704,604,714,611,724,623,735,640,744,685,757,739,764,799,767,919,768,1011,771,1090,785,1084,784,1011,776,919,773,799,773,738,770,684,762,638,749,620,739,607,727,600,716,597,703,604,679,621,656,641,638"/> <area shape="poly" id="edge74_Node000046_Node000020" title=" " alt="" coords="657,547,639,591,636,614,641,636,660,661,685,684,680,683,656,665,636,638,631,614,634,590,653,550"/>
<area shape="poly" id="edge73_Node000045_Node000021" title=" " alt="" coords="617,629,555,655,494,687,439,729,396,772,393,767,436,725,491,682,553,651,612,630"/> <area shape="poly" id="edge72_Node000046_Node000023" title=" " alt="" coords="739,533,802,545,847,552,886,554,954,554,986,556,1020,562,1056,574,1097,594,1123,612,1145,633,1179,680,1174,678,1141,637,1119,616,1095,598,1054,579,1019,567,986,562,954,560,886,559,846,557,801,551,739,538"/>
<area shape="poly" id="edge71_Node000045_Node000043" title=" " alt="" coords="696,635,717,672,712,670,693,640"/> <area shape="poly" id="edge70_Node000046_Node000044" title=" " alt="" coords="689,546,706,583,701,581,686,551"/>
<area shape="poly" id="edge77_Node000047_Node000036" title=" " alt="" coords="1443,626,1719,693,1714,693,1442,632"/> <area shape="rect" id="Node000037" title=" " alt="" coords="1312,604,1373,629"/>
<area shape="poly" id="edge81_Node000048_Node000007" title=" " alt="" coords="877,635,869,680,868,702,872,725,883,747,898,770,893,768,879,750,867,726,863,703,864,679,873,639"/> <area shape="poly" id="edge76_Node000048_Node000037" title=" " alt="" coords="1211,546,1308,596,1303,596,1210,551"/>
<area shape="poly" id="edge83_Node000048_Node000010" title=" " alt="" coords="955,631,1118,679,1215,704,1314,723,1466,743,1594,755,1708,760,1814,761,2035,760,2165,763,2318,771,2483,788,2478,788,2318,776,2165,768,2035,765,1814,766,1708,765,1594,760,1465,749,1313,728,1214,709,1116,685,954,636"/> <area shape="poly" id="edge80_Node000049_Node000007" title=" " alt="" coords="453,544,419,568,394,597,389,623,390,662,396,700,405,724,433,752,468,775,463,774,430,756,400,727,391,701,385,662,384,623,390,595,416,564,448,547"/>
<area shape="poly" id="edge84_Node000048_Node000018" title=" " alt="" coords="887,635,894,681,902,704,916,723,944,741,988,757,1090,784,1084,783,987,762,942,746,912,727,898,706,889,683,884,639"/> <area shape="poly" id="edge82_Node000049_Node000010" title=" " alt="" coords="451,550,418,572,383,598,355,630,338,660,322,691,297,727,249,773,246,769,293,724,318,688,333,657,350,627,380,594,415,567,456,547"/>
<area shape="poly" id="edge82_Node000048_Node000021" title=" " alt="" coords="820,630,653,687,416,778,414,773,652,682,815,631"/> <area shape="poly" id="edge83_Node000049_Node000020" title=" " alt="" coords="519,546,526,592,533,615,546,635,573,658,605,676,638,687,672,698,666,698,636,693,602,680,570,663,542,638,529,617,521,594,516,551"/>
<area shape="poly" id="edge80_Node000048_Node000042" title=" " alt="" coords="916,635,958,675,953,673,914,640"/> <area shape="poly" id="edge81_Node000049_Node000023" title=" " alt="" coords="539,546,582,593,610,616,640,634,683,649,741,662,885,681,1034,693,1151,702,1145,702,1033,698,885,686,740,667,681,654,638,639,607,620,579,597,537,551"/>
<area shape="poly" id="edge79_Node000048_Node000043" title=" " alt="" coords="844,636,778,679,776,674,839,638"/> <area shape="poly" id="edge79_Node000049_Node000043" title=" " alt="" coords="587,542,599,545,693,566,787,582,951,607,945,607,786,587,692,571,598,551,587,548"/>
<area shape="poly" id="edge87_Node000049_Node000013" title=" " alt="" coords="1882,343,2013,347,2187,357,2382,374,2578,401,2633,407,2682,408,2769,409,2808,415,2845,428,2882,452,2917,491,2935,524,2943,559,2943,597,2935,635,2909,705,2878,762,2875,758,2904,703,2930,633,2937,596,2938,560,2930,525,2913,494,2878,456,2843,433,2807,420,2768,414,2682,414,2632,413,2578,406,2381,380,2186,362,2013,353,1883,348"/> <area shape="poly" id="edge78_Node000049_Node000044" title=" " alt="" coords="577,546,666,589,661,589,576,551"/>
<area shape="poly" id="edge86_Node000049_Node000014" title=" " alt="" coords="1828,353,1887,395,1881,394,1827,359"/> <area shape="poly" id="edge86_Node000050_Node000014" title=" " alt="" coords="2200,344,2422,361,2557,378,2693,401,2773,419,2835,437,2972,490,3034,510,3086,524,3109,533,3131,547,3152,567,3172,595,3179,617,3172,638,3147,662,3110,684,3063,704,3010,723,2896,755,2793,779,2792,774,2895,750,3008,718,3061,699,3107,679,3144,657,3167,635,3174,617,3167,597,3148,570,3128,551,3107,538,3084,529,3032,515,2970,495,2833,442,2772,424,2691,406,2557,383,2421,366,2201,350"/>
<area shape="poly" id="edge89_Node000049_Node000021" title=" " alt="" coords="1734,355,1726,358,1503,379,1314,390,991,398,836,405,671,420,485,449,266,495,195,507,137,515,112,523,88,535,65,555,43,582,32,603,29,622,31,640,40,658,53,674,71,689,118,716,173,739,231,758,334,784,329,785,229,763,171,744,115,721,68,693,50,678,35,660,26,642,23,622,27,601,38,580,61,551,85,531,110,518,136,510,195,502,265,490,484,443,670,415,836,400,991,393,1314,385,1503,374,1726,353,1740,354"/> <area shape="poly" id="edge85_Node000050_Node000015" title=" " alt="" coords="2135,354,2150,391,2146,388,2132,358"/>
<area shape="poly" id="edge90_Node000049_Node000028" title=" " alt="" coords="1812,354,1818,392,1829,440,1851,490,1868,513,1888,531,1927,555,1963,568,1997,574,2030,574,2103,570,2145,572,2193,578,2243,592,2237,592,2192,584,2145,577,2103,576,2031,579,1996,579,1961,573,1924,560,1884,535,1864,516,1847,493,1824,442,1812,392,1809,358"/> <area shape="poly" id="edge88_Node000050_Node000023" title=" " alt="" coords="2053,346,1877,355,1658,366,1462,382,1392,393,1353,406,1324,429,1304,453,1292,479,1285,506,1273,568,1262,602,1245,638,1213,682,1210,678,1240,635,1257,600,1267,566,1280,505,1287,477,1300,450,1320,425,1351,401,1391,388,1461,377,1658,360,1877,349,2058,346"/>
<area shape="poly" id="edge88_Node000049_Node000033" title=" " alt="" coords="1792,355,1576,487,1574,482,1787,357"/> <area shape="poly" id="edge89_Node000050_Node000030" title=" " alt="" coords="2200,346,2335,360,2512,386,2609,405,2708,428,2807,456,2902,490,2951,513,2998,540,3072,595,3067,593,2995,545,2949,518,2900,495,2806,461,2707,433,2608,410,2511,391,2334,365,2200,352"/>
<area shape="poly" id="edge94_Node000051_Node000006" title=" " alt="" coords="3151,443,3150,563,3145,725,3140,767,3137,763,3139,725,3145,563,3147,447"/> <area shape="poly" id="edge87_Node000050_Node000034" title=" " alt="" coords="2108,355,1857,494,1855,489,2103,357"/>
<area shape="poly" id="edge97_Node000052_Node000002" title=" " alt="" coords="1691,191,1726,230,1721,229,1690,196"/> <area shape="poly" id="edge95_Node000052_Node000006" title=" " alt="" coords="246,723,322,772,317,772,244,728"/>
<area shape="poly" id="edge98_Node000052_Node000010" title=" " alt="" coords="1741,173,2040,185,2237,197,2440,213,2631,235,2791,263,2853,279,2901,297,2932,318,2940,329,2943,341,2943,425,2944,485,2937,510,2917,535,2884,558,2851,568,2818,569,2786,565,2753,560,2720,559,2686,565,2650,583,2627,602,2607,624,2573,675,2550,725,2534,768,2531,764,2545,723,2569,672,2603,621,2623,598,2647,579,2684,560,2719,553,2754,555,2787,560,2819,564,2850,563,2882,554,2913,531,2932,508,2939,485,2938,425,2938,342,2935,331,2928,322,2899,302,2852,284,2790,268,2630,240,2440,219,2237,202,2040,191,1741,179"/> <area shape="poly" id="edge98_Node000053_Node000002" title=" " alt="" coords="221,182,291,191,662,227,959,253,954,255,662,233,290,196,223,187"/>
<area shape="poly" id="edge99_Node000052_Node000018" title=" " alt="" coords="1602,178,1343,196,1174,210,1001,228,840,250,705,276,653,291,613,307,589,325,583,333,581,342,581,514,574,578,565,630,564,653,567,676,578,699,597,723,611,735,629,744,675,757,731,764,793,767,916,767,1011,771,1090,785,1084,784,1011,776,916,773,793,772,731,769,674,762,627,749,608,739,593,727,573,702,562,678,558,654,559,629,569,577,575,514,575,341,578,331,585,321,611,303,651,286,704,271,839,244,1001,222,1174,205,1342,191,1607,177"/> <area shape="poly" id="edge99_Node000053_Node000010" title=" " alt="" coords="117,196,83,221,47,254,19,295,11,317,8,342,8,617,13,648,26,675,45,700,70,721,126,755,181,778,175,780,123,759,66,725,41,703,21,678,8,650,3,618,3,341,6,316,14,292,43,251,80,217,119,191"/>
<area shape="poly" id="edge101_Node000053_Node000002" title=" " alt="" coords="1819,103,1813,145,1799,194,1778,231,1774,227,1794,192,1808,144,1815,107"/> <area shape="poly" id="edge100_Node000053_Node000020" title=" " alt="" coords="132,196,111,222,86,257,67,298,59,342,59,521,64,543,78,563,101,582,131,599,210,629,305,652,408,670,508,684,671,700,666,701,508,689,407,676,304,657,208,634,129,604,98,587,74,567,59,545,53,522,53,341,61,296,81,255,107,219,134,191"/>
<area shape="poly" id="edge103_Node000053_Node000004" title=" " alt="" coords="1894,94,2198,114,2399,135,2611,165,2817,205,2913,229,3000,257,3078,287,3144,322,3196,360,3232,402,3246,433,3251,462,3247,489,3236,514,3217,538,3193,560,3132,598,3058,630,2979,656,2833,691,2832,686,2978,651,3056,625,3129,593,3190,555,3214,534,3231,512,3242,487,3246,462,3241,434,3228,405,3193,364,3141,326,3076,292,2999,262,2911,234,2816,210,2610,170,2399,141,2198,120,1894,99"/> <area shape="poly" id="edge102_Node000054_Node000002" title=" " alt="" coords="1041,103,1042,227,1038,225,1039,107"/>
<area shape="poly" id="edge104_Node000053_Node000018" title=" " alt="" coords="1815,103,1793,149,1776,173,1754,195,1714,223,1670,244,1625,258,1578,266,1485,273,1396,274,1317,280,1283,288,1253,300,1230,318,1212,344,1201,378,1197,423,1197,514,1191,587,1178,658,1148,768,1144,764,1173,657,1186,586,1191,514,1191,423,1195,377,1207,342,1226,315,1251,295,1281,282,1316,275,1396,269,1485,268,1578,261,1624,252,1668,239,1711,219,1751,191,1772,170,1789,146,1811,106"/> <area shape="poly" id="edge104_Node000054_Node000004" title=" " alt="" coords="1115,96,1576,130,2246,187,2585,221,2885,256,3117,292,3199,310,3252,328,3280,342,3300,356,3317,375,3332,403,3348,442,3355,476,3352,510,3337,549,3316,585,3291,607,3261,623,3222,639,3163,656,3083,670,2889,690,2683,700,2510,705,2510,700,2683,695,2888,684,3083,665,3161,651,3220,634,3259,619,3288,603,3311,581,3332,547,3347,509,3350,476,3343,443,3327,405,3312,378,3297,360,3277,346,3250,332,3197,315,3117,298,2884,262,2584,226,2246,192,1575,135,1116,101"/>
<area shape="poly" id="edge102_Node000053_Node000052" title=" " alt="" coords="1798,104,1723,147,1721,143,1793,106"/> <area shape="poly" id="edge106_Node000054_Node000012" title=" " alt="" coords="1116,90,1669,93,2062,102,2478,120,2681,134,2874,150,3052,171,3209,195,3341,223,3441,257,3478,276,3506,296,3523,318,3529,341,3529,618,3522,657,3502,691,3473,719,3437,741,3398,758,3357,772,3284,788,3283,783,3356,767,3396,753,3435,736,3470,714,3498,688,3517,656,3524,617,3524,342,3519,320,3502,300,3476,280,3439,262,3339,229,3208,200,3051,176,2874,156,2681,139,2478,126,2062,107,1669,98,1117,95"/>
<area shape="poly" id="edge106_Node000054_Node000031" title=" " alt="" coords="139,627,191,674,186,675,138,632"/> <area shape="poly" id="edge105_Node000054_Node000020" title=" " alt="" coords="961,94,882,100,783,109,675,127,567,155,516,174,468,197,425,223,387,254,356,288,332,328,317,373,312,423,312,521,315,549,323,573,335,594,352,613,396,644,449,667,508,683,567,693,671,703,666,704,566,699,507,688,447,672,393,649,348,617,331,597,318,575,310,550,307,522,307,423,312,371,327,326,352,285,383,250,422,219,466,192,514,169,566,150,674,122,782,104,882,94,966,92"/>
<area shape="poly" id="edge115_Node000055_Node000004" title=" " alt="" coords="2517,435,2821,579,2829,595,2831,608,2822,638,2804,664,2780,685,2778,680,2800,661,2817,636,2825,608,2824,596,2817,583,2516,440"/> <area shape="poly" id="edge103_Node000054_Node000053" title=" " alt="" coords="963,102,342,155,238,165,236,161,341,150,965,97"/>
<area shape="poly" id="edge109_Node000055_Node000028" title=" " alt="" coords="2459,437,2411,462,2365,494,2346,515,2330,539,2306,584,2303,580,2326,536,2342,512,2361,490,2408,457,2454,438"/> <area shape="poly" id="edge108_Node000055_Node000032" title=" " alt="" coords="1394,538,1435,585,1430,584,1392,543"/>
<area shape="poly" id="edge108_Node000055_Node000036" title=" " alt="" coords="2414,430,2247,452,2147,470,2049,495,2007,514,1964,535,1918,547,1879,551,1844,558,1827,568,1808,583,1791,604,1779,629,1766,679,1763,675,1774,627,1787,601,1804,579,1824,563,1842,553,1878,545,1917,542,1962,531,2004,509,2048,490,2146,465,2246,447,2419,430"/> <area shape="poly" id="edge117_Node000056_Node000004" title=" " alt="" coords="3013,353,3057,412,3112,496,3135,539,3151,579,3157,613,3155,627,3149,638,3136,647,3116,655,3057,668,2978,679,2885,688,2685,699,2511,705,2511,699,2685,694,2885,682,2977,674,3056,663,3114,650,3133,643,3145,635,3150,626,3152,613,3146,581,3130,541,3107,498,3053,415,3011,358"/>
<area shape="rect" id="Node000056" title=" " alt="" coords="2733,492,2903,533"/> <area shape="poly" id="edge111_Node000056_Node000030" title=" " alt="" coords="3004,354,3006,395,3012,444,3025,497,3048,547,3078,593,3073,590,3043,549,3020,499,3007,445,3001,396,3001,358"/>
<area shape="poly" id="edge110_Node000055_Node000056" title=" " alt="" coords="2538,435,2732,488,2727,488,2537,440"/> <area shape="poly" id="edge110_Node000056_Node000037" title=" " alt="" coords="2926,347,2563,366,2322,383,2079,406,1929,420,1812,431,1698,451,1632,469,1556,495,1480,536,1376,598,1375,593,1477,532,1554,490,1631,464,1697,446,1812,426,1929,415,2078,401,2322,377,2562,361,2931,346"/>
<area shape="rect" id="Node000057" href="$exceptions_8h.html" title=" " alt="" coords="306,492,434,533"/> <area shape="rect" id="Node000057" title=" " alt="" coords="3117,404,3286,444"/>
<area shape="poly" id="edge111_Node000055_Node000057" title=" " alt="" coords="2417,431,449,511,449,505,2417,426"/> <area shape="poly" id="edge112_Node000056_Node000057" title=" " alt="" coords="3034,354,3140,398,3135,397,3033,359"/>
<area shape="poly" id="edge113_Node000057_Node000030" title=" " alt="" coords="351,532,302,580,299,576,347,535"/> <area shape="rect" id="Node000058" href="$exceptions_8h.html" title=" " alt="" coords="1364,404,1492,444"/>
<area shape="poly" id="edge112_Node000057_Node000031" title=" " alt="" coords="372,531,369,584,361,612,347,638,323,662,296,680,293,675,320,658,342,635,356,610,364,583,369,536"/> <area shape="poly" id="edge113_Node000056_Node000058" title=" " alt="" coords="2925,346,2225,365,1813,382,1641,393,1511,406,1508,407,1507,402,1510,401,1641,388,1813,377,2225,359,2930,345"/>
<area shape="poly" id="edge114_Node000057_Node000054" title=" " alt="" coords="315,536,185,585,183,580,319,532"/> <area shape="poly" id="edge115_Node000058_Node000031" title=" " alt="" coords="1471,442,1577,493,1572,493,1470,448"/>
<area shape="poly" id="edge117_Node000064_Node000004" title=" " alt="" coords="3263,184,3292,210,3323,246,3349,291,3356,316,3359,341,3359,514,3355,534,3344,553,3326,570,3303,586,3242,614,3167,638,3085,658,3000,674,2847,696,2847,691,2999,669,3084,653,3166,633,3240,609,3300,581,3323,566,3340,549,3350,532,3354,514,3354,342,3351,317,3344,293,3319,249,3288,214,3262,189"/> <area shape="poly" id="edge114_Node000058_Node000032" title=" " alt="" coords="1438,443,1455,492,1461,538,1462,582,1458,579,1456,538,1449,493,1435,447"/>
<area shape="poly" id="edge116_Node000058_Node000055" title=" " alt="" coords="1419,443,1396,489,1392,484,1415,446"/>
<area shape="poly" id="edge119_Node000064_Node000004" title=" " alt="" coords="3538,185,3521,214,3501,251,3485,295,3479,342,3479,522,3476,548,3468,570,3455,586,3438,600,3395,620,3344,639,3274,660,3180,676,3070,688,2950,696,2708,705,2511,707,2511,702,2708,700,2950,691,3069,682,3179,670,3272,655,3342,634,3393,615,3435,595,3451,583,3463,567,3471,547,3473,521,3473,341,3480,294,3496,249,3516,212,3533,188"/>
</map> </map>

View File

@@ -1 +1 @@
7744faee6e39f6325d616aa7189c4299 f9b47126df80dd98c8e19bdc77a4bd0e

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 81 KiB

After

Width:  |  Height:  |  Size: 82 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 78 KiB

After

Width:  |  Height:  |  Size: 78 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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>
@@ -112,6 +112,7 @@ $(function(){initNavTree('chains_8h.html',''); initResizable(true); });
<code>#include &quot;<a class="el" href="policy__logical_8h.html">gridfire/policy/policy_logical.h</a>&quot;</code><br /> <code>#include &quot;<a class="el" href="policy__logical_8h.html">gridfire/policy/policy_logical.h</a>&quot;</code><br />
<code>#include &quot;<a class="el" href="reaction_8h.html">gridfire/reaction/reaction.h</a>&quot;</code><br /> <code>#include &quot;<a class="el" href="reaction_8h.html">gridfire/reaction/reaction.h</a>&quot;</code><br />
<code>#include &lt;memory&gt;</code><br /> <code>#include &lt;memory&gt;</code><br />
<code>#include &lt;optional&gt;</code><br />
</div><div class="textblock"><div class="dynheader"> </div><div class="textblock"><div class="dynheader">
Include dependency graph for chains.h:</div> Include dependency graph for chains.h:</div>
<div class="dyncontent"> <div class="dyncontent">

View File

@@ -1,160 +1,166 @@
<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="1886,5,2013,46"/> <area shape="rect" id="Node000001" title="Concrete implementations of ReactionChainPolicy for key stellar reaction chains." alt="" coords="2275,5,2402,46"/>
<area shape="rect" id="Node000002" href="$policy__abstract_8h.html" title="Abstract policy interfaces used to construct reaction networks (DynamicEngine) from seed compositions..." alt="" coords="1934,183,2071,223"/> <area shape="rect" id="Node000002" href="$policy__abstract_8h.html" title="Abstract policy interfaces used to construct reaction networks (DynamicEngine) from seed compositions..." alt="" coords="2165,183,2302,223"/>
<area shape="poly" id="edge1_Node000001_Node000002" title=" " alt="" coords="1957,44,1995,169,1990,166,1954,49"/> <area shape="poly" id="edge1_Node000001_Node000002" title=" " alt="" coords="2309,45,2283,69,2261,95,2246,132,2238,169,2234,166,2241,130,2256,93,2279,66,2304,48"/>
<area shape="rect" id="Node000004" href="$reaction_8h.html" title="Defines classes for representing and managing nuclear reactions." alt="" coords="2612,634,2783,659"/> <area shape="rect" id="Node000004" href="$reaction_8h.html" title="Defines classes for representing and managing nuclear reactions." alt="" coords="2564,634,2735,659"/>
<area shape="poly" id="edge107_Node000001_Node000004" title=" " alt="" coords="2013,26,2333,37,2547,48,2771,65,2981,87,3158,116,3227,134,3280,154,3314,176,3323,188,3327,201,3327,367,3323,412,3311,448,3291,477,3266,501,3235,522,3200,540,3118,580,3073,593,2991,608,2799,635,2798,630,2990,602,3071,588,3116,576,3198,536,3233,517,3263,497,3287,474,3306,445,3317,410,3321,367,3321,202,3319,191,3310,180,3278,158,3225,139,3157,122,2980,92,2770,70,2547,53,2332,42,2014,31"/> <area shape="poly" id="edge112_Node000001_Node000004" title=" " alt="" coords="2402,27,2572,40,2675,52,2778,68,2874,91,2953,120,2984,137,3008,156,3023,178,3028,201,3028,367,3026,394,3018,415,3007,432,2992,444,2953,458,2906,464,2854,467,2801,475,2751,492,2727,506,2706,524,2689,546,2675,571,2657,620,2654,616,2670,569,2684,543,2702,520,2724,501,2748,487,2800,470,2854,462,2906,459,2952,453,2989,440,3003,428,3014,413,3020,393,3023,367,3023,202,3018,180,3004,160,2981,141,2951,125,2872,96,2777,74,2674,57,2572,45,2403,32"/>
<area shape="rect" id="Node000018" title=" " alt="" coords="427,722,496,748"/> <area shape="rect" id="Node000012" title=" " alt="" coords="3064,722,3130,748"/>
<area shape="poly" id="edge108_Node000001_Node000018" title=" " alt="" coords="1883,30,1450,51,819,87,512,111,252,138,150,154,73,170,24,186,12,194,8,202,8,551,9,588,14,616,28,640,52,665,79,680,117,692,216,711,323,723,415,731,409,732,322,728,215,717,116,697,77,684,49,669,23,643,9,618,4,588,3,552,3,201,8,191,22,182,72,164,150,148,251,133,511,105,819,81,1450,45,1888,28"/> <area shape="poly" id="edge114_Node000001_Node000012" title=" " alt="" coords="2402,25,2595,33,2714,42,2835,58,2948,80,2997,94,3041,110,3077,129,3105,150,3123,174,3129,201,3129,286,3126,409,3119,530,3102,708,3098,705,3114,530,3121,409,3124,285,3124,202,3118,176,3101,154,3074,133,3039,115,2996,99,2946,85,2834,63,2714,48,2595,38,2403,30"/>
<area shape="rect" id="Node000052" href="$policy__logical_8h.html" title=" " alt="" coords="1776,94,1912,135"/> <area shape="rect" id="Node000020" title=" " alt="" coords="1062,722,1130,748"/>
<area shape="poly" id="edge103_Node000001_Node000052" title=" " alt="" coords="1928,45,1881,86,1878,82,1923,48"/> <area shape="poly" id="edge113_Node000001_Node000020" title=" " alt="" coords="2272,30,1983,46,1790,59,1590,77,1402,99,1245,128,1184,144,1137,162,1108,182,1101,192,1099,202,1099,552,1098,708,1094,705,1093,552,1093,201,1096,189,1105,178,1135,158,1182,139,1244,123,1401,94,1590,71,1790,54,1983,41,2277,29"/>
<area shape="rect" id="Node000003" title=" " alt="" coords="3160,722,3365,748"/> <area shape="rect" id="Node000053" href="$policy__logical_8h.html" title=" " alt="" coords="2270,94,2407,135"/>
<area shape="poly" id="edge2_Node000002_Node000003" title=" " alt="" coords="2071,202,2401,209,2621,218,2849,231,3064,252,3245,279,3316,296,3370,316,3404,338,3414,350,3417,364,3417,552,3414,579,3405,605,3391,629,3374,651,3336,688,3298,716,3296,711,3332,684,3370,647,3387,626,3400,602,3409,578,3412,551,3412,364,3409,353,3401,342,3367,320,3314,301,3244,284,3064,257,2849,237,2620,223,2400,214,2071,207"/> <area shape="poly" id="edge108_Node000001_Node000053" title=" " alt="" coords="2340,44,2341,80,2337,77,2337,49"/>
<area shape="poly" id="edge3_Node000002_Node000004" title=" " alt="" coords="2071,204,2336,218,2506,231,2682,247,2846,268,2983,294,3036,309,3077,325,3104,343,3111,353,3113,364,3113,455,3116,523,3109,551,3087,580,3052,591,2979,605,2797,633,2797,628,2979,599,3051,586,3084,576,3104,549,3110,523,3108,455,3108,364,3106,355,3100,347,3075,330,3035,314,2982,299,2845,273,2681,252,2506,236,2335,224,2071,210"/> <area shape="rect" id="Node000003" title=" " alt="" coords="2835,722,3040,748"/>
<area shape="rect" id="Node000014" href="$engine__abstract_8h.html" title="Abstract interfaces for reaction network engines in GridFire." alt="" coords="2065,345,2210,386"/> <area shape="poly" id="edge2_Node000002_Node000003" title=" " alt="" coords="2302,215,2428,248,2504,273,2585,306,2666,347,2744,395,2816,453,2848,486,2877,521,2904,568,2922,619,2933,667,2937,708,2933,705,2927,668,2917,620,2899,570,2872,524,2844,489,2812,457,2741,400,2663,351,2583,311,2502,278,2426,253,2302,220"/>
<area shape="poly" id="edge14_Node000002_Node000014" title=" " alt="" coords="2071,215,2117,236,2137,251,2153,270,2159,285,2161,301,2154,333,2151,329,2155,300,2154,286,2148,273,2133,255,2114,240,2071,221"/> <area shape="poly" id="edge3_Node000002_Node000004" title=" " alt="" coords="2302,217,2360,235,2424,261,2487,297,2516,319,2542,343,2568,376,2590,412,2621,489,2640,561,2649,619,2644,616,2635,563,2616,491,2585,414,2564,379,2538,347,2512,323,2484,301,2421,266,2358,240,2302,222"/>
<area shape="rect" id="Node000021" title=" " alt="" coords="973,722,1027,748"/> <area shape="rect" id="Node000010" title=" " alt="" coords="3154,722,3211,748"/>
<area shape="poly" id="edge98_Node000002_Node000021" title=" " alt="" coords="1932,208,1547,228,1003,262,740,284,519,309,433,322,367,337,325,351,315,358,312,365,312,551,317,575,333,596,358,615,391,633,476,663,578,687,687,704,794,716,961,732,955,732,793,722,687,709,577,692,474,668,389,638,355,620,329,599,313,577,307,552,307,363,311,355,323,346,365,331,432,317,518,304,740,279,1003,257,1547,223,1937,207"/> <area shape="poly" id="edge104_Node000002_Node000010" title=" " alt="" coords="2302,212,2416,235,2543,269,2640,302,2721,334,2791,366,2853,402,2912,444,2972,493,3109,624,3144,667,3171,711,3166,708,3140,670,3105,628,2968,497,2909,448,2850,407,2788,371,2719,338,2638,307,2542,274,2415,240,2302,218"/>
<area shape="rect" id="Node000033" href="$blob_8h.html" title="Container class for managing multiple scratchpad instances." alt="" coords="1413,434,1590,474"/> <area shape="rect" id="Node000015" href="$engine__abstract_8h.html" title="Abstract interfaces for reaction network engines in GridFire." alt="" coords="2133,345,2278,386"/>
<area shape="poly" id="edge102_Node000002_Node000033" title=" " alt="" coords="1980,223,1858,319,1761,388,1683,418,1606,438,1605,433,1682,413,1759,383,1855,315,1975,225"/> <area shape="poly" id="edge15_Node000002_Node000015" title=" " alt="" coords="2232,222,2213,332,2209,328,2228,226"/>
<area shape="rect" id="Node000041" href="$partition_8h.html" title=" " alt="" coords="933,434,1043,474"/> <area shape="rect" id="Node000017" title=" " alt="" coords="1976,634,2034,659"/>
<area shape="poly" id="edge63_Node000002_Node000041" title=" " alt="" coords="1932,222,1059,438,1057,433,1937,220"/> <area shape="poly" id="edge103_Node000002_Node000017" title=" " alt="" coords="2162,204,2070,214,2019,223,1969,237,1924,258,1888,285,1875,301,1865,320,1858,341,1856,364,1856,455,1859,482,1868,508,1882,533,1898,555,1937,594,1975,625,1970,624,1933,598,1894,559,1877,535,1863,510,1854,484,1851,455,1851,364,1853,340,1860,318,1870,298,1885,281,1922,253,1967,232,2017,218,2069,209,2167,203"/>
<area shape="rect" id="Node000049" href="$logging_8h.html" title=" " alt="" coords="1930,271,2075,297"/> <area shape="rect" id="Node000023" title=" " alt="" coords="331,722,384,748"/>
<area shape="poly" id="edge92_Node000002_Node000049" title=" " alt="" coords="2004,222,2005,257,2001,254,2001,226"/> <area shape="poly" id="edge101_Node000002_Node000023" title=" " alt="" coords="2162,205,1669,216,1317,228,945,249,590,279,431,299,291,323,173,350,84,381,51,397,27,415,13,434,8,453,8,551,9,587,15,615,29,640,54,665,73,676,100,687,171,705,318,728,313,731,170,710,99,692,70,681,50,669,25,643,10,617,4,588,3,552,3,452,8,431,24,411,48,393,82,376,172,345,290,318,430,294,590,274,944,243,1317,223,1669,210,2167,204"/>
<area shape="rect" id="Node000050" title=" " alt="" coords="2099,271,2138,297"/> <area shape="rect" id="Node000034" href="$blob_8h.html" title="Container class for managing multiple scratchpad instances." alt="" coords="1475,434,1653,474"/>
<area shape="poly" id="edge99_Node000002_Node000050" title=" " alt="" coords="2032,221,2091,263,2086,262,2031,226"/> <area shape="poly" id="edge107_Node000002_Node000034" title=" " alt="" coords="2162,208,2022,219,1851,232,1701,251,1649,262,1620,273,1594,305,1578,343,1570,383,1566,420,1562,416,1564,382,1573,342,1590,302,1617,269,1647,256,1700,245,1850,227,2021,213,2168,207"/>
<area shape="rect" id="Node000051" href="$engine__types_8h.html" title=" " alt="" coords="3148,345,3286,386"/> <area shape="rect" id="Node000042" href="$partition_8h.html" title=" " alt="" coords="658,434,768,474"/>
<area shape="poly" id="edge100_Node000002_Node000051" title=" " alt="" coords="2071,203,2320,209,2651,221,2956,240,3066,253,3130,269,3151,281,3170,297,3199,333,3194,331,3166,301,3148,286,3128,274,3065,259,2956,246,2650,226,2320,214,2071,208"/> <area shape="poly" id="edge67_Node000002_Node000042" title=" " alt="" coords="2162,210,1912,234,1753,252,1592,274,1359,314,1130,361,784,438,783,433,1129,355,1358,309,1592,269,1752,247,1912,229,2167,209"/>
<area shape="poly" id="edge6_Node000004_Node000003" title=" " alt="" coords="2782,657,3148,712,3178,719,3173,719,3148,717,2781,662"/> <area shape="rect" id="Node000050" href="$logging_8h.html" title=" " alt="" coords="1630,271,1775,297"/>
<area shape="rect" id="Node000005" title=" " alt="" coords="2660,722,2721,748"/> <area shape="poly" id="edge95_Node000002_Node000050" title=" " alt="" coords="2162,215,1791,273,1790,267,2167,214"/>
<area shape="poly" id="edge4_Node000004_Node000005" title=" " alt="" coords="2698,658,2695,709,2691,705,2694,661"/> <area shape="rect" id="Node000051" title=" " alt="" coords="2243,271,2282,297"/>
<area shape="rect" id="Node000006" title=" " alt="" coords="3048,722,3136,748"/> <area shape="poly" id="edge102_Node000002_Node000051" title=" " alt="" coords="2242,221,2255,258,2250,255,2239,226"/>
<area shape="poly" id="edge5_Node000004_Node000006" title=" " alt="" coords="2774,657,2898,680,3037,712,3047,717,3042,717,3035,717,2897,685,2773,662"/> <area shape="rect" id="Node000052" href="$engine__types_8h.html" title=" " alt="" coords="2390,345,2528,386"/>
<area shape="rect" id="Node000007" title=" " alt="" coords="1235,722,1397,748"/> <area shape="poly" id="edge105_Node000002_Node000052" title=" " alt="" coords="2262,221,2422,336,2417,336,2260,226"/>
<area shape="poly" id="edge7_Node000004_Node000007" title=" " alt="" coords="2614,653,1413,730,1413,725,2609,653"/> <area shape="poly" id="edge6_Node000004_Node000003" title=" " alt="" coords="2690,657,2885,718,2880,717,2690,662"/>
<area shape="rect" id="Node000008" title=" " alt="" coords="2413,722,2510,748"/> <area shape="rect" id="Node000005" title=" " alt="" coords="2750,722,2810,748"/>
<area shape="poly" id="edge8_Node000004_Node000008" title=" " alt="" coords="2667,659,2509,719,2508,714,2661,660"/> <area shape="poly" id="edge4_Node000004_Node000005" title=" " alt="" coords="2668,657,2752,714,2746,713,2667,662"/>
<area shape="rect" id="Node000009" title=" " alt="" coords="1633,722,1743,748"/> <area shape="rect" id="Node000006" title=" " alt="" coords="2494,722,2581,748"/>
<area shape="poly" id="edge9_Node000004_Node000009" title=" " alt="" coords="2614,650,2249,671,2016,690,1780,717,1756,721,1755,716,1780,712,2015,685,2249,666,2609,650"/> <area shape="poly" id="edge5_Node000004_Node000006" title=" " alt="" coords="2636,659,2566,715,2564,710,2631,660"/>
<area shape="rect" id="Node000010" title=" " alt="" coords="2126,722,2183,748"/> <area shape="rect" id="Node000007" title=" " alt="" coords="806,722,968,748"/>
<area shape="poly" id="edge10_Node000004_Node000010" title=" " alt="" coords="2623,660,2199,729,2198,724,2618,660"/> <area shape="poly" id="edge7_Node000004_Node000007" title=" " alt="" coords="2566,652,2260,669,1919,681,1654,687,1389,695,1050,717,983,724,983,718,1049,712,1389,690,1654,681,1919,676,2260,664,2560,652"/>
<area shape="rect" id="Node000011" title=" " alt="" coords="2534,722,2637,748"/> <area shape="rect" id="Node000008" title=" " alt="" coords="2061,722,2158,748"/>
<area shape="poly" id="edge11_Node000004_Node000011" title=" " alt="" coords="2684,659,2614,715,2612,710,2679,660"/> <area shape="poly" id="edge8_Node000004_Node000008" title=" " alt="" coords="2566,655,2381,680,2275,696,2170,717,2159,720,2158,715,2169,712,2274,691,2381,674,2560,655"/>
<area shape="rect" id="Node000012" title=" " alt="" coords="2904,722,3024,748"/> <area shape="rect" id="Node000009" title=" " alt="" coords="1186,722,1296,748"/>
<area shape="poly" id="edge12_Node000004_Node000012" title=" " alt="" coords="2735,657,2915,717,2909,717,2735,662"/> <area shape="poly" id="edge9_Node000004_Node000009" title=" " alt="" coords="2566,652,1308,717,1293,720,1292,715,1308,712,2561,651"/>
<area shape="rect" id="Node000013" title=" " alt="" coords="2744,715,2880,755"/> <area shape="poly" id="edge10_Node000004_Node000010" title=" " alt="" coords="2735,653,2957,679,3065,695,3143,712,3149,716,3144,716,3142,717,3064,701,2956,684,2735,659"/>
<area shape="poly" id="edge13_Node000004_Node000013" title=" " alt="" coords="2714,657,2776,706,2771,704,2712,662"/> <area shape="rect" id="Node000011" title=" " alt="" coords="2182,722,2285,748"/>
<area shape="poly" id="edge15_Node000014_Node000004" title=" " alt="" coords="2145,384,2180,495,2200,549,2215,576,2242,591,2280,604,2380,624,2492,635,2599,643,2594,643,2492,640,2379,629,2279,610,2240,596,2211,580,2195,551,2175,497,2142,388"/> <area shape="poly" id="edge11_Node000004_Node000011" title=" " alt="" coords="2576,660,2445,686,2298,717,2287,720,2286,715,2297,712,2444,681,2571,660"/>
<area shape="poly" id="edge60_Node000014_Node000009" title=" " alt="" coords="2129,385,2104,428,2066,481,2018,535,1990,559,1960,580,1932,594,1905,601,1857,603,1810,605,1785,613,1759,628,1739,646,1723,667,1699,710,1696,706,1719,664,1735,642,1756,624,1783,608,1809,600,1857,597,1904,596,1930,589,1957,576,1987,555,2014,531,2062,477,2100,425,2125,387"/> <area shape="poly" id="edge12_Node000004_Node000012" title=" " alt="" coords="2736,653,2885,675,2970,691,3053,712,3060,717,3055,716,3051,717,2968,696,2884,680,2735,659"/>
<area shape="poly" id="edge59_Node000014_Node000010" title=" " alt="" coords="2140,384,2156,708,2151,705,2136,388"/> <area shape="rect" id="Node000013" title=" " alt="" coords="2605,722,2726,748"/>
<area shape="rect" id="Node000015" href="$types_2types_8h.html" title=" " alt="" coords="2863,634,3006,659"/> <area shape="poly" id="edge13_Node000004_Node000013" title=" " alt="" coords="2653,658,2662,709,2658,705,2650,662"/>
<area shape="poly" id="edge16_Node000014_Node000015" title=" " alt="" coords="2210,364,2417,370,2547,379,2683,392,2814,412,2931,439,2982,455,3026,475,3061,496,3087,521,3096,535,3099,550,3096,564,3088,579,3073,597,3056,611,3016,631,3015,625,3053,606,3070,593,3083,577,3091,562,3094,550,3091,537,3083,524,3058,500,3023,479,2980,460,2930,444,2813,417,2682,397,2547,384,2417,376,2210,369"/> <area shape="rect" id="Node000014" title=" " alt="" coords="1575,715,1710,755"/>
<area shape="rect" id="Node000016" href="$screening__abstract_8h.html" title=" " alt="" coords="2612,530,2758,570"/> <area shape="poly" id="edge14_Node000004_Node000014" title=" " alt="" coords="2566,652,2141,680,1907,698,1726,717,1725,712,1907,693,2141,675,2560,652"/>
<area shape="poly" id="edge19_Node000014_Node000016" title=" " alt="" coords="2196,384,2614,524,2609,524,2196,389"/> <area shape="poly" id="edge16_Node000015_Node000004" title=" " alt="" coords="2278,375,2401,399,2457,414,2496,431,2530,464,2569,516,2637,621,2632,619,2565,519,2526,468,2493,436,2455,419,2400,404,2278,380"/>
<area shape="rect" id="Node000017" href="$screening__types_8h.html" title=" " alt="" coords="1868,434,1999,474"/> <area shape="poly" id="edge62_Node000015_Node000009" title=" " alt="" coords="2135,381,2045,406,1952,436,1873,472,1814,507,1756,542,1677,580,1603,606,1528,629,1287,719,1286,713,1526,623,1601,601,1675,576,1753,538,1811,502,1870,467,1950,431,2044,400,2130,382"/>
<area shape="poly" id="edge24_Node000014_Node000017" title=" " alt="" coords="2094,385,1994,430,1993,425,2088,387"/> <area shape="poly" id="edge61_Node000015_Node000010" title=" " alt="" coords="2278,372,2530,403,2714,431,2776,449,2823,466,2868,488,2924,520,2996,568,3063,621,3162,712,3157,711,3059,625,2992,572,2921,525,2866,493,2821,471,2774,454,2713,436,2529,409,2278,378"/>
<area shape="rect" id="Node000019" href="$reporting_8h.html" title=" " alt="" coords="1827,626,1965,667"/> <area shape="poly" id="edge65_Node000015_Node000012" title=" " alt="" coords="2278,372,2433,395,2523,411,2613,431,2749,463,2807,483,2876,520,2895,533,2907,546,2934,576,3076,712,3071,711,2930,580,2903,550,2891,537,2873,525,2805,488,2748,468,2611,436,2522,416,2432,400,2278,378"/>
<area shape="poly" id="edge27_Node000014_Node000019" title=" " alt="" coords="2134,384,2101,490,2079,544,2057,580,2021,607,1980,626,1979,621,2018,603,2053,576,2074,541,2096,488,2130,388"/> <area shape="rect" id="Node000016" href="$types_2types_8h.html" title=" " alt="" coords="2244,537,2388,563"/>
<area shape="rect" id="Node000024" href="$jacobian_8h.html" title="Wrapper for handling the network Jacobian matrix in GridFire. Currently uses Eigen&#39;s SparseMatrix." alt="" coords="2506,434,2644,474"/> <area shape="poly" id="edge17_Node000015_Node000016" title=" " alt="" coords="2222,384,2258,432,2306,524,2302,522,2254,435,2220,388"/>
<area shape="poly" id="edge33_Node000014_Node000024" title=" " alt="" coords="2210,378,2493,436,2488,436,2210,384"/> <area shape="poly" id="edge66_Node000015_Node000017" title=" " alt="" coords="2215,384,2226,429,2224,454,2214,476,2193,495,2171,504,2147,505,2123,503,2100,501,2076,501,2054,508,2033,524,2018,545,2010,570,2005,620,2001,616,2005,569,2014,543,2029,521,2052,503,2076,496,2100,495,2124,498,2147,500,2170,499,2191,491,2210,473,2219,452,2221,430,2212,388"/>
<area shape="rect" id="Node000025" title=" " alt="" coords="2225,530,2386,570"/> <area shape="rect" id="Node000018" href="$screening__abstract_8h.html" title=" " alt="" coords="2716,530,2862,570"/>
<area shape="poly" id="edge58_Node000014_Node000025" title=" " alt="" coords="2210,379,2255,399,2276,414,2293,432,2303,451,2309,473,2311,516,2307,512,2304,473,2298,453,2289,435,2272,418,2253,404,2209,384"/> <area shape="poly" id="edge21_Node000015_Node000018" title=" " alt="" coords="2278,373,2404,395,2476,411,2546,431,2653,474,2744,522,2739,521,2651,479,2544,436,2475,416,2403,400,2278,378"/>
<area shape="rect" id="Node000030" href="$error__engine_8h.html" title=" " alt="" coords="1666,434,1793,474"/> <area shape="rect" id="Node000019" href="$screening__types_8h.html" title=" " alt="" coords="1992,434,2123,474"/>
<area shape="poly" id="edge42_Node000014_Node000030" title=" " alt="" coords="2067,381,1808,439,1807,433,2062,382"/> <area shape="poly" id="edge26_Node000015_Node000019" title=" " alt="" coords="2174,385,2105,428,2103,423,2169,387"/>
<area shape="poly" id="edge45_Node000014_Node000033" title=" " alt="" coords="2062,377,1992,388,1801,411,1610,436,1606,437,1605,432,1609,431,1800,406,1992,383,2067,376"/> <area shape="rect" id="Node000021" href="$reporting_8h.html" title=" " alt="" coords="1539,626,1677,667"/>
<area shape="rect" id="Node000039" title=" " alt="" coords="1620,537,1694,563"/> <area shape="poly" id="edge29_Node000015_Node000021" title=" " alt="" coords="2135,371,2095,382,2055,394,2016,411,1982,436,1967,453,1960,470,1955,507,1949,544,1940,562,1924,580,1885,600,1826,617,1693,639,1693,633,1825,611,1883,595,1921,576,1936,559,1944,542,1949,506,1954,469,1963,450,1978,432,2013,407,2053,389,2094,377,2130,372"/>
<area shape="poly" id="edge62_Node000014_Node000039" title=" " alt="" coords="2062,377,1655,436,1645,455,1642,477,1649,524,1645,521,1637,478,1640,453,1652,431,2067,376"/> <area shape="rect" id="Node000026" href="$jacobian_8h.html" title="Wrapper for handling the network Jacobian matrix in GridFire. Currently uses Eigen&#39;s SparseMatrix." alt="" coords="2110,626,2248,667"/>
<area shape="rect" id="Node000040" title=" " alt="" coords="2226,441,2278,467"/> <area shape="poly" id="edge35_Node000015_Node000026" title=" " alt="" coords="2249,383,2312,418,2345,440,2375,465,2398,492,2413,520,2415,550,2402,580,2374,607,2339,626,2301,639,2263,646,2263,640,2300,634,2337,622,2371,603,2398,576,2410,549,2408,522,2394,495,2371,469,2342,445,2309,423,2248,389"/>
<area shape="poly" id="edge61_Node000014_Node000040" title=" " alt="" coords="2164,384,2227,433,2222,431,2163,389"/> <area shape="rect" id="Node000027" title=" " alt="" coords="2309,715,2470,755"/>
<area shape="poly" id="edge18_Node000015_Node000012" title=" " alt="" coords="2940,657,2957,709,2953,706,2937,662"/> <area shape="poly" id="edge60_Node000015_Node000027" title=" " alt="" coords="2278,381,2329,402,2375,432,2396,452,2410,471,2428,522,2434,570,2430,619,2419,664,2405,702,2402,698,2414,663,2424,618,2429,570,2423,523,2405,474,2392,456,2372,436,2326,406,2278,387"/>
<area shape="poly" id="edge17_Node000015_Node000013" title=" " alt="" coords="2920,659,2853,708,2851,703,2915,660"/> <area shape="rect" id="Node000031" href="$error__engine_8h.html" title=" " alt="" coords="303,434,430,474"/>
<area shape="poly" id="edge21_Node000016_Node000003" title=" " alt="" coords="2744,568,2771,575,2823,585,2868,589,2945,590,3021,596,3065,606,3114,624,3152,642,3186,665,3242,712,3237,711,3183,669,3149,647,3112,628,3063,611,3020,602,2945,596,2867,594,2822,590,2770,581,2744,574"/> <area shape="poly" id="edge44_Node000015_Node000031" title=" " alt="" coords="2130,370,1521,395,647,436,446,449,445,444,647,431,1521,390,2135,369"/>
<area shape="poly" id="edge20_Node000016_Node000004" title=" " alt="" coords="2690,569,2696,620,2692,616,2686,573"/> <area shape="poly" id="edge47_Node000015_Node000034" title=" " alt="" coords="2130,377,1668,441,1668,436,2136,376"/>
<area shape="poly" id="edge23_Node000016_Node000010" title=" " alt="" coords="2631,571,2198,722,2197,716,2626,571"/> <area shape="rect" id="Node000040" title=" " alt="" coords="1590,537,1664,563"/>
<area shape="poly" id="edge22_Node000016_Node000012" title=" " alt="" coords="2746,568,2771,575,2810,582,2845,582,2909,577,2938,577,2966,583,2994,598,3021,624,3027,635,3029,647,3023,671,3009,694,2990,714,2988,709,3005,691,3018,669,3024,647,3022,637,3017,628,2990,602,2964,588,2937,583,2909,582,2845,588,2809,587,2770,581,2745,574"/> <area shape="poly" id="edge64_Node000015_Node000040" title=" " alt="" coords="2136,377,2016,402,1886,436,1824,459,1762,485,1663,533,1662,527,1760,480,1822,454,1885,431,2015,397,2130,378"/>
<area shape="poly" id="edge25_Node000017_Node000016" title=" " alt="" coords="2000,460,2499,520,2600,536,2594,536,2498,525,1999,465"/> <area shape="rect" id="Node000041" title=" " alt="" coords="2147,441,2200,467"/>
<area shape="poly" id="edge26_Node000017_Node000018" title=" " alt="" coords="1864,467,1806,477,1578,482,1199,486,1000,490,822,497,682,508,633,516,601,525,565,544,540,565,520,591,498,627,480,668,468,709,464,705,475,667,494,625,516,588,536,561,562,540,599,520,632,510,681,503,821,491,1000,484,1199,480,1578,477,1805,472,1870,466"/> <area shape="poly" id="edge63_Node000015_Node000041" title=" " alt="" coords="2200,385,2185,429,2181,425,2196,388"/>
<area shape="poly" id="edge32_Node000019_Node000013" title=" " alt="" coords="1965,647,2104,653,2292,664,2507,683,2732,714,2726,714,2507,688,2291,669,2103,658,1965,652"/> <area shape="poly" id="edge19_Node000016_Node000013" title=" " alt="" coords="2340,561,2631,715,2626,714,2338,566"/>
<area shape="rect" id="Node000020" title=" " alt="" coords="1792,722,1838,748"/> <area shape="poly" id="edge18_Node000016_Node000014" title=" " alt="" coords="2281,563,2173,601,2099,628,2084,639,2074,649,2064,659,2048,669,2003,686,1963,697,1892,705,1818,707,1726,717,1726,712,1818,702,1891,700,1962,692,2001,681,2046,664,2061,655,2071,645,2081,635,2096,624,2171,596,2276,564"/>
<area shape="poly" id="edge28_Node000019_Node000020" title=" " alt="" coords="1880,666,1837,713,1835,709,1875,668"/> <area shape="poly" id="edge20_Node000016_Node000017" title=" " alt="" coords="2282,563,2233,581,2143,604,2054,629,2048,630,2047,625,2053,623,2142,598,2231,575,2276,564"/>
<area shape="poly" id="edge29_Node000019_Node000021" title=" " alt="" coords="1829,654,1043,732,1042,727,1824,654"/> <area shape="poly" id="edge23_Node000018_Node000003" title=" " alt="" coords="2806,569,2921,711,2916,709,2804,573"/>
<area shape="rect" id="Node000022" title=" " alt="" coords="1862,722,1930,748"/> <area shape="poly" id="edge22_Node000018_Node000004" title=" " alt="" coords="2763,570,2681,627,2679,622,2757,572"/>
<area shape="poly" id="edge30_Node000019_Node000022" title=" " alt="" coords="1898,665,1898,709,1894,705,1894,669"/> <area shape="poly" id="edge25_Node000018_Node000010" title=" " alt="" coords="2832,568,3144,712,3146,716,3141,715,3142,717,2831,574"/>
<area shape="rect" id="Node000023" title=" " alt="" coords="1954,722,2022,748"/> <area shape="poly" id="edge24_Node000018_Node000013" title=" " alt="" coords="2788,569,2774,618,2763,644,2749,668,2725,694,2699,716,2697,711,2722,690,2745,665,2759,641,2769,616,2783,573"/>
<area shape="poly" id="edge31_Node000019_Node000023" title=" " alt="" coords="1918,665,1967,712,1962,711,1916,670"/> <area shape="poly" id="edge27_Node000019_Node000018" title=" " alt="" coords="2124,469,2135,472,2290,496,2446,515,2703,542,2698,542,2445,521,2290,501,2134,477,2123,475"/>
<area shape="poly" id="edge34_Node000024_Node000003" title=" " alt="" coords="2644,456,2754,462,2883,475,3003,493,3051,506,3087,520,3116,539,3143,562,3190,613,3227,665,3252,710,3247,707,3223,668,3186,616,3140,565,3113,543,3084,525,3049,511,3002,499,2882,480,2754,468,2644,461"/> <area shape="poly" id="edge28_Node000019_Node000020" title=" " alt="" coords="2002,474,1677,581,1514,626,1351,669,1145,724,1144,718,1350,664,1513,621,1675,575,1997,475"/>
<area shape="poly" id="edge36_Node000024_Node000008" title=" " alt="" coords="2573,473,2563,523,2545,579,2512,651,2478,711,2475,707,2507,649,2540,577,2558,522,2569,477"/> <area shape="poly" id="edge34_Node000021_Node000014" title=" " alt="" coords="1617,665,1631,702,1627,699,1614,669"/>
<area shape="poly" id="edge40_Node000024_Node000009" title=" " alt="" coords="2568,473,2536,535,2517,563,2500,580,2472,593,2438,603,2357,613,2262,615,2161,613,1963,608,1880,613,1845,619,1816,628,1794,641,1767,663,1712,713,1710,709,1763,659,1791,637,1814,624,1844,614,1879,608,1963,603,2161,607,2262,610,2356,608,2437,598,2470,588,2497,576,2513,559,2532,532,2563,476"/> <area shape="rect" id="Node000022" title=" " alt="" coords="1413,722,1459,748"/>
<area shape="poly" id="edge35_Node000024_Node000025" title=" " alt="" coords="2521,474,2376,527,2375,522,2516,475"/> <area shape="poly" id="edge30_Node000021_Node000022" title=" " alt="" coords="1569,666,1472,717,1470,712,1564,668"/>
<area shape="rect" id="Node000026" title=" " alt="" coords="2783,537,2910,563"/> <area shape="poly" id="edge31_Node000021_Node000023" title=" " alt="" coords="1539,655,400,733,400,728,1538,650"/>
<area shape="poly" id="edge37_Node000024_Node000026" title=" " alt="" coords="2633,472,2772,520,2801,532,2796,532,2770,525,2632,478"/> <area shape="rect" id="Node000024" title=" " alt="" coords="1483,722,1552,748"/>
<area shape="rect" id="Node000027" title=" " alt="" coords="2934,537,2983,563"/> <area shape="poly" id="edge32_Node000021_Node000024" title=" " alt="" coords="1590,666,1542,714,1540,709,1585,668"/>
<area shape="poly" id="edge38_Node000024_Node000027" title=" " alt="" coords="2644,457,2706,464,2777,476,2852,494,2924,520,2936,529,2931,528,2922,525,2850,499,2776,481,2705,469,2644,462"/> <area shape="rect" id="Node000025" title=" " alt="" coords="1320,722,1389,748"/>
<area shape="rect" id="Node000028" title=" " alt="" coords="2409,537,2487,563"/> <area shape="poly" id="edge33_Node000021_Node000025" title=" " alt="" coords="1546,667,1402,717,1398,719,1397,714,1400,712,1541,668"/>
<area shape="poly" id="edge39_Node000024_Node000028" title=" " alt="" coords="2551,474,2477,530,2475,525,2546,476"/> <area shape="poly" id="edge36_Node000026_Node000003" title=" " alt="" coords="2248,651,2502,675,2823,712,2856,719,2851,719,2822,717,2502,680,2248,656"/>
<area shape="rect" id="Node000029" title=" " alt="" coords="3007,537,3073,563"/> <area shape="poly" id="edge38_Node000026_Node000008" title=" " alt="" coords="2165,666,2129,713,2127,708,2161,668"/>
<area shape="poly" id="edge41_Node000024_Node000029" title=" " alt="" coords="2644,456,2719,462,2808,473,2904,492,2997,520,3014,530,3008,529,2995,525,2902,497,2807,479,2718,467,2644,461"/> <area shape="poly" id="edge42_Node000026_Node000009" title=" " alt="" coords="2112,659,2047,669,1934,679,1839,683,1676,685,1514,691,1420,701,1308,717,1293,720,1293,715,1308,712,1419,695,1514,686,1676,680,1839,678,1934,674,2046,664,2106,659"/>
<area shape="rect" id="Node000031" href="$error__gridfire_8h.html" title=" " alt="" coords="1336,626,1464,667"/> <area shape="poly" id="edge43_Node000026_Node000012" title=" " alt="" coords="2248,649,2694,678,2921,696,3053,712,3061,717,3056,716,3051,717,2921,701,2693,683,2248,654"/>
<area shape="poly" id="edge43_Node000030_Node000031" title=" " alt="" coords="1734,473,1733,527,1725,555,1709,580,1693,592,1670,602,1612,619,1545,632,1479,640,1479,635,1544,626,1611,614,1668,597,1690,587,1705,576,1720,553,1727,526,1730,477"/> <area shape="poly" id="edge37_Node000026_Node000027" title=" " alt="" coords="2227,665,2330,709,2325,708,2226,670"/>
<area shape="poly" id="edge44_Node000031_Node000021" title=" " alt="" coords="1339,662,1318,669,1043,728,1042,722,1317,664,1333,663"/> <area shape="rect" id="Node000028" title=" " alt="" coords="1836,722,1964,748"/>
<area shape="poly" id="edge54_Node000033_Node000009" title=" " alt="" coords="1508,472,1530,524,1546,552,1566,576,1591,592,1616,598,1641,605,1665,624,1677,644,1684,665,1690,708,1686,705,1679,667,1672,646,1661,628,1638,610,1614,603,1589,597,1562,580,1541,555,1525,526,1506,477"/> <area shape="poly" id="edge39_Node000026_Node000028" title=" " alt="" coords="2118,667,1954,720,1953,715,2112,668"/>
<area shape="poly" id="edge57_Node000033_Node000011" title=" " alt="" coords="1521,472,1566,521,1586,552,1594,564,1609,576,1656,593,1718,604,1791,610,1868,613,2020,616,2086,618,2138,623,2247,643,2331,661,2522,712,2534,718,2529,717,2521,717,2330,667,2246,648,2137,629,2085,624,2020,621,1868,619,1790,616,1718,609,1655,598,1607,580,1590,568,1581,555,1562,524,1519,477"/> <area shape="rect" id="Node000029" title=" " alt="" coords="1987,722,2037,748"/>
<area shape="poly" id="edge55_Node000033_Node000018" title=" " alt="" coords="1410,461,907,491,664,509,583,518,545,525,508,544,482,564,463,590,445,627,441,647,441,668,452,710,447,707,436,669,435,647,440,625,458,587,479,560,505,539,543,520,583,512,664,504,906,486,1415,459"/> <area shape="poly" id="edge40_Node000026_Node000029" title=" " alt="" coords="2143,667,2049,717,2047,712,2138,668"/>
<area shape="rect" id="Node000034" href="$scratchpad__abstract_8h.html" title="Abstract base class for scratchpad memory used during engine computations." alt="" coords="94,626,271,667"/> <area shape="rect" id="Node000030" title=" " alt="" coords="1735,722,1812,748"/>
<area shape="poly" id="edge46_Node000033_Node000034" title=" " alt="" coords="1410,460,900,491,642,508,494,525,422,545,352,570,235,621,233,616,350,565,421,540,493,520,642,503,900,485,1415,459"/> <area shape="poly" id="edge41_Node000026_Node000030" title=" " alt="" coords="2112,663,2091,669,1957,690,1899,700,1825,717,1818,719,1817,714,1823,712,1898,694,1956,685,2090,664,2106,663"/>
<area shape="rect" id="Node000035" href="$engine_2scratchpads_2types_8h.html" title="Type definitions and utilities for the scratchpad system." alt="" coords="1770,530,1947,570"/> <area shape="rect" id="Node000032" href="$error__gridfire_8h.html" title=" " alt="" coords="94,626,221,667"/>
<area shape="poly" id="edge48_Node000033_Node000035" title=" " alt="" coords="1576,472,1772,525,1766,525,1576,478"/> <area shape="poly" id="edge45_Node000031_Node000032" title=" " alt="" coords="301,467,205,490,163,506,138,524,129,544,128,566,133,589,142,612,136,612,128,591,123,567,124,543,134,521,161,501,203,485,305,463"/>
<area shape="rect" id="Node000037" href="$error__scratchpad_8h.html" title=" " alt="" coords="1025,530,1159,570"/> <area shape="poly" id="edge46_Node000032_Node000023" title=" " alt="" coords="203,665,319,715,314,717,202,670"/>
<area shape="poly" id="edge51_Node000033_Node000037" title=" " alt="" coords="1410,471,1297,495,1171,525,1162,527,1161,522,1170,520,1296,490,1415,470"/> <area shape="poly" id="edge56_Node000034_Node000009" title=" " alt="" coords="1555,473,1522,525,1477,580,1427,623,1374,661,1280,717,1278,712,1371,657,1424,619,1473,576,1518,522,1550,476"/>
<area shape="poly" id="edge56_Node000033_Node000039" title=" " alt="" coords="1535,472,1627,529,1622,529,1533,478"/> <area shape="poly" id="edge59_Node000034_Node000011" title=" " alt="" coords="1562,473,1560,525,1566,553,1579,576,1602,598,1625,610,1647,616,1671,618,1724,617,1754,618,1787,623,2170,712,2182,718,2177,717,2169,717,1786,629,1753,623,1724,622,1671,623,1646,622,1623,615,1599,602,1575,580,1561,555,1555,526,1558,477"/>
<area shape="poly" id="edge47_Node000034_Node000018" title=" " alt="" coords="247,665,415,718,410,720,246,670"/> <area shape="poly" id="edge57_Node000034_Node000020" title=" " alt="" coords="1472,467,1358,492,1308,507,1275,524,1260,541,1251,557,1245,592,1239,629,1232,649,1218,668,1184,697,1145,718,1144,713,1181,693,1214,665,1227,646,1234,628,1239,591,1246,556,1256,538,1272,520,1306,502,1357,486,1478,466"/>
<area shape="poly" id="edge50_Node000035_Node000006" title=" " alt="" coords="1948,556,2213,575,2620,585,2873,598,2966,609,2998,616,3020,624,3042,641,3060,662,3085,709,3080,706,3056,665,3039,645,3017,628,2997,621,2965,614,2872,603,2620,590,2213,581,1948,561"/> <area shape="rect" id="Node000035" href="$scratchpad__abstract_8h.html" title="Abstract base class for scratchpad memory used during engine computations." alt="" coords="1286,530,1463,570"/>
<area shape="rect" id="Node000036" title=" " alt="" coords="1590,634,1650,659"/> <area shape="poly" id="edge48_Node000034_Node000035" title=" " alt="" coords="1527,474,1429,525,1427,520,1522,476"/>
<area shape="poly" id="edge49_Node000035_Node000036" title=" " alt="" coords="1811,571,1665,630,1664,625,1806,572"/> <area shape="rect" id="Node000036" href="$engine_2scratchpads_2types_8h.html" title="Type definitions and utilities for the scratchpad system." alt="" coords="2043,530,2221,570"/>
<area shape="poly" id="edge52_Node000037_Node000021" title=" " alt="" coords="1144,568,1181,587,1213,610,1224,623,1231,638,1231,653,1224,668,1206,687,1185,703,1137,724,1087,734,1042,737,1042,732,1086,729,1135,718,1182,698,1202,683,1219,665,1226,652,1225,639,1220,626,1209,614,1179,592,1143,574"/> <area shape="poly" id="edge50_Node000034_Node000036" title=" " alt="" coords="1653,467,2031,532,2026,532,1653,473"/>
<area shape="poly" id="edge53_Node000037_Node000031" title=" " alt="" coords="1150,569,1171,575,1324,623,1319,623,1170,581,1149,574"/> <area shape="rect" id="Node000038" href="$error__scratchpad_8h.html" title=" " alt="" coords="332,530,465,570"/>
<area shape="rect" id="Node000042" href="$partition__types_8h.html" title=" " alt="" coords="1089,626,1210,667"/> <area shape="poly" id="edge53_Node000034_Node000038" title=" " alt="" coords="1472,457,1300,465,1065,476,798,496,528,525,481,533,480,528,528,520,797,490,1064,471,1300,460,1478,457"/>
<area shape="poly" id="edge64_Node000041_Node000042" title=" " alt="" coords="989,473,994,524,1002,552,1015,576,1043,602,1077,623,1072,622,1040,606,1011,580,997,554,989,525,985,477"/> <area shape="poly" id="edge58_Node000034_Node000040" title=" " alt="" coords="1578,472,1613,526,1608,524,1576,477"/>
<area shape="rect" id="Node000043" href="$partition__abstract_8h.html" title=" " alt="" coords="776,626,912,667"/> <area shape="poly" id="edge49_Node000035_Node000020" title=" " alt="" coords="1372,569,1355,620,1339,646,1319,669,1294,680,1250,695,1146,724,1145,718,1248,689,1292,675,1316,665,1335,643,1350,618,1368,572"/>
<area shape="poly" id="edge67_Node000041_Node000043" title=" " alt="" coords="930,460,899,468,863,480,831,498,805,524,797,545,799,568,808,591,821,614,816,612,803,593,794,569,792,544,800,521,828,494,861,475,897,463,935,458"/> <area shape="poly" id="edge51_Node000036_Node000006" title=" " alt="" coords="2176,568,2499,716,2494,715,2175,574"/>
<area shape="rect" id="Node000044" href="$partition__ground_8h.html" title=" " alt="" coords="1182,530,1311,570"/> <area shape="poly" id="edge52_Node000036_Node000017" title=" " alt="" coords="2108,570,2035,626,2033,622,2103,572"/>
<area shape="poly" id="edge70_Node000041_Node000044" title=" " alt="" coords="1043,472,1181,524,1176,524,1042,478"/> <area shape="poly" id="edge54_Node000038_Node000023" title=" " alt="" coords="350,570,314,596,298,610,286,627,281,646,286,666,303,691,327,714,322,712,299,694,282,668,275,646,282,625,294,607,310,592,345,572"/>
<area shape="rect" id="Node000045" href="$partition__rauscher__thielemann_8h.html" title=" " alt="" coords="612,522,740,578"/> <area shape="poly" id="edge55_Node000038_Node000032" title=" " alt="" coords="346,573,223,622,221,618,350,570"/>
<area shape="poly" id="edge76_Node000041_Node000045" title=" " alt="" coords="930,472,759,525,756,526,754,521,758,520,935,470"/> <area shape="rect" id="Node000043" href="$partition__types_8h.html" title=" " alt="" coords="297,626,418,667"/>
<area shape="rect" id="Node000047" href="$rauscher__thielemann__partition__data__record_8h.html" title=" " alt="" coords="1334,522,1495,578"/> <area shape="poly" id="edge68_Node000042_Node000043" title=" " alt="" coords="655,469,594,492,561,506,530,525,514,538,504,551,494,565,479,580,415,621,412,616,476,576,490,561,500,548,510,534,526,520,558,502,592,487,660,467"/>
<area shape="poly" id="edge83_Node000041_Node000047" title=" " alt="" coords="1043,462,1167,486,1322,522,1317,522,1165,491,1043,468"/> <area shape="rect" id="Node000044" href="$partition__abstract_8h.html" title=" " alt="" coords="594,626,731,667"/>
<area shape="rect" id="Node000048" href="$partition__composite_8h.html" title=" " alt="" coords="815,522,950,578"/> <area shape="poly" id="edge71_Node000042_Node000044" title=" " alt="" coords="712,473,691,579,678,613,675,609,685,577,708,476"/>
<area shape="poly" id="edge85_Node000041_Node000048" title=" " alt="" coords="969,473,926,514,923,509,964,476"/> <area shape="rect" id="Node000045" href="$partition__ground_8h.html" title=" " alt="" coords="930,530,1059,570"/>
<area shape="poly" id="edge65_Node000042_Node000009" title=" " alt="" coords="1211,655,1620,722,1615,722,1210,660"/> <area shape="poly" id="edge74_Node000042_Node000045" title=" " alt="" coords="769,471,924,524,919,525,769,476"/>
<area shape="poly" id="edge66_Node000042_Node000021" title=" " alt="" coords="1118,667,1035,717,1033,711,1113,668"/> <area shape="rect" id="Node000046" href="$partition__rauscher__thielemann_8h.html" title=" " alt="" coords="754,522,883,578"/>
<area shape="poly" id="edge69_Node000043_Node000018" title=" " alt="" coords="778,663,511,725,510,720,773,663"/> <area shape="poly" id="edge80_Node000042_Node000046" title=" " alt="" coords="736,472,780,512,774,511,735,477"/>
<area shape="poly" id="edge68_Node000043_Node000021" title=" " alt="" coords="880,665,968,715,962,714,879,670"/> <area shape="rect" id="Node000048" href="$rauscher__thielemann__partition__data__record_8h.html" title=" " alt="" coords="148,522,308,578"/>
<area shape="poly" id="edge72_Node000044_Node000007" title=" " alt="" coords="1302,568,1323,575,1370,584,1409,586,1445,595,1462,606,1478,625,1486,641,1485,657,1477,671,1463,683,1426,704,1382,720,1381,715,1424,699,1460,679,1473,667,1480,655,1481,642,1474,627,1458,610,1443,600,1409,591,1369,590,1322,581,1302,574"/> <area shape="poly" id="edge87_Node000042_Node000048" title=" " alt="" coords="655,464,511,488,324,524,323,519,510,483,660,462"/>
<area shape="poly" id="edge75_Node000044_Node000008" title=" " alt="" coords="1297,568,1323,575,1428,593,1517,602,1597,605,1671,605,1825,604,1916,610,2022,623,2130,643,2237,668,2410,718,2405,717,2236,673,2129,649,2021,629,1915,615,1825,610,1671,610,1597,611,1517,608,1427,599,1322,581,1297,574"/> <area shape="rect" id="Node000049" href="$partition__composite_8h.html" title=" " alt="" coords="540,522,676,578"/>
<area shape="poly" id="edge73_Node000044_Node000009" title=" " alt="" coords="1302,568,1323,575,1412,597,1451,606,1500,624,1573,662,1658,715,1653,713,1571,667,1498,628,1450,611,1411,602,1322,581,1301,574"/> <area shape="poly" id="edge88_Node000042_Node000049" title=" " alt="" coords="694,473,651,514,648,510,689,476"/>
<area shape="poly" id="edge74_Node000044_Node000018" title=" " alt="" coords="1251,569,1248,620,1240,646,1223,669,1207,678,1183,685,1111,699,907,718,683,730,511,735,511,730,683,725,906,713,1110,694,1181,680,1205,673,1220,665,1235,644,1243,619,1247,573"/> <area shape="poly" id="edge69_Node000043_Node000009" title=" " alt="" coords="418,650,1143,712,1173,719,1168,719,1142,717,418,655"/>
<area shape="poly" id="edge71_Node000044_Node000043" title=" " alt="" coords="1196,570,1171,581,1044,611,928,634,927,628,1043,606,1170,575,1191,572"/> <area shape="poly" id="edge70_Node000043_Node000023" title=" " alt="" coords="359,665,360,708,355,705,355,669"/>
<area shape="poly" id="edge78_Node000045_Node000007" title=" " alt="" coords="680,576,693,624,705,646,721,664,741,670,784,678,916,694,1222,725,1217,726,916,699,783,683,740,676,719,669,700,649,688,626,677,581"/> <area shape="poly" id="edge73_Node000044_Node000020" title=" " alt="" coords="732,659,1049,724,1044,724,731,664"/>
<area shape="poly" id="edge80_Node000045_Node000009" title=" " alt="" coords="694,576,731,629,750,651,765,664,1619,726,1616,731,763,669,746,655,727,632,692,581"/> <area shape="poly" id="edge72_Node000044_Node000023" title=" " alt="" coords="597,667,400,725,398,719,591,667"/>
<area shape="poly" id="edge82_Node000045_Node000018" title=" " alt="" coords="614,578,575,602,539,628,503,669,476,710,473,706,499,666,536,624,572,597,609,579"/> <area shape="poly" id="edge76_Node000045_Node000007" title=" " alt="" coords="985,570,903,711,900,707,981,572"/>
<area shape="poly" id="edge79_Node000045_Node000021" title=" " alt="" coords="667,577,659,623,662,645,671,665,690,680,719,692,798,711,884,723,961,732,956,732,884,728,797,716,718,697,687,684,667,668,656,647,654,623,663,580"/> <area shape="poly" id="edge79_Node000045_Node000008" title=" " alt="" coords="1059,555,1412,591,1690,623,1770,642,1849,664,1949,687,2049,712,2060,718,2055,717,2047,717,1948,692,1847,669,1768,647,1689,629,1411,596,1059,561"/>
<area shape="poly" id="edge77_Node000045_Node000043" title=" " alt="" coords="725,576,798,618,793,618,724,581"/> <area shape="poly" id="edge77_Node000045_Node000009" title=" " alt="" coords="1060,568,1115,591,1167,624,1205,665,1231,709,1226,707,1200,668,1164,628,1112,596,1059,573"/>
<area shape="rect" id="Node000046" title=" " alt="" coords="550,634,600,659"/> <area shape="poly" id="edge78_Node000045_Node000020" title=" " alt="" coords="1007,569,1085,709,1080,708,1004,573"/>
<area shape="poly" id="edge81_Node000045_Node000046" title=" " alt="" coords="649,577,600,625,597,621,644,580"/> <area shape="poly" id="edge75_Node000045_Node000044" title=" " alt="" coords="932,569,746,624,745,619,927,570"/>
<area shape="poly" id="edge84_Node000047_Node000036" title=" " alt="" coords="1475,576,1583,627,1577,626,1474,581"/> <area shape="poly" id="edge82_Node000046_Node000007" title=" " alt="" coords="823,576,832,620,846,666,871,710,866,708,842,668,827,621,820,581"/>
<area shape="poly" id="edge88_Node000048_Node000007" title=" " alt="" coords="922,576,993,621,1077,664,1161,694,1244,718,1239,718,1160,699,1075,669,990,625,920,581"/> <area shape="poly" id="edge84_Node000046_Node000009" title=" " alt="" coords="882,576,1202,716,1197,716,881,581"/>
<area shape="poly" id="edge90_Node000048_Node000010" title=" " alt="" coords="951,565,1014,575,1108,582,1225,584,1499,583,1639,584,1771,590,1887,602,1936,612,1978,624,1996,632,2009,642,2036,664,2120,715,2115,714,2033,669,2005,646,1994,637,1976,628,1935,617,1886,608,1771,595,1639,590,1499,588,1225,590,1107,588,1013,581,951,570"/> <area shape="poly" id="edge86_Node000046_Node000020" title=" " alt="" coords="860,576,1068,713,1062,713,859,581"/>
<area shape="poly" id="edge91_Node000048_Node000018" title=" " alt="" coords="907,576,922,598,933,622,936,646,926,668,897,690,853,706,799,718,739,726,614,735,511,737,511,732,614,730,738,721,798,712,852,701,894,685,922,665,930,645,928,623,918,601,905,581"/> <area shape="poly" id="edge83_Node000046_Node000023" title=" " alt="" coords="811,577,785,626,767,650,744,669,716,682,678,694,583,712,483,725,400,733,399,728,482,720,583,707,677,689,714,677,741,664,763,646,781,623,806,580"/>
<area shape="poly" id="edge89_Node000048_Node000021" title=" " alt="" coords="923,576,949,598,970,625,989,667,999,709,994,706,984,668,966,627,945,602,922,581"/> <area shape="poly" id="edge81_Node000046_Node000044" title=" " alt="" coords="776,578,709,620,707,615,771,579"/>
<area shape="poly" id="edge87_Node000048_Node000042" title=" " alt="" coords="951,573,1082,620,1077,620,951,578"/> <area shape="rect" id="Node000047" title=" " alt="" coords="856,634,906,659"/>
<area shape="poly" id="edge86_Node000048_Node000043" title=" " alt="" coords="874,577,859,614,856,610,869,580"/> <area shape="poly" id="edge85_Node000046_Node000047" title=" " alt="" coords="838,576,868,622,863,620,836,581"/>
<area shape="poly" id="edge94_Node000049_Node000013" title=" " alt="" coords="2075,293,2322,332,2644,389,2799,422,2934,455,3034,489,3067,505,3087,521,3097,535,3100,550,3097,565,3087,580,3061,603,3032,613,3003,614,2973,609,2942,605,2912,603,2882,610,2852,628,2839,643,2829,662,2817,701,2814,697,2824,659,2835,640,2849,624,2880,605,2912,598,2943,599,2973,604,3003,608,3031,608,3058,599,3083,576,3092,563,3094,550,3092,537,3083,524,3064,509,3032,493,2932,461,2798,427,2643,395,2322,337,2075,299"/> <area shape="poly" id="edge91_Node000049_Node000007" title=" " alt="" coords="575,577,555,600,539,622,533,645,535,655,541,665,556,678,579,689,642,707,717,719,793,729,787,728,716,724,641,712,577,694,553,682,537,668,530,657,528,645,535,620,551,597,571,580"/>
<area shape="poly" id="edge93_Node000049_Node000014" title=" " alt="" coords="2024,295,2094,337,2088,337,2023,300"/> <area shape="poly" id="edge93_Node000049_Node000010" title=" " alt="" coords="676,565,743,575,902,591,1047,601,1305,609,1533,605,1745,595,1957,586,2185,584,2443,594,2588,606,2747,623,2946,664,3143,712,3148,716,3143,715,3142,717,2945,669,2746,629,2588,611,2443,599,2185,589,1958,591,1745,600,1533,610,1305,614,1047,606,901,596,742,581,676,570"/>
<area shape="poly" id="edge96_Node000049_Node000021" title=" " alt="" coords="1928,290,1645,311,1453,329,1250,353,1048,384,863,422,781,444,709,469,649,496,602,525,562,557,533,592,525,610,523,628,527,646,539,665,568,685,612,701,668,713,730,721,856,730,961,734,955,734,856,735,729,727,667,718,611,706,566,690,535,669,522,648,517,628,520,608,528,589,558,553,598,520,646,491,707,464,779,439,861,417,1047,378,1249,348,1453,324,1644,306,1933,289"/> <area shape="poly" id="edge94_Node000049_Node000020" title=" " alt="" coords="592,577,582,601,576,624,575,646,585,665,597,676,614,685,658,698,711,705,771,708,889,709,980,712,1049,725,1044,725,980,717,889,714,770,714,711,710,657,703,612,690,594,680,581,668,570,647,570,623,578,599,588,580"/>
<area shape="poly" id="edge97_Node000049_Node000028" title=" " alt="" coords="2075,294,2149,312,2187,326,2223,343,2288,386,2347,436,2396,484,2431,527,2426,525,2392,488,2343,440,2285,390,2220,347,2185,331,2147,317,2075,299"/> <area shape="poly" id="edge92_Node000049_Node000023" title=" " alt="" coords="564,577,490,628,432,673,383,714,381,709,428,669,486,624,559,579"/>
<area shape="poly" id="edge95_Node000049_Node000033" title=" " alt="" coords="1998,296,1966,343,1942,368,1913,388,1798,410,1606,440,1605,435,1797,405,1911,383,1938,364,1962,340,1993,299"/> <area shape="poly" id="edge90_Node000049_Node000043" title=" " alt="" coords="543,576,425,623,423,618,538,578"/>
<area shape="poly" id="edge101_Node000051_Node000006" title=" " alt="" coords="3213,384,3103,709,3099,705,3209,387"/> <area shape="poly" id="edge89_Node000049_Node000044" title=" " alt="" coords="625,576,646,613,641,612,623,581"/>
<area shape="poly" id="edge104_Node000052_Node000002" title=" " alt="" coords="1880,133,1956,175,1951,175,1880,138"/> <area shape="poly" id="edge97_Node000050_Node000014" title=" " alt="" coords="1706,295,1714,355,1720,448,1715,557,1706,613,1692,668,1672,705,1669,700,1687,666,1701,612,1710,557,1714,448,1709,356,1703,299"/>
<area shape="poly" id="edge105_Node000052_Node000010" title=" " alt="" coords="1840,133,1827,198,1817,286,1817,334,1823,383,1836,430,1858,473,1869,485,1879,493,1903,500,1930,506,1960,520,2016,567,2067,619,2140,711,2135,709,2063,623,2013,571,1957,525,1929,511,1902,506,1877,498,1865,489,1854,476,1831,432,1818,384,1812,334,1811,285,1821,197,1836,137"/> <area shape="poly" id="edge96_Node000050_Node000015" title=" " alt="" coords="1775,294,2120,350,2115,351,1775,299"/>
<area shape="poly" id="edge106_Node000052_Node000018" title=" " alt="" coords="1773,119,1369,140,793,175,514,198,279,225,187,239,117,254,73,269,62,276,59,283,59,552,57,615,64,640,83,665,106,680,140,692,230,711,328,723,415,732,409,732,328,728,229,717,139,698,104,684,80,669,59,642,52,615,53,551,53,282,58,273,71,264,116,248,186,234,278,219,513,193,793,170,1369,135,1778,118"/> <area shape="poly" id="edge99_Node000050_Node000023" title=" " alt="" coords="1628,290,1250,313,724,349,471,372,258,398,175,412,111,426,71,440,62,447,59,453,59,552,58,614,64,639,83,665,99,676,123,687,185,704,318,728,313,730,184,710,121,692,97,681,79,669,60,641,52,615,53,551,53,452,58,443,69,435,110,421,174,406,257,393,470,367,724,344,1250,307,1633,288"/>
<area shape="poly" id="edge100_Node000050_Node000030" title=" " alt="" coords="1711,295,1733,344,1756,448,1768,551,1774,642,1775,708,1771,705,1769,642,1763,552,1750,449,1728,346,1708,300"/>
<area shape="poly" id="edge98_Node000050_Node000034" title=" " alt="" coords="1695,296,1591,424,1588,419,1690,299"/>
<area shape="poly" id="edge106_Node000052_Node000006" title=" " alt="" coords="2473,383,2497,433,2517,509,2530,586,2539,709,2535,705,2524,587,2512,510,2492,435,2470,388"/>
<area shape="poly" id="edge109_Node000053_Node000002" title=" " alt="" coords="2317,134,2270,175,2267,170,2312,136"/>
<area shape="poly" id="edge110_Node000053_Node000010" title=" " alt="" coords="2407,116,2541,131,2623,146,2711,167,2801,196,2889,234,2972,283,3010,312,3046,343,3082,386,3111,434,3135,485,3152,537,3175,634,3183,708,3179,705,3169,635,3147,539,3130,487,3107,436,3078,389,3042,347,3007,316,2969,287,2887,239,2799,201,2709,172,2622,151,2540,136,2408,121"/>
<area shape="poly" id="edge111_Node000053_Node000020" title=" " alt="" coords="2267,119,1998,136,1822,149,1641,166,1472,188,1331,215,1276,231,1235,247,1209,265,1202,274,1200,283,1200,552,1198,576,1192,600,1172,644,1146,683,1120,713,1118,708,1142,680,1167,642,1187,598,1193,575,1195,551,1195,283,1197,272,1205,261,1232,243,1274,226,1330,210,1471,183,1641,161,1822,144,1998,131,2272,118"/>
</map> </map>

View File

@@ -1 +1 @@
d7837a0707e4a71345e40c44c575cb47 85a8050a939a3a4ada26260f4fcff2c4

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 76 KiB

After

Width:  |  Height:  |  Size: 78 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 72 KiB

After

Width:  |  Height:  |  Size: 74 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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>
@@ -1006,7 +1006,7 @@ These methods return an unfinalized composition which must then be finalized by
<p>This method is intended to be implemented by derived classes to update their internal state based on the provided network conditions. For example, an adaptive engine might use this to re-evaluate which reactions and species are active. For other engines that do not support manually updating, this method might do nothing.</p> <p>This method is intended to be implemented by derived classes to update their internal state based on the provided network conditions. For example, an adaptive engine might use this to re-evaluate which reactions and species are active. For other engines that do not support manually updating, this method might do nothing.</p>
<dl class="section user"><dt>Usage Example:</dt><dd><div class="fragment"><div class="line"><a class="code hl_struct" href="structgridfire_1_1_net_in.html">NetIn</a> input = { ... };</div> <dl class="section user"><dt>Usage Example:</dt><dd><div class="fragment"><div class="line"><a class="code hl_struct" href="structgridfire_1_1_net_in.html">NetIn</a> input = { ... };</div>
<div class="line">myEngine.update(input);</div> <div class="line">myEngine.update(input);</div>
<div class="ttc" id="astructgridfire_1_1_net_in_html"><div class="ttname"><a href="structgridfire_1_1_net_in.html">gridfire::NetIn</a></div><div class="ttdef"><b>Definition</b> types.h:27</div></div> <div class="ttc" id="astructgridfire_1_1_net_in_html"><div class="ttname"><a href="structgridfire_1_1_net_in.html">gridfire::NetIn</a></div><div class="ttdef"><b>Definition</b> types.h:28</div></div>
</div><!-- fragment --></dd></dl> </div><!-- fragment --></dd></dl>
<dl class="section post"><dt>Postcondition</dt><dd>The internal state of the engine is updated to reflect the new conditions. </dd></dl> <dl class="section post"><dt>Postcondition</dt><dd>The internal state of the engine is updated to reflect the new conditions. </dd></dl>

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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>
@@ -139,8 +139,8 @@ 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:183</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:185</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:39</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:40</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>
<a id="a17d63e853d6efca31064e9147c80d497" name="a17d63e853d6efca31064e9147c80d497"></a> <a id="a17d63e853d6efca31064e9147c80d497" name="a17d63e853d6efca31064e9147c80d497"></a>

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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>
@@ -1698,7 +1698,7 @@ If a species is in the input comp but not in the network </dd></dl>
</dd> </dd>
</dl> </dl>
<p>Example usage: </p><div class="fragment"><div class="line"><a class="code hl_namespace" href="namespacegridfire_1_1engine.html">engine</a>.exportToCSV(<span class="stringliteral">&quot;network.csv&quot;</span>);</div> <p>Example usage: </p><div class="fragment"><div class="line"><a class="code hl_namespace" href="namespacegridfire_1_1engine.html">engine</a>.exportToCSV(<span class="stringliteral">&quot;network.csv&quot;</span>);</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:39</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:40</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</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.6rc4.0</span> <div id="projectname">GridFire<span id="projectnumber">&#160;v1.0.2</span>
</div> </div>
<div id="projectbrief">General Purpose Nuclear Network</div> <div id="projectbrief">General Purpose Nuclear Network</div>
</td> </td>
@@ -316,7 +316,7 @@ Private Attributes</h2></td></tr>
<div class="line"><span class="comment">// The integrator will call calculateRHSAndEnergy, etc. on the multiscaleEngine.</span></div> <div class="line"><span class="comment">// The integrator will call calculateRHSAndEnergy, etc. on the multiscaleEngine.</span></div>
<div class="line"><span class="keyword">auto</span> Y_initial = multiscaleEngine.mapNetInToMolarAbundanceVector({equilibratedComp, ...});</div> <div class="line"><span class="keyword">auto</span> Y_initial = multiscaleEngine.mapNetInToMolarAbundanceVector({equilibratedComp, ...});</div>
<div class="line"><span class="keyword">auto</span> derivatives = multiscaleEngine.calculateRHSAndEnergy(Y_initial, T9, rho);</div> <div class="line"><span class="keyword">auto</span> derivatives = multiscaleEngine.calculateRHSAndEnergy(Y_initial, T9, rho);</div>
<div class="ttc" id="astructgridfire_1_1_net_in_html"><div class="ttname"><a href="structgridfire_1_1_net_in.html">gridfire::NetIn</a></div><div class="ttdef"><b>Definition</b> types.h:27</div></div> <div class="ttc" id="astructgridfire_1_1_net_in_html"><div class="ttname"><a href="structgridfire_1_1_net_in.html">gridfire::NetIn</a></div><div class="ttdef"><b>Definition</b> types.h:28</div></div>
</div><!-- fragment --></dd></dl> </div><!-- fragment --></dd></dl>
<p>&lt;DynamicEngine&gt; </p> <p>&lt;DynamicEngine&gt; </p>
</div><h2 class="groupheader">Member Typedef Documentation</h2> </div><h2 class="groupheader">Member Typedef Documentation</h2>

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