Compare commits

..

17 Commits

Author SHA1 Message Date
10d8b17c63 Merge pull request #4 from tboudreaux/feat/non_conforming
Non Conforming Vacuum Domain
2026-09-09 12:44:20 -04:00
9a3fd9ee3d docs(docs): rebuilt docs 2026-09-09 12:39:53 -04:00
a0421d5ddc feat(mesh): non conforming vacuum
stroid can now generate non uniformly refined vacuum meshes. Note we still enforce that the stellar domain is fully conforming.
2026-09-09 12:39:27 -04:00
2347ae152f Merge pull request #3 from tboudreaux/feat/multi_block
Vacuum coordinate and multi block
2026-09-09 08:20:44 -04:00
62f092d225 fix(tests): removed unused tests 2026-09-09 08:13:44 -04:00
a5905e5fed feat(topology): vacuum coordinate and multi block
Two major changes in this version. First stroid now embeds a vacuum coordinate as part of its StroidMesh file (this is a packed set of mfem meshes and GridFunction). This is a logical coordinate from 0 at the stellar surface to 1 at the mesh surface / compactified infinity which can be used by consumers to much more stablly infer position in the vacuum region. Second, there is a new topology backend, multi_block, which has been made the default. See the readme for more information but the basic jist is that multi_block addes 6 transition blocks onto the edge of the core domain. This allows for a much more well conditioned transition from the internal cartesien region to the external spherical region. The mesh conditioning improves by roughly a factor of 1000 for the same refinement level when compared to the legacy topology. The legacy topology is maintained as a option if core_mapping is set to spherified in the config.
2026-09-09 08:11:08 -04:00
db727ebd7b fix(stroid): fixed header include 2026-07-01 11:31:00 -04:00
edfcea6943 build(wheels): brought wheel build scripts from GridFire over 2026-07-01 11:16:39 -04:00
7f69f19273 Merge pull request #2 from tboudreaux/feat/C2
Added TMOP solver to improve mesh conditioning
2026-07-01 11:15:32 -04:00
9aaa8529e0 test(tests): addded new tests 2026-07-01 11:14:32 -04:00
39e5117a24 feat(python): added python bindings 2026-07-01 11:14:12 -04:00
37416adb03 feat(stroid): added mesh viewer and tmop toggle 2026-04-07 12:58:16 -04:00
5a82311251 feat(topology): Added TMOP support
Meshes generated purley algebraically tend to be poorly conditioned. Incorporated MFEM's TMOP support based on a metric of ideal shape and unit size
2026-04-07 12:19:58 -04:00
a5ddf6a62f docs(changelog): added changelog 2026-03-20 13:31:29 -04:00
caff2ea204 docs(docs): regenerated for version v0.2.1 2026-03-20 13:27:11 -04:00
e46badd5c1 fix(cuviliniear.cpp): removed unused BSD proc header 2026-03-20 13:26:18 -04:00
321abd63bb Merge pull request #1 from tboudreaux/feature/kelvin
Generation of vacuum regions
2026-03-20 13:05:33 -04:00
297 changed files with 18648 additions and 2487 deletions

31
CHANGELOG.md Normal file
View File

@@ -0,0 +1,31 @@
## v0.2.1 (2026-03-20)
### Feat
- **tools**: Added winding visualization
- **src**: Enabled Vacuume Region Generation
### Fix
- **cuviliniear.cpp**: removed unused BSD proc header
- **stroid**: exit properly after stroid -v
## v0.1.0 (2026-01-31)
### Feat
- **release**: added macos release script
- **build-check**: added setup checks for stl compatibility
- **stroid**: improved CLI & fixed gcc bug
- **stroid**: added command line and tests
- **stroid**: first working version
- **stroid**: initial commit
### Fix
- **linux**: fixed linux compilation
- **build-check**: removed c lang
### Refactor
- **stroid**: changed default mesh format from VTU to MFEM

View File

@@ -48,7 +48,7 @@ PROJECT_NAME = stroid
# 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.2.0 PROJECT_NUMBER = v0.6.0
# 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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

View File

@@ -2,3 +2,19 @@ subdir('mfem')
subdir('libconfig') subdir('libconfig')
subdir('CLI11') subdir('CLI11')
subdir('magic_enum') subdir('magic_enum')
if get_option('build_python')
subdir('python')
subdir('pybind')
endif
if get_option('build_python')
stroid_pkg_dir = py_installation.get_install_dir() / 'stroid'
stroid_includedir = stroid_pkg_dir / 'include'
stroid_libdir = stroid_pkg_dir / 'lib'
stroid_pcdir = stroid_libdir / 'pkgconfig'
else
stroid_includedir = get_option('includedir')
stroid_libdir = get_option('libdir')
stroid_pcdir = get_option('libdir') / 'pkgconfig'
endif

View File

@@ -1,3 +1,6 @@
mfem_dep = dependency('mfem', required : false)
if not mfem_dep.found()
cmake = import('cmake') cmake = import('cmake')
mfem_cmake_options = cmake.subproject_options() mfem_cmake_options = cmake.subproject_options()
mfem_cmake_options.add_cmake_defines({ mfem_cmake_options.add_cmake_defines({
@@ -14,3 +17,6 @@ mfem_sp = cmake.subproject(
'mfem', 'mfem',
options: mfem_cmake_options) options: mfem_cmake_options)
mfem_dep = mfem_sp.dependency('mfem') mfem_dep = mfem_sp.dependency('mfem')
else
message('Using system-installed MFEM library')
endif

View File

@@ -0,0 +1,3 @@
pybind11_proj = subproject('pybind11')
pybind11_dep = pybind11_proj.get_variable('pybind11_dep')
python3_dep = dependency('python3')

View File

@@ -0,0 +1,5 @@
py_installation = import('python').find_installation('python3', pure: false)
py_dep = py_installation.dependency()
py_module_prefix = ''
py_module_suffix = 'so'

43
build-python/meson.build Normal file
View File

@@ -0,0 +1,43 @@
if get_option('build_python')
message('Building Python bindings...')
stroid_py_deps = [
py_dep,
pybind11_dep,
stroid_dep
]
if host_machine.system() == 'darwin'
stroid_ext_rpath = '@loader_path/lib'
else
stroid_ext_rpath = '$ORIGIN/lib'
endif
py_sources = [
meson.project_source_root() + '/src/python/bindings.cpp',
meson.project_source_root() + '/src/python/config/bindings.cpp',
meson.project_source_root() + '/src/python/exceptions/bindings.cpp',
meson.project_source_root() + '/src/python/IO/bindings.cpp',
meson.project_source_root() + '/src/python/refinement/bindings.cpp',
meson.project_source_root() + '/src/python/utils/bindings.cpp',
]
py_mod = py_installation.extension_module(
'_stroid',
sources: py_sources,
dependencies: stroid_py_deps,
install: true,
link_args: stroid_ext_rpath_args,
build_rpath: stroid_ext_rpath,
install_rpath: stroid_ext_rpath,
subdir: 'stroid',
)
py_installation.install_sources(
meson.project_source_root() + '/src/python/stroid/__init__.py',
subdir: 'stroid',
)
else
message('Python bindings disabled')
endif

View File

@@ -0,0 +1,21 @@
[main]
core_mapping = "multi_block"
refinement_levels = 2
order = 3
include_external_domain = true
r_core = 0.25
r_star = 1.0
r_infinity = 6.0
flattening = 0.0
r_instability = 1e-14
core_steepness = 1.0
continuity_order = 2
surface_bdr_id = 1
inf_bdr_id = 2
core_id = 1
envelope_id = 2
vacuum_id = 3
[main.optimization_methods]
tmop = false
smoothstep = true

View File

@@ -13,3 +13,6 @@ surface_bdr_id = 1
core_id = 1 core_id = 1
envelope_id = 2 envelope_id = 2
vacuum_id = 3 vacuum_id = 3
[main.optimization_methods]
smoothstep = true

View File

@@ -0,0 +1,17 @@
[main]
# Absolute minimum depths from the initial block topology.
refinement_levels = 4
vacuum_refinement_levels = 2
# Omit to inherit refinement_levels at the vacuum outer boundary.
# vacuum_outer_refinement_levels = 4
order = 3
include_external_domain = true
core_mapping = "multi_block"
r_core = 0.25
r_star = 1.0
r_infinity = 6.0
flattening = 0.0
[main.optimization_methods]
tmop = false
smoothstep = true

View File

@@ -13,3 +13,5 @@ surface_bdr_id = 1
core_id = 1 core_id = 1
envelope_id = 2 envelope_id = 2
vacuum_id = 3 vacuum_id = 3
[main.optimization_methods]
smoothstep = true

View File

@@ -14,3 +14,5 @@ core_id = 1
envelope_id = 2 envelope_id = 2
vacuum_id = 3 vacuum_id = 3
[main.optimization_methods]
smoothstep = true

View File

@@ -13,3 +13,5 @@ surface_bdr_id = 1
core_id = 1 core_id = 1
envelope_id = 2 envelope_id = 2
vacuum_id = 3 vacuum_id = 3
[main.optimization_methods]
smoothstep = true

View File

@@ -0,0 +1,17 @@
[main]
core_steepness = 1.0
flattening = 0.2
include_external_domain = false
inf_bdr_id = 2
order = 3
r_core = 1.5
r_infinity = 6.0
r_instability = 1e-14
r_star = 5.0
refinement_levels = 1
surface_bdr_id = 1
core_id = 1
envelope_id = 2
vacuum_id = 3
[main.optimization_methods]
smoothstep = true

View File

@@ -14,3 +14,5 @@ core_id = 1
envelope_id = 2 envelope_id = 2
vacuum_id = 3 vacuum_id = 3
[main.optimization_methods]
smoothstep = true

View File

@@ -14,3 +14,5 @@ core_id = 1
envelope_id = 2 envelope_id = 2
vacuum_id = 3 vacuum_id = 3
[main.optimization_methods]
smoothstep = true

View File

@@ -14,3 +14,5 @@ core_id = 1
envelope_id = 2 envelope_id = 2
vacuum_id = 3 vacuum_id = 3
[main.optimization_methods]
smoothstep = true

View File

@@ -14,3 +14,5 @@ core_id = 1
envelope_id = 2 envelope_id = 2
vacuum_id = 3 vacuum_id = 3
[main.optimization_methods]
smoothstep = true

View File

@@ -14,3 +14,5 @@ core_id = 1
envelope_id = 2 envelope_id = 2
vacuum_id = 3 vacuum_id = 3
[main.optimization_methods]
smoothstep = true

View File

@@ -31,7 +31,7 @@
<tr id="projectrow"> <tr id="projectrow">
<td id="projectlogo"><img alt="Logo" src="Logo.png"/></td> <td id="projectlogo"><img alt="Logo" src="Logo.png"/></td>
<td id="projectalign"> <td id="projectalign">
<div id="projectname">stroid<span id="projectnumber">&#160;v0.2.0</span> <div id="projectname">stroid<span id="projectnumber">&#160;v0.6.0</span>
</div> </div>
<div id="projectbrief">Multi-block curvilinear mesh generation</div> <div id="projectbrief">Multi-block curvilinear mesh generation</div>
</td> </td>

View File

@@ -31,7 +31,7 @@
<tr id="projectrow"> <tr id="projectrow">
<td id="projectlogo"><img alt="Logo" src="Logo.png"/></td> <td id="projectlogo"><img alt="Logo" src="Logo.png"/></td>
<td id="projectalign"> <td id="projectalign">
<div id="projectname">stroid<span id="projectnumber">&#160;v0.2.0</span> <div id="projectname">stroid<span id="projectnumber">&#160;v0.6.0</span>
</div> </div>
<div id="projectbrief">Multi-block curvilinear mesh generation</div> <div id="projectbrief">Multi-block curvilinear mesh generation</div>
</td> </td>
@@ -106,9 +106,39 @@ $(function(){initNavTree('annotated.html',''); initResizable(true); });
<div class="contents"> <div class="contents">
<div class="textblock">Here are the classes, structs, unions and interfaces with brief descriptions:</div><div class="directory"> <div class="textblock">Here are the classes, structs, unions and interfaces with brief descriptions:</div><div class="directory">
<div class="levels">[detail level <span onclick="javascript:dynsection.toggleLevel(1);">1</span><span onclick="javascript:dynsection.toggleLevel(2);">2</span><span onclick="javascript:dynsection.toggleLevel(3);">3</span>]</div><table class="directory"> <div class="levels">[detail level <span onclick="javascript:dynsection.toggleLevel(1);">1</span><span onclick="javascript:dynsection.toggleLevel(2);">2</span><span onclick="javascript:dynsection.toggleLevel(3);">3</span>]</div><table class="directory">
<tr id="row_0_" class="even"><td class="entry"><span style="width:0px;display:inline-block;">&#160;</span><span id="arr_0_" class="arrow" onclick="dynsection.toggleFolder('0_')">&#9660;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespacestroid.html" target="_self">stroid</a></td><td class="desc"></td></tr> <tr id="row_0_" class="even"><td class="entry"><span style="width:0px;display:inline-block;">&#160;</span><span id="arr_0_" class="arrow" onclick="dynsection.toggleFolder('0_')">&#9660;</span><span class="icona"><span class="icon">N</span></span><b>std</b></td><td class="desc">STL namespace </td></tr>
<tr id="row_0_0_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_0_0_" class="arrow" onclick="dynsection.toggleFolder('0_0_')">&#9660;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespacestroid_1_1config.html" target="_self">config</a></td><td class="desc"></td></tr> <tr id="row_0_0_" class="odd"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structstd_1_1formatter_3_01stroid_1_1stats_1_1_mesh_stats_00_01char_01_4.html" target="_self">formatter&lt; stroid::stats::MeshStats, char &gt;</a></td><td class="desc"></td></tr>
<tr id="row_0_0_0_" class="even"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structstroid_1_1config_1_1_mesh_config.html" target="_self">MeshConfig</a></td><td class="desc">Configuration parameters for stroid mesh generation </td></tr> <tr id="row_1_" class="even"><td class="entry"><span style="width:0px;display:inline-block;">&#160;</span><span id="arr_1_" class="arrow" onclick="dynsection.toggleFolder('1_')">&#9660;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespacestroid.html" target="_self">stroid</a></td><td class="desc">Public API surface for the stroid mesh generation library </td></tr>
<tr id="row_1_0_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_1_0_" class="arrow" onclick="dynsection.toggleFolder('1_0_')">&#9660;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespacestroid_1_1config.html" target="_self">config</a></td><td class="desc">Configuration types and defaults for mesh generation </td></tr>
<tr id="row_1_0_0_" class="even"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structstroid_1_1config_1_1_mesh_config.html" target="_self">MeshConfig</a></td><td class="desc">Configuration parameters for stroid mesh generation </td></tr>
<tr id="row_1_0_1_" class="odd"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structstroid_1_1config_1_1_optimization_methods.html" target="_self">OptimizationMethods</a></td><td class="desc"></td></tr>
<tr id="row_1_1_" class="even"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_1_1_" class="arrow" onclick="dynsection.toggleFolder('1_1_')">&#9660;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespacestroid_1_1exceptions.html" target="_self">exceptions</a></td><td class="desc"></td></tr>
<tr id="row_1_1_0_" class="odd"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classstroid_1_1exceptions_1_1_stroid_continuity_error.html" target="_self">StroidContinuityError</a></td><td class="desc"></td></tr>
<tr id="row_1_1_1_" class="even"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classstroid_1_1exceptions_1_1_stroid_error.html" target="_self">StroidError</a></td><td class="desc"></td></tr>
<tr id="row_1_1_2_" class="odd"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classstroid_1_1exceptions_1_1_stroid_mesh_error.html" target="_self">StroidMeshError</a></td><td class="desc"></td></tr>
<tr id="row_1_1_3_" class="even"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classstroid_1_1exceptions_1_1_stroid_missing_reference_mesh.html" target="_self">StroidMissingReferenceMesh</a></td><td class="desc"></td></tr>
<tr id="row_1_2_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_1_2_" class="arrow" onclick="dynsection.toggleFolder('1_2_')">&#9660;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespacestroid_1_1stats.html" target="_self">stats</a></td><td class="desc"></td></tr>
<tr id="row_1_2_0_" class="even"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structstroid_1_1stats_1_1_axis_stats.html" target="_self">AxisStats</a></td><td class="desc"></td></tr>
<tr id="row_1_2_1_" class="odd"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structstroid_1_1stats_1_1_bounding_box.html" target="_self">BoundingBox</a></td><td class="desc"></td></tr>
<tr id="row_1_2_2_" class="even"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structstroid_1_1stats_1_1_bounding_box_stats.html" target="_self">BoundingBoxStats</a></td><td class="desc"></td></tr>
<tr id="row_1_2_3_" class="odd"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structstroid_1_1stats_1_1_bowing_stats.html" target="_self">BowingStats</a></td><td class="desc"></td></tr>
<tr id="row_1_2_4_" class="even"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structstroid_1_1stats_1_1_centroid_stats.html" target="_self">CentroidStats</a></td><td class="desc"></td></tr>
<tr id="row_1_2_5_" class="odd"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structstroid_1_1stats_1_1_config_meta.html" target="_self">ConfigMeta</a></td><td class="desc"></td></tr>
<tr id="row_1_2_6_" class="even"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structstroid_1_1stats_1_1_conformity_stats.html" target="_self">ConformityStats</a></td><td class="desc"></td></tr>
<tr id="row_1_2_7_" class="odd"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structstroid_1_1stats_1_1_element_counts.html" target="_self">ElementCounts</a></td><td class="desc"></td></tr>
<tr id="row_1_2_8_" class="even"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structstroid_1_1stats_1_1_ellipticity_stats.html" target="_self">EllipticityStats</a></td><td class="desc"></td></tr>
<tr id="row_1_2_9_" class="odd"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structstroid_1_1stats_1_1_jacobian_stats.html" target="_self">JacobianStats</a></td><td class="desc"></td></tr>
<tr id="row_1_2_10_" class="even"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structstroid_1_1stats_1_1_mesh_size_stats.html" target="_self">MeshSizeStats</a></td><td class="desc"></td></tr>
<tr id="row_1_2_11_" class="odd"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structstroid_1_1stats_1_1_mesh_stats.html" target="_self">MeshStats</a></td><td class="desc"></td></tr>
<tr id="row_1_2_12_" class="even"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structstroid_1_1stats_1_1_outer_bounds_stats.html" target="_self">OuterBoundsStats</a></td><td class="desc"></td></tr>
<tr id="row_1_2_13_" class="odd"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structstroid_1_1stats_1_1_radius_stats.html" target="_self">RadiusStats</a></td><td class="desc"></td></tr>
<tr id="row_1_2_14_" class="even"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structstroid_1_1stats_1_1_refinement_stats.html" target="_self">RefinementStats</a></td><td class="desc"></td></tr>
<tr id="row_1_2_15_" class="odd"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structstroid_1_1stats_1_1_region_refinement_stats.html" target="_self">RegionRefinementStats</a></td><td class="desc"></td></tr>
<tr id="row_1_2_16_" class="even"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structstroid_1_1stats_1_1_volume_area_stats.html" target="_self">VolumeAreaStats</a></td><td class="desc"></td></tr>
<tr id="row_1_3_" class="odd"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_1_3_" class="arrow" onclick="dynsection.toggleFolder('1_3_')">&#9660;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespacestroid_1_1topology.html" target="_self">topology</a></td><td class="desc">Topology construction and curvilinear mapping utilities </td></tr>
<tr id="row_1_3_0_" class="even"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classstroid_1_1topology_1_1_t_m_o_p_progress_bar.html" target="_self">TMOPProgressBar</a></td><td class="desc"></td></tr>
<tr id="row_1_4_" class="odd"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structstroid_1_1_scalar_mesh_field.html" target="_self">ScalarMeshField</a></td><td class="desc"></td></tr>
<tr id="row_1_5_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structstroid_1_1_stroid_mesh.html" target="_self">StroidMesh</a></td><td class="desc"></td></tr>
</table> </table>
</div><!-- directory --> </div><!-- directory -->
</div><!-- contents --> </div><!-- contents -->

View File

@@ -1,8 +1,42 @@
var annotated_dup = var annotated_dup =
[ [
[ "std", null, [
[ "formatter< stroid::stats::MeshStats, char >", "structstd_1_1formatter_3_01stroid_1_1stats_1_1_mesh_stats_00_01char_01_4.html", "structstd_1_1formatter_3_01stroid_1_1stats_1_1_mesh_stats_00_01char_01_4" ]
] ],
[ "stroid", "namespacestroid.html", [ [ "stroid", "namespacestroid.html", [
[ "config", "namespacestroid_1_1config.html", [ [ "config", "namespacestroid_1_1config.html", [
[ "MeshConfig", "structstroid_1_1config_1_1_mesh_config.html", "structstroid_1_1config_1_1_mesh_config" ] [ "MeshConfig", "structstroid_1_1config_1_1_mesh_config.html", "structstroid_1_1config_1_1_mesh_config" ],
] ] [ "OptimizationMethods", "structstroid_1_1config_1_1_optimization_methods.html", "structstroid_1_1config_1_1_optimization_methods" ]
] ],
[ "exceptions", "namespacestroid_1_1exceptions.html", [
[ "StroidContinuityError", "classstroid_1_1exceptions_1_1_stroid_continuity_error.html", "classstroid_1_1exceptions_1_1_stroid_continuity_error" ],
[ "StroidError", "classstroid_1_1exceptions_1_1_stroid_error.html", "classstroid_1_1exceptions_1_1_stroid_error" ],
[ "StroidMeshError", "classstroid_1_1exceptions_1_1_stroid_mesh_error.html", "classstroid_1_1exceptions_1_1_stroid_mesh_error" ],
[ "StroidMissingReferenceMesh", "classstroid_1_1exceptions_1_1_stroid_missing_reference_mesh.html", null ]
] ],
[ "stats", "namespacestroid_1_1stats.html", [
[ "AxisStats", "structstroid_1_1stats_1_1_axis_stats.html", "structstroid_1_1stats_1_1_axis_stats" ],
[ "BoundingBox", "structstroid_1_1stats_1_1_bounding_box.html", "structstroid_1_1stats_1_1_bounding_box" ],
[ "BoundingBoxStats", "structstroid_1_1stats_1_1_bounding_box_stats.html", "structstroid_1_1stats_1_1_bounding_box_stats" ],
[ "BowingStats", "structstroid_1_1stats_1_1_bowing_stats.html", "structstroid_1_1stats_1_1_bowing_stats" ],
[ "CentroidStats", "structstroid_1_1stats_1_1_centroid_stats.html", "structstroid_1_1stats_1_1_centroid_stats" ],
[ "ConfigMeta", "structstroid_1_1stats_1_1_config_meta.html", "structstroid_1_1stats_1_1_config_meta" ],
[ "ConformityStats", "structstroid_1_1stats_1_1_conformity_stats.html", "structstroid_1_1stats_1_1_conformity_stats" ],
[ "ElementCounts", "structstroid_1_1stats_1_1_element_counts.html", "structstroid_1_1stats_1_1_element_counts" ],
[ "EllipticityStats", "structstroid_1_1stats_1_1_ellipticity_stats.html", "structstroid_1_1stats_1_1_ellipticity_stats" ],
[ "JacobianStats", "structstroid_1_1stats_1_1_jacobian_stats.html", "structstroid_1_1stats_1_1_jacobian_stats" ],
[ "MeshSizeStats", "structstroid_1_1stats_1_1_mesh_size_stats.html", "structstroid_1_1stats_1_1_mesh_size_stats" ],
[ "MeshStats", "structstroid_1_1stats_1_1_mesh_stats.html", "structstroid_1_1stats_1_1_mesh_stats" ],
[ "OuterBoundsStats", "structstroid_1_1stats_1_1_outer_bounds_stats.html", "structstroid_1_1stats_1_1_outer_bounds_stats" ],
[ "RadiusStats", "structstroid_1_1stats_1_1_radius_stats.html", "structstroid_1_1stats_1_1_radius_stats" ],
[ "RefinementStats", "structstroid_1_1stats_1_1_refinement_stats.html", "structstroid_1_1stats_1_1_refinement_stats" ],
[ "RegionRefinementStats", "structstroid_1_1stats_1_1_region_refinement_stats.html", "structstroid_1_1stats_1_1_region_refinement_stats" ],
[ "VolumeAreaStats", "structstroid_1_1stats_1_1_volume_area_stats.html", "structstroid_1_1stats_1_1_volume_area_stats" ]
] ],
[ "topology", "namespacestroid_1_1topology.html", [
[ "TMOPProgressBar", "classstroid_1_1topology_1_1_t_m_o_p_progress_bar.html", "classstroid_1_1topology_1_1_t_m_o_p_progress_bar" ]
] ],
[ "ScalarMeshField", "structstroid_1_1_scalar_mesh_field.html", "structstroid_1_1_scalar_mesh_field" ],
[ "StroidMesh", "structstroid_1_1_stroid_mesh.html", "structstroid_1_1_stroid_mesh" ]
] ] ] ]
]; ];

View File

@@ -31,7 +31,7 @@
<tr id="projectrow"> <tr id="projectrow">
<td id="projectlogo"><img alt="Logo" src="Logo.png"/></td> <td id="projectlogo"><img alt="Logo" src="Logo.png"/></td>
<td id="projectalign"> <td id="projectalign">
<div id="projectname">stroid<span id="projectnumber">&#160;v0.2.0</span> <div id="projectname">stroid<span id="projectnumber">&#160;v0.6.0</span>
</div> </div>
<div id="projectbrief">Multi-block curvilinear mesh generation</div> <div id="projectbrief">Multi-block curvilinear mesh generation</div>
</td> </td>
@@ -104,11 +104,44 @@ $(function(){initNavTree('classes.html',''); initResizable(true); });
<div class="headertitle"><div class="title">Class Index</div></div> <div class="headertitle"><div class="title">Class Index</div></div>
</div><!--header--> </div><!--header-->
<div class="contents"> <div class="contents">
<div class="qindex"><a class="qindex" href="#letter_M">M</a></div> <div class="qindex"><a class="qindex" href="#letter_A">A</a>&#160;|&#160;<a class="qindex" href="#letter_B">B</a>&#160;|&#160;<a class="qindex" href="#letter_C">C</a>&#160;|&#160;<a class="qindex" href="#letter_E">E</a>&#160;|&#160;<a class="qindex" href="#letter_F">F</a>&#160;|&#160;<a class="qindex" href="#letter_J">J</a>&#160;|&#160;<a class="qindex" href="#letter_M">M</a>&#160;|&#160;<a class="qindex" href="#letter_O">O</a>&#160;|&#160;<a class="qindex" href="#letter_R">R</a>&#160;|&#160;<a class="qindex" href="#letter_S">S</a>&#160;|&#160;<a class="qindex" href="#letter_T">T</a>&#160;|&#160;<a class="qindex" href="#letter_V">V</a></div>
<div class="classindex"> <div class="classindex">
<dl class="classindex even"> <dl class="classindex even">
<dt class="alphachar"><a id="letter_A" name="letter_A">A</a></dt>
<dd><a class="el" href="structstroid_1_1stats_1_1_axis_stats.html">AxisStats</a> (<a class="el" href="namespacestroid_1_1stats.html">stroid::stats</a>)</dd></dl>
<dl class="classindex odd">
<dt class="alphachar"><a id="letter_B" name="letter_B">B</a></dt>
<dd><a class="el" href="structstroid_1_1stats_1_1_bounding_box.html">BoundingBox</a> (<a class="el" href="namespacestroid_1_1stats.html">stroid::stats</a>)</dd><dd><a class="el" href="structstroid_1_1stats_1_1_bounding_box_stats.html">BoundingBoxStats</a> (<a class="el" href="namespacestroid_1_1stats.html">stroid::stats</a>)</dd><dd><a class="el" href="structstroid_1_1stats_1_1_bowing_stats.html">BowingStats</a> (<a class="el" href="namespacestroid_1_1stats.html">stroid::stats</a>)</dd></dl>
<dl class="classindex even">
<dt class="alphachar"><a id="letter_C" name="letter_C">C</a></dt>
<dd><a class="el" href="structstroid_1_1stats_1_1_centroid_stats.html">CentroidStats</a> (<a class="el" href="namespacestroid_1_1stats.html">stroid::stats</a>)</dd><dd><a class="el" href="structstroid_1_1stats_1_1_config_meta.html">ConfigMeta</a> (<a class="el" href="namespacestroid_1_1stats.html">stroid::stats</a>)</dd><dd><a class="el" href="structstroid_1_1stats_1_1_conformity_stats.html">ConformityStats</a> (<a class="el" href="namespacestroid_1_1stats.html">stroid::stats</a>)</dd></dl>
<dl class="classindex odd">
<dt class="alphachar"><a id="letter_E" name="letter_E">E</a></dt>
<dd><a class="el" href="structstroid_1_1stats_1_1_element_counts.html">ElementCounts</a> (<a class="el" href="namespacestroid_1_1stats.html">stroid::stats</a>)</dd><dd><a class="el" href="structstroid_1_1stats_1_1_ellipticity_stats.html">EllipticityStats</a> (<a class="el" href="namespacestroid_1_1stats.html">stroid::stats</a>)</dd></dl>
<dl class="classindex even">
<dt class="alphachar"><a id="letter_F" name="letter_F">F</a></dt>
<dd><a class="el" href="structstd_1_1formatter_3_01stroid_1_1stats_1_1_mesh_stats_00_01char_01_4.html">formatter&lt; stroid::stats::MeshStats, char &gt;</a> (std)</dd></dl>
<dl class="classindex odd">
<dt class="alphachar"><a id="letter_J" name="letter_J">J</a></dt>
<dd><a class="el" href="structstroid_1_1stats_1_1_jacobian_stats.html">JacobianStats</a> (<a class="el" href="namespacestroid_1_1stats.html">stroid::stats</a>)</dd></dl>
<dl class="classindex even">
<dt class="alphachar"><a id="letter_M" name="letter_M">M</a></dt> <dt class="alphachar"><a id="letter_M" name="letter_M">M</a></dt>
<dd><a class="el" href="structstroid_1_1config_1_1_mesh_config.html">MeshConfig</a> (<a class="el" href="namespacestroid_1_1config.html">stroid::config</a>)</dd></dl> <dd><a class="el" href="structstroid_1_1config_1_1_mesh_config.html">MeshConfig</a> (<a class="el" href="namespacestroid_1_1config.html">stroid::config</a>)</dd><dd><a class="el" href="structstroid_1_1stats_1_1_mesh_size_stats.html">MeshSizeStats</a> (<a class="el" href="namespacestroid_1_1stats.html">stroid::stats</a>)</dd><dd><a class="el" href="structstroid_1_1stats_1_1_mesh_stats.html">MeshStats</a> (<a class="el" href="namespacestroid_1_1stats.html">stroid::stats</a>)</dd></dl>
<dl class="classindex odd">
<dt class="alphachar"><a id="letter_O" name="letter_O">O</a></dt>
<dd><a class="el" href="structstroid_1_1config_1_1_optimization_methods.html">OptimizationMethods</a> (<a class="el" href="namespacestroid_1_1config.html">stroid::config</a>)</dd><dd><a class="el" href="structstroid_1_1stats_1_1_outer_bounds_stats.html">OuterBoundsStats</a> (<a class="el" href="namespacestroid_1_1stats.html">stroid::stats</a>)</dd></dl>
<dl class="classindex even">
<dt class="alphachar"><a id="letter_R" name="letter_R">R</a></dt>
<dd><a class="el" href="structstroid_1_1stats_1_1_radius_stats.html">RadiusStats</a> (<a class="el" href="namespacestroid_1_1stats.html">stroid::stats</a>)</dd><dd><a class="el" href="structstroid_1_1stats_1_1_refinement_stats.html">RefinementStats</a> (<a class="el" href="namespacestroid_1_1stats.html">stroid::stats</a>)</dd><dd><a class="el" href="structstroid_1_1stats_1_1_region_refinement_stats.html">RegionRefinementStats</a> (<a class="el" href="namespacestroid_1_1stats.html">stroid::stats</a>)</dd></dl>
<dl class="classindex odd">
<dt class="alphachar"><a id="letter_S" name="letter_S">S</a></dt>
<dd><a class="el" href="structstroid_1_1_scalar_mesh_field.html">ScalarMeshField</a> (<a class="el" href="namespacestroid.html">stroid</a>)</dd><dd><a class="el" href="classstroid_1_1exceptions_1_1_stroid_continuity_error.html">StroidContinuityError</a> (<a class="el" href="namespacestroid_1_1exceptions.html">stroid::exceptions</a>)</dd><dd><a class="el" href="classstroid_1_1exceptions_1_1_stroid_error.html">StroidError</a> (<a class="el" href="namespacestroid_1_1exceptions.html">stroid::exceptions</a>)</dd><dd><a class="el" href="structstroid_1_1_stroid_mesh.html">StroidMesh</a> (<a class="el" href="namespacestroid.html">stroid</a>)</dd><dd><a class="el" href="classstroid_1_1exceptions_1_1_stroid_mesh_error.html">StroidMeshError</a> (<a class="el" href="namespacestroid_1_1exceptions.html">stroid::exceptions</a>)</dd><dd><a class="el" href="classstroid_1_1exceptions_1_1_stroid_missing_reference_mesh.html">StroidMissingReferenceMesh</a> (<a class="el" href="namespacestroid_1_1exceptions.html">stroid::exceptions</a>)</dd></dl>
<dl class="classindex even">
<dt class="alphachar"><a id="letter_T" name="letter_T">T</a></dt>
<dd><a class="el" href="classstroid_1_1topology_1_1_t_m_o_p_progress_bar.html">TMOPProgressBar</a> (<a class="el" href="namespacestroid_1_1topology.html">stroid::topology</a>)</dd></dl>
<dl class="classindex odd">
<dt class="alphachar"><a id="letter_V" name="letter_V">V</a></dt>
<dd><a class="el" href="structstroid_1_1stats_1_1_volume_area_stats.html">VolumeAreaStats</a> (<a class="el" href="namespacestroid_1_1stats.html">stroid::stats</a>)</dd></dl>
</div> </div>
</div><!-- contents --> </div><!-- contents -->
</div><!-- doc-content --> </div><!-- doc-content -->

View File

@@ -31,7 +31,7 @@
<tr id="projectrow"> <tr id="projectrow">
<td id="projectlogo"><img alt="Logo" src="Logo.png"/></td> <td id="projectlogo"><img alt="Logo" src="Logo.png"/></td>
<td id="projectalign"> <td id="projectalign">
<div id="projectname">stroid<span id="projectnumber">&#160;v0.2.0</span> <div id="projectname">stroid<span id="projectnumber">&#160;v0.6.0</span>
</div> </div>
<div id="projectbrief">Multi-block curvilinear mesh generation</div> <div id="projectbrief">Multi-block curvilinear mesh generation</div>
</td> </td>
@@ -103,18 +103,31 @@ $(function(){initNavTree('config_8h.html',''); initResizable(true); });
<div class="header"> <div class="header">
<div class="summary"> <div class="summary">
<a href="#nested-classes">Classes</a> &#124; <a href="#nested-classes">Classes</a> &#124;
<a href="#namespaces">Namespaces</a> </div> <a href="#namespaces">Namespaces</a> &#124;
<a href="#func-members">Functions</a> </div>
<div class="headertitle"><div class="title">config.h File Reference</div></div> <div class="headertitle"><div class="title">config.h File Reference</div></div>
</div><!--header--> </div><!--header-->
<div class="contents"> <div class="contents">
<div class="textblock"><div class="dynheader"> <div class="textblock"><code>#include &lt;cstdint&gt;</code><br />
<code>#include &lt;optional&gt;</code><br />
<code>#include &lt;string&gt;</code><br />
<code>#include &lt;format&gt;</code><br />
<code>#include &lt;sstream&gt;</code><br />
</div><div class="textblock"><div class="dynheader">
Include dependency graph for config.h:</div>
<div class="dyncontent">
<div class="center"><iframe scrolling="no" frameborder="0" src="config_8h__incl.svg" width="415" height="126"><p><b>This browser is not able to show SVG: try Firefox, Chrome, Safari, or Opera instead.</b></p></iframe></div>
</div>
</div><div class="textblock"><div class="dynheader">
This graph shows which files directly or indirectly include this file:</div> This graph shows which files directly or indirectly include this file:</div>
<div class="dyncontent"> <div class="dyncontent">
<div class="center"><div class="zoom"><iframe scrolling="no" frameborder="0" src="config_8h__dep__incl.svg" width="100%" height="460"><p><b>This browser is not able to show SVG: try Firefox, Chrome, Safari, or Opera instead.</b></p></iframe></div></div> <div class="center"><div class="zoom"><iframe scrolling="no" frameborder="0" src="config_8h__dep__incl.svg" width="100%" height="593"><p><b>This browser is not able to show SVG: try Firefox, Chrome, Safari, or Opera instead.</b></p></iframe></div></div>
</div> </div>
</div><table class="memberdecls"> </div><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="nested-classes" name="nested-classes"></a> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="nested-classes" name="nested-classes"></a>
Classes</h2></td></tr> Classes</h2></td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structstroid_1_1config_1_1_optimization_methods.html">stroid::config::OptimizationMethods</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structstroid_1_1config_1_1_mesh_config.html">stroid::config::MeshConfig</a></td></tr> <tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structstroid_1_1config_1_1_mesh_config.html">stroid::config::MeshConfig</a></td></tr>
<tr class="memdesc:"><td class="mdescLeft">&#160;</td><td class="mdescRight">Configuration parameters for stroid mesh generation. <a href="structstroid_1_1config_1_1_mesh_config.html#details">More...</a><br /></td></tr> <tr class="memdesc:"><td class="mdescLeft">&#160;</td><td class="mdescRight">Configuration parameters for stroid mesh generation. <a href="structstroid_1_1config_1_1_mesh_config.html#details">More...</a><br /></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr>
@@ -122,9 +135,19 @@ Classes</h2></td></tr>
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="namespaces" name="namespaces"></a> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="namespaces" name="namespaces"></a>
Namespaces</h2></td></tr> Namespaces</h2></td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">namespace &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacestroid.html">stroid</a></td></tr> <tr class="memitem:"><td class="memItemLeft" align="right" valign="top">namespace &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacestroid.html">stroid</a></td></tr>
<tr class="memdesc:namespacestroid"><td class="mdescLeft">&#160;</td><td class="mdescRight">Public API surface for the stroid mesh generation library. <br /></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">namespace &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacestroid_1_1config.html">stroid::config</a></td></tr> <tr class="memitem:"><td class="memItemLeft" align="right" valign="top">namespace &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacestroid_1_1config.html">stroid::config</a></td></tr>
<tr class="memdesc:namespacestroid_1_1config"><td class="mdescLeft">&#160;</td><td class="mdescRight">Configuration types and defaults for mesh generation. <br /></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="func-members" name="func-members"></a>
Functions</h2></td></tr>
<tr class="memitem:a84d2f4618367487820ac818c3c47a39a" id="r_a84d2f4618367487820ac818c3c47a39a"><td class="memItemLeft" align="right" valign="top"><a class="el" href="structstroid_1_1config_1_1_mesh_config.html">MeshConfig</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacestroid_1_1config.html#a84d2f4618367487820ac818c3c47a39a">stroid::config::ResolveDefaults</a> (const <a class="el" href="structstroid_1_1config_1_1_mesh_config.html">MeshConfig</a> &amp;mesh_config)</td></tr>
<tr class="memdesc:a84d2f4618367487820ac818c3c47a39a"><td class="mdescLeft">&#160;</td><td class="mdescRight">Fill omitted configuration values. <br /></td></tr>
<tr class="separator:a84d2f4618367487820ac818c3c47a39a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4f2409cb05fd572794c115d850502d61" id="r_a4f2409cb05fd572794c115d850502d61"><td class="memItemLeft" align="right" valign="top">std::string&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacestroid_1_1config.html#a4f2409cb05fd572794c115d850502d61">stroid::config::to_string</a> (const <a class="el" href="structstroid_1_1config_1_1_mesh_config.html">MeshConfig</a> &amp;mesh_config)</td></tr>
<tr class="separator:a4f2409cb05fd572794c115d850502d61"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table> </table>
</div><!-- contents --> </div><!-- contents -->
</div><!-- doc-content --> </div><!-- doc-content -->

View File

@@ -1,4 +1,7 @@
var config_8h = var config_8h =
[ [
[ "stroid::config::MeshConfig", "structstroid_1_1config_1_1_mesh_config.html", "structstroid_1_1config_1_1_mesh_config" ] [ "stroid::config::OptimizationMethods", "structstroid_1_1config_1_1_optimization_methods.html", "structstroid_1_1config_1_1_optimization_methods" ],
[ "stroid::config::MeshConfig", "structstroid_1_1config_1_1_mesh_config.html", "structstroid_1_1config_1_1_mesh_config" ],
[ "stroid::config::ResolveDefaults", "namespacestroid_1_1config.html#a84d2f4618367487820ac818c3c47a39a", null ],
[ "stroid::config::to_string", "namespacestroid_1_1config.html#a4f2409cb05fd572794c115d850502d61", null ]
]; ];

View File

@@ -1,18 +1,71 @@
<map id="src/include/stroid/config/config.h" name="src/include/stroid/config/config.h"> <map id="src/include/stroid/config/config.h" name="src/include/stroid/config/config.h">
<area shape="rect" id="Node000001" title=" " alt="" coords="371,5,492,46"/> <area shape="rect" id="Node000001" title=" " alt="" coords="1047,5,1167,46"/>
<area shape="rect" id="Node000002" href="$curvilinear_8h.html" title=" " alt="" coords="30,94,177,135"/> <area shape="rect" id="Node000002" href="$stroid_8h.html" title=" " alt="" coords="1008,271,1128,312"/>
<area shape="poly" id="edge1_Node000001_Node000002" title=" " alt="" coords="357,49,178,96,177,91,356,44"/> <area shape="poly" id="edge1_Node000001_Node000002" title=" " alt="" coords="1034,50,986,74,937,103,893,139,874,160,859,184,852,203,858,221,912,241,1010,273,1005,273,910,247,854,225,846,203,854,181,870,157,889,135,934,98,983,69,1029,52"/>
<area shape="rect" id="Node000004" href="$mapping_8h.html" title=" " alt="" coords="201,94,339,135"/> <area shape="rect" id="Node000004" href="$curvilinear_8h.html" title=" " alt="" coords="868,183,1015,223"/>
<area shape="poly" id="edge3_Node000001_Node000004" title=" " alt="" coords="383,56,308,96,305,91,380,51"/> <area shape="poly" id="edge3_Node000001_Node000004" title=" " alt="" coords="1081,56,962,184,959,180,1076,58"/>
<area shape="rect" id="Node000006" href="$topology_8h.html" title=" " alt="" coords="363,94,500,135"/> <area shape="rect" id="Node000005" href="$mesh_8cpp.html" title=" " alt="" coords="437,279,572,304"/>
<area shape="poly" id="edge6_Node000001_Node000006" title=" " alt="" coords="434,62,434,94,429,94,429,62"/> <area shape="poly" id="edge43_Node000001_Node000005" title=" " alt="" coords="1029,35,894,55,733,85,656,105,588,128,535,154,515,169,501,184,492,207,491,233,502,280,497,277,486,234,487,206,497,181,512,165,532,150,586,123,655,100,732,80,894,50,1034,34"/>
<area shape="rect" id="Node000007" href="$mesh_8cpp.html" title=" " alt="" coords="524,102,659,127"/> <area shape="rect" id="Node000009" href="$mapping_8h.html" title=" " alt="" coords="272,183,411,223"/>
<area shape="poly" id="edge7_Node000001_Node000007" title=" " alt="" coords="482,51,570,99,568,103,480,56"/> <area shape="poly" id="edge9_Node000001_Node000009" title=" " alt="" coords="1029,29,893,37,725,48,567,67,503,81,456,96,426,115,398,138,357,184,354,180,394,134,422,110,454,92,502,75,566,62,725,43,893,32,1034,28"/>
<area shape="rect" id="Node000008" href="$topology_8cpp.html" title=" " alt="" coords="683,102,868,127"/> <area shape="rect" id="Node000011" href="$optimize_8h.html" title=" " alt="" coords="655,183,794,223"/>
<area shape="poly" id="edge8_Node000001_Node000008" title=" " alt="" coords="508,43,728,98,726,103,506,48"/> <area shape="poly" id="edge13_Node000001_Node000011" title=" " alt="" coords="1029,31,980,40,924,52,867,70,814,96,789,116,767,139,736,185,733,180,763,136,785,112,811,92,865,65,923,47,980,35,1034,30"/>
<area shape="rect" id="Node000003" href="$curvilinear_8cpp.html" title=" " alt="" coords="5,183,202,208"/> <area shape="rect" id="Node000013" href="$topology_8h.html" title=" " alt="" coords="1039,183,1175,223"/>
<area shape="poly" id="edge2_Node000002_Node000003" title=" " alt="" coords="106,150,106,182,101,182,101,150"/> <area shape="poly" id="edge17_Node000001_Node000013" title=" " alt="" coords="1109,59,1109,184,1105,181,1105,63"/>
<area shape="poly" id="edge4_Node000004_Node000003" title=" " alt="" coords="216,144,130,185,128,180,214,139"/> <area shape="rect" id="Node000014" href="$mesh__stats_8h.html" title=" " alt="" coords="1672,183,1804,223"/>
<area shape="rect" id="Node000005" href="$mapping_8cpp.html" title=" " alt="" coords="226,183,413,208"/> <area shape="poly" id="edge20_Node000001_Node000014" title=" " alt="" coords="1182,40,1255,61,1330,92,1346,102,1357,113,1368,123,1384,132,1456,157,1514,165,1575,169,1651,180,1674,187,1668,187,1651,185,1574,175,1514,170,1454,162,1382,137,1365,127,1354,117,1343,107,1327,96,1253,66,1182,45"/>
<area shape="poly" id="edge5_Node000004_Node000005" title=" " alt="" coords="293,147,314,181,310,183,288,149"/> <area shape="rect" id="Node000017" href="$mesh__utils_8h.html" title=" " alt="" coords="1469,183,1596,223"/>
<area shape="poly" id="edge24_Node000001_Node000017" title=" " alt="" coords="1182,49,1232,68,1282,92,1310,112,1339,132,1405,161,1471,185,1466,184,1403,166,1336,137,1307,117,1279,96,1230,73,1182,54"/>
<area shape="rect" id="Node000018" href="$types_8h.html" title=" " alt="" coords="1148,94,1268,135"/>
<area shape="poly" id="edge29_Node000001_Node000018" title=" " alt="" coords="1142,54,1188,94,1183,93,1141,59"/>
<area shape="rect" id="Node000023" href="$topology_8cpp.html" title=" " alt="" coords="1394,102,1580,127"/>
<area shape="poly" id="edge44_Node000001_Node000023" title=" " alt="" coords="1183,41,1436,101,1431,101,1182,47"/>
<area shape="rect" id="Node000024" href="$config_2bindings_8cpp.html" title=" " alt="" coords="1604,102,1802,127"/>
<area shape="poly" id="edge45_Node000001_Node000024" title=" " alt="" coords="1182,34,1593,91,1637,101,1632,101,1592,97,1182,39"/>
<area shape="rect" id="Node000003" href="$bindings_8cpp.html" title=" " alt="" coords="989,360,1148,386"/>
<area shape="poly" id="edge2_Node000002_Node000003" title=" " alt="" coords="1070,326,1070,361,1066,358,1066,330"/>
<area shape="poly" id="edge4_Node000004_Node000002" title=" " alt="" coords="983,230,1042,271,1037,270,982,235"/>
<area shape="poly" id="edge5_Node000004_Node000005" title=" " alt="" coords="850,220,584,274,553,281,552,276,582,269,855,219"/>
<area shape="rect" id="Node000006" href="$uniform_8cpp.html" title=" " alt="" coords="1153,271,1274,312"/>
<area shape="poly" id="edge6_Node000004_Node000006" title=" " alt="" coords="1019,226,1155,271,1150,271,1018,231"/>
<area shape="rect" id="Node000007" href="$curvilinear_8cpp.html" title=" " alt="" coords="217,279,413,304"/>
<area shape="poly" id="edge7_Node000004_Node000007" title=" " alt="" coords="850,217,806,226,615,249,425,274,383,281,381,276,424,269,615,244,805,221,855,216"/>
<area shape="rect" id="Node000008" href="$mesh__utils_8cpp.html" title=" " alt="" coords="1470,271,1590,312"/>
<area shape="poly" id="edge8_Node000004_Node000008" title=" " alt="" coords="1031,221,1151,236,1246,243,1340,251,1458,269,1472,274,1466,273,1457,274,1339,256,1246,249,1151,242,1031,226"/>
<area shape="poly" id="edge10_Node000009_Node000002" title=" " alt="" coords="426,212,499,221,639,233,749,239,858,248,997,269,1010,274,1005,273,996,274,857,253,748,244,639,238,499,226,427,218"/>
<area shape="poly" id="edge11_Node000009_Node000007" title=" " alt="" coords="333,237,321,280,317,277,329,240"/>
<area shape="rect" id="Node000010" href="$mapping_8cpp.html" title=" " alt="" coords="5,279,193,304"/>
<area shape="poly" id="edge12_Node000009_Node000010" title=" " alt="" coords="271,231,134,281,132,276,274,227"/>
<area shape="poly" id="edge14_Node000011_Node000002" title=" " alt="" coords="809,222,997,269,1011,274,1005,274,996,274,808,227"/>
<area shape="poly" id="edge15_Node000011_Node000006" title=" " alt="" coords="809,214,990,242,1141,269,1155,274,1150,274,1140,274,989,248,808,220"/>
<area shape="rect" id="Node000012" href="$optimize_8cpp.html" title=" " alt="" coords="797,279,985,304"/>
<area shape="poly" id="edge16_Node000011_Node000012" title=" " alt="" coords="776,228,870,279,865,278,775,233"/>
<area shape="poly" id="edge18_Node000013_Node000002" title=" " alt="" coords="1094,236,1079,273,1075,269,1090,239"/>
<area shape="poly" id="edge19_Node000013_Node000006" title=" " alt="" coords="1144,231,1192,272,1187,270,1142,236"/>
<area shape="poly" id="edge21_Node000014_Node000002" title=" " alt="" coords="1659,217,1609,226,1477,239,1375,246,1272,255,1142,274,1129,276,1129,271,1141,269,1272,249,1374,241,1477,234,1608,221,1654,217"/>
<area shape="rect" id="Node000015" href="$mesh__stats_8cpp.html" title=" " alt="" coords="1824,271,1944,312"/>
<area shape="poly" id="edge22_Node000014_Node000015" title=" " alt="" coords="1785,229,1854,271,1849,270,1783,234"/>
<area shape="rect" id="Node000016" href="$utils_2bindings_8cpp.html" title=" " alt="" coords="1613,279,1801,304"/>
<area shape="poly" id="edge23_Node000014_Node000016" title=" " alt="" coords="1728,236,1713,281,1710,276,1724,240"/>
<area shape="poly" id="edge25_Node000017_Node000002" title=" " alt="" coords="1456,223,1365,241,1296,250,1228,259,1142,274,1129,277,1129,271,1141,269,1227,253,1295,245,1365,236,1450,224"/>
<area shape="poly" id="edge26_Node000017_Node000006" title=" " alt="" coords="1456,225,1275,276,1274,271,1451,226"/>
<area shape="poly" id="edge27_Node000017_Node000008" title=" " alt="" coords="1533,237,1532,273,1528,269,1529,241"/>
<area shape="poly" id="edge28_Node000017_Node000016" title=" " alt="" coords="1586,228,1685,279,1680,278,1585,233"/>
<area shape="poly" id="edge38_Node000018_Node000002" title=" " alt="" coords="1211,148,1206,188,1199,207,1189,225,1160,253,1125,273,1124,268,1157,249,1185,222,1194,205,1200,187,1207,152"/>
<area shape="poly" id="edge39_Node000018_Node000004" title=" " alt="" coords="1136,139,1003,185,1002,180,1131,140"/>
<area shape="poly" id="edge41_Node000018_Node000006" title=" " alt="" coords="1224,147,1234,182,1235,206,1233,231,1222,273,1219,269,1228,230,1230,206,1228,183,1221,152"/>
<area shape="poly" id="edge40_Node000018_Node000014" title=" " alt="" coords="1284,124,1653,180,1674,186,1668,186,1652,185,1284,129"/>
<area shape="poly" id="edge42_Node000018_Node000016" title=" " alt="" coords="1284,124,1483,156,1609,180,1640,202,1667,229,1702,279,1697,277,1663,232,1637,206,1607,185,1482,161,1284,130"/>
<area shape="rect" id="Node000019" href="$mesh_8h.html" title=" " alt="" coords="511,183,631,223"/>
<area shape="poly" id="edge30_Node000018_Node000019" title=" " alt="" coords="1130,122,913,145,778,163,643,185,632,188,631,182,643,180,777,158,912,140,1136,121"/>
<area shape="rect" id="Node000021" href="$uniform_8h.html" title=" " alt="" coords="1300,183,1444,223"/>
<area shape="poly" id="edge34_Node000018_Node000021" title=" " alt="" coords="1260,140,1338,183,1333,182,1259,145"/>
<area shape="poly" id="edge31_Node000019_Node000002" title=" " alt="" coords="647,221,746,237,823,245,900,253,997,269,1010,274,1005,274,996,274,899,258,823,250,745,242,647,226"/>
<area shape="poly" id="edge32_Node000019_Node000005" title=" " alt="" coords="549,234,515,281,512,276,544,237"/>
<area shape="rect" id="Node000020" href="$_i_o_2bindings_8cpp.html" title=" " alt="" coords="596,279,773,304"/>
<area shape="poly" id="edge33_Node000019_Node000020" title=" " alt="" coords="610,231,671,279,666,278,608,236"/>
<area shape="poly" id="edge35_Node000021_Node000002" title=" " alt="" coords="1291,228,1130,276,1129,271,1286,229"/>
<area shape="poly" id="edge36_Node000021_Node000006" title=" " alt="" coords="1325,230,1250,273,1249,268,1320,232"/>
<area shape="rect" id="Node000022" href="$refinement_2bindings_8cpp.html" title=" " alt="" coords="1299,271,1446,312"/>
<area shape="poly" id="edge37_Node000021_Node000022" title=" " alt="" coords="1374,237,1374,273,1370,269,1371,241"/>
</map> </map>

View File

@@ -1 +1 @@
1981f677764f42c4b4f0cb2161e8450f 2eeac66c032be21b1039e05b200bea4f

View File

@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 13.0.1 (20250615.1724) <!-- Generated by graphviz version 14.1.2 (20260124.0452)
--> -->
<!-- Title: src/include/stroid/config/config.h Pages: 1 --> <!-- Title: src/include/stroid/config/config.h Pages: 1 -->
<!--zoomable 160 --> <!--zoomable 293 -->
<svg id="main" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" onload="init(evt)"> <svg id="main" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" onload="init(evt)">
@@ -47,9 +47,9 @@
</g> </g>
</defs> </defs>
<script type="application/ecmascript"> <script type="application/ecmascript">
var viewWidth = 655; var viewWidth = 1462;
var viewHeight = 160; var viewHeight = 293;
var sectionId = 'dynsection-0'; var sectionId = 'dynsection-1';
</script> </script>
<script type="application/ecmascript" xlink:href="svg.min.js"/> <script type="application/ecmascript" xlink:href="svg.min.js"/>
<svg id="graph" class="graph"> <svg id="graph" class="graph">
@@ -59,19 +59,19 @@ var sectionId = 'dynsection-0';
<g id="Node000001" class="node"> <g id="Node000001" class="node">
<title>Node1</title> <title>Node1</title>
<g id="a_Node000001"><a xlink:title=" "> <g id="a_Node000001"><a xlink:title=" ">
<polygon fill="#999999" stroke="#666666" points="364.75,-152.25 274.5,-152.25 274.5,-121.75 364.75,-121.75 364.75,-152.25"/> <polygon fill="#999999" stroke="#666666" points="871.38,-285.25 781.12,-285.25 781.12,-254.75 871.38,-254.75 871.38,-285.25"/>
<text xml:space="preserve" text-anchor="start" x="282.5" y="-138.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/stroid</text> <text xml:space="preserve" text-anchor="start" x="789.12" y="-271.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/stroid</text>
<text xml:space="preserve" text-anchor="middle" x="319.62" y="-127.5" font-family="Helvetica,sans-Serif" font-size="10.00">/config/config.h</text> <text xml:space="preserve" text-anchor="middle" x="826.25" y="-260.5" font-family="Helvetica,sans-Serif" font-size="10.00">/config/config.h</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node2 --> <!-- Node2 -->
<g id="Node000002" class="node"> <g id="Node000002" class="node">
<title>Node2</title> <title>Node2</title>
<g id="a_Node000002"><a xlink:href="curvilinear_8h.html" target="_top" xlink:title=" "> <g id="a_Node000002"><a xlink:href="stroid_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="128.88,-85.75 18.38,-85.75 18.38,-55.25 128.88,-55.25 128.88,-85.75"/> <polygon fill="white" stroke="#666666" points="842.38,-85.75 752.12,-85.75 752.12,-55.25 842.38,-55.25 842.38,-85.75"/>
<text xml:space="preserve" text-anchor="start" x="26.38" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/stroid</text> <text xml:space="preserve" text-anchor="start" x="760.12" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/stroid</text>
<text xml:space="preserve" text-anchor="middle" x="73.62" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">/topology/curvilinear.h</text> <text xml:space="preserve" text-anchor="middle" x="797.25" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">/stroid.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -79,18 +79,18 @@ var sectionId = 'dynsection-0';
<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="M263.25,-121.22C223.01,-110.67 169.15,-96.55 129.11,-86.05"/> <path fill="none" stroke="#63b8ff" d="M769.94,-251.15C725.35,-233.71 666.11,-202.35 638.25,-152.25 631.66,-140.4 630.24,-132.68 638.25,-121.75 641.76,-116.96 706.02,-97.69 751.76,-84.45"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="262.19,-124.56 272.75,-123.71 263.97,-117.79 262.19,-124.56"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="768.63,-254.4 779.22,-254.65 771.1,-247.85 768.63,-254.4"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node4 --> <!-- Node4 -->
<g id="Node000004" class="node"> <g id="Node000004" class="node">
<title>Node4</title> <title>Node4</title>
<g id="a_Node000004"><a xlink:href="mapping_8h.html" target="_top" xlink:title=" "> <g id="a_Node000004"><a xlink:href="curvilinear_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="250.5,-85.75 146.75,-85.75 146.75,-55.25 250.5,-55.25 250.5,-85.75"/> <polygon fill="white" stroke="#666666" points="757.5,-152.25 647,-152.25 647,-121.75 757.5,-121.75 757.5,-152.25"/>
<text xml:space="preserve" text-anchor="start" x="154.75" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/stroid</text> <text xml:space="preserve" text-anchor="start" x="655" y="-138.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/stroid</text>
<text xml:space="preserve" text-anchor="middle" x="198.62" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">/topology/mapping.h</text> <text xml:space="preserve" text-anchor="middle" x="702.25" y="-127.5" font-family="Helvetica,sans-Serif" font-size="10.00">/topology/curvilinear.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -98,72 +98,185 @@ var sectionId = 'dynsection-0';
<g id="edge3_Node000001_Node000004" class="edge"> <g id="edge3_Node000001_Node000004" class="edge">
<title>Node1&#45;&gt;Node4</title> <title>Node1&#45;&gt;Node4</title>
<g id="a_edge3_Node000001_Node000004"><a xlink:title=" "> <g id="a_edge3_Node000001_Node000004"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M282.19,-116.04C264.02,-106.36 242.58,-94.93 225.97,-86.08"/> <path fill="none" stroke="#63b8ff" d="M804.86,-246.4C779.39,-219.49 737.6,-175.35 716.06,-152.58"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="280.36,-119.04 290.83,-120.65 283.65,-112.86 280.36,-119.04"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="802.05,-248.52 811.47,-253.38 807.13,-243.71 802.05,-248.52"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node6 --> <!-- Node5 -->
<g id="Node000006" class="node"> <g id="Node000005" class="node">
<title>Node6</title> <title>Node5</title>
<g id="a_Node000006"><a xlink:href="topology_8h.html" target="_top" xlink:title=" "> <g id="a_Node000005"><a xlink:href="mesh_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="370.75,-85.75 268.5,-85.75 268.5,-55.25 370.75,-55.25 370.75,-85.75"/> <polygon fill="white" stroke="#666666" points="425,-80.12 323.5,-80.12 323.5,-60.88 425,-60.88 425,-80.12"/>
<text xml:space="preserve" text-anchor="start" x="276.5" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/stroid</text> <text xml:space="preserve" text-anchor="middle" x="374.25" y="-66.62" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/IO/mesh.cpp</text>
<text xml:space="preserve" text-anchor="middle" x="319.62" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">/topology/topology.h</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node1&#45;&gt;Node6 --> <!-- Node1&#45;&gt;Node5 -->
<g id="edge6_Node000001_Node000006" class="edge"> <g id="edge43_Node000001_Node000005" class="edge">
<title>Node1&#45;&gt;Node6</title> <title>Node1&#45;&gt;Node5</title>
<g id="a_edge6_Node000001_Node000006"><a xlink:title=" "> <g id="a_edge43_Node000001_Node000005"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M319.62,-110.06C319.62,-101.89 319.62,-93.16 319.62,-86.08"/> <path fill="none" stroke="#63b8ff" d="M769.42,-263.36C657.83,-250.94 416.85,-217.05 370.25,-152.25 354.68,-130.6 364.43,-96.6 370.48,-80.52"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="316.13,-109.85 319.63,-119.85 323.13,-109.85 316.13,-109.85"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="768.94,-266.82 779.26,-264.43 769.7,-259.87 768.94,-266.82"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node7 --> <!-- Node9 -->
<g id="Node000007" class="node"> <g id="Node000009" class="node">
<title>Node7</title> <title>Node9</title>
<g id="a_Node000007"><a xlink:href="mesh_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000009"><a xlink:href="mapping_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="490.38,-80.12 388.88,-80.12 388.88,-60.88 490.38,-60.88 490.38,-80.12"/> <polygon fill="white" stroke="#666666" points="304.12,-152.25 200.38,-152.25 200.38,-121.75 304.12,-121.75 304.12,-152.25"/>
<text xml:space="preserve" text-anchor="middle" x="439.62" y="-66.62" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/IO/mesh.cpp</text> <text xml:space="preserve" text-anchor="start" x="208.38" y="-138.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/stroid</text>
<text xml:space="preserve" text-anchor="middle" x="252.25" y="-127.5" font-family="Helvetica,sans-Serif" font-size="10.00">/topology/mapping.h</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node1&#45;&gt;Node7 --> <!-- Node1&#45;&gt;Node9 -->
<g id="edge7_Node000001_Node000007" class="edge"> <g id="edge9_Node000001_Node000009" class="edge">
<title>Node1&#45;&gt;Node7</title> <title>Node1&#45;&gt;Node9</title>
<g id="a_edge7_Node000001_Node000007"><a xlink:title=" "> <g id="a_edge9_Node000001_Node000009"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M356.92,-115.95C378.99,-104.09 405.86,-89.65 422.86,-80.51"/> <path fill="none" stroke="#63b8ff" d="M769.65,-267.74C657.85,-264.51 412.98,-253.58 337.25,-218.75 304.89,-203.87 277.05,-171.6 262.67,-152.67"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="355.34,-112.83 348.19,-120.65 358.65,-119 355.34,-112.83"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="769.4,-271.23 779.49,-268.01 769.59,-264.24 769.4,-271.23"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node8 --> <!-- Node11 -->
<g id="Node000008" class="node"> <g id="Node000011" class="node">
<title>Node8</title> <title>Node11</title>
<g id="a_Node000008"><a xlink:href="topology_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000011"><a xlink:href="optimize_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="647.12,-80.12 508.12,-80.12 508.12,-60.88 647.12,-60.88 647.12,-80.12"/> <polygon fill="white" stroke="#666666" points="591.12,-152.25 487.38,-152.25 487.38,-121.75 591.12,-121.75 591.12,-152.25"/>
<text xml:space="preserve" text-anchor="middle" x="577.62" y="-66.62" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/topology/topology.cpp</text> <text xml:space="preserve" text-anchor="start" x="495.38" y="-138.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/stroid</text>
<text xml:space="preserve" text-anchor="middle" x="539.25" y="-127.5" font-family="Helvetica,sans-Serif" font-size="10.00">/topology/optimize.h</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node1&#45;&gt;Node8 --> <!-- Node1&#45;&gt;Node11 -->
<g id="edge8_Node000001_Node000008" class="edge"> <g id="edge13_Node000001_Node000011" class="edge">
<title>Node1&#45;&gt;Node8</title> <title>Node1&#45;&gt;Node11</title>
<g id="a_edge8_Node000001_Node000008"><a xlink:title=" "> <g id="a_edge13_Node000001_Node000011"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M376.16,-121.87C426.4,-109.31 498.35,-91.32 541.29,-80.58"/> <path fill="none" stroke="#63b8ff" d="M769.44,-266.24C722.37,-261.69 655.31,-249.76 605.25,-218.75 578.47,-202.16 557.6,-170.82 546.98,-152.44"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="375.48,-118.43 366.62,-124.25 377.18,-125.22 375.48,-118.43"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="768.89,-269.71 779.15,-267.09 769.5,-262.73 768.89,-269.71"/>
</a>
</g>
</g>
<!-- Node13 -->
<g id="Node000013" class="node">
<title>Node13</title>
<g id="a_Node000013"><a xlink:href="topology_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="877.38,-152.25 775.12,-152.25 775.12,-121.75 877.38,-121.75 877.38,-152.25"/>
<text xml:space="preserve" text-anchor="start" x="783.12" y="-138.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/stroid</text>
<text xml:space="preserve" text-anchor="middle" x="826.25" y="-127.5" font-family="Helvetica,sans-Serif" font-size="10.00">/topology/topology.h</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node13 -->
<g id="edge17_Node000001_Node000013" class="edge">
<title>Node1&#45;&gt;Node13</title>
<g id="a_edge17_Node000001_Node000013"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M826.25,-243.18C826.25,-216.09 826.25,-174.46 826.25,-152.58"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="822.75,-242.97 826.25,-252.97 829.75,-242.97 822.75,-242.97"/>
</a>
</g>
</g>
<!-- Node14 -->
<g id="Node000014" class="node">
<title>Node14</title>
<g id="a_Node000014"><a xlink:href="mesh__stats_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="1348.88,-152.25 1249.62,-152.25 1249.62,-121.75 1348.88,-121.75 1348.88,-152.25"/>
<text xml:space="preserve" text-anchor="start" x="1257.62" y="-138.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/stroid</text>
<text xml:space="preserve" text-anchor="middle" x="1299.25" y="-127.5" font-family="Helvetica,sans-Serif" font-size="10.00">/utils/mesh_stats.h</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node14 -->
<g id="edge20_Node000001_Node000014" class="edge">
<title>Node1&#45;&gt;Node14</title>
<g id="a_edge20_Node000001_Node000014"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M882.38,-257.15C915.44,-248.93 957.46,-236.28 992.25,-218.75 1012.53,-208.53 1012.41,-197.27 1033.25,-188.25 1116.54,-152.21 1145.24,-169.97 1234.25,-152.25 1239.12,-151.28 1244.19,-150.23 1249.25,-149.16"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="881.9,-253.66 873.01,-259.41 883.55,-260.46 881.9,-253.66"/>
</a>
</g>
</g>
<!-- Node17 -->
<g id="Node000017" class="node">
<title>Node17</title>
<g id="a_Node000017"><a xlink:href="mesh__utils_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="1193,-152.25 1097.5,-152.25 1097.5,-121.75 1193,-121.75 1193,-152.25"/>
<text xml:space="preserve" text-anchor="start" x="1105.5" y="-138.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/stroid</text>
<text xml:space="preserve" text-anchor="middle" x="1145.25" y="-127.5" font-family="Helvetica,sans-Serif" font-size="10.00">/utils/mesh_utils.h</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node17 -->
<g id="edge24_Node000001_Node000017" class="edge">
<title>Node1&#45;&gt;Node17</title>
<g id="a_edge24_Node000001_Node000017"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M882.5,-250.71C905.9,-242.23 932.97,-231.25 956.25,-218.75 976.89,-207.66 978.4,-198.95 999.25,-188.25 1030.49,-172.21 1067.99,-159.43 1097.16,-150.77"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="881.37,-247.4 873.12,-254.05 883.71,-254 881.37,-247.4"/>
</a>
</g>
</g>
<!-- Node18 -->
<g id="Node000018" class="node">
<title>Node18</title>
<g id="a_Node000018"><a xlink:href="types_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="947.38,-218.75 857.12,-218.75 857.12,-188.25 947.38,-188.25 947.38,-218.75"/>
<text xml:space="preserve" text-anchor="start" x="865.12" y="-205.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/stroid</text>
<text xml:space="preserve" text-anchor="middle" x="902.25" y="-194" font-family="Helvetica,sans-Serif" font-size="10.00">/utils/types.h</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node18 -->
<g id="edge29_Node000001_Node000018" class="edge">
<title>Node1&#45;&gt;Node18</title>
<g id="a_edge29_Node000001_Node000018"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M852.18,-246.99C863.04,-237.78 875.37,-227.31 885.07,-219.08"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="850.01,-244.25 844.65,-253.38 854.54,-249.58 850.01,-244.25"/>
</a>
</g>
</g>
<!-- Node23 -->
<g id="Node000023" class="node">
<title>Node23</title>
<g id="a_Node000023"><a xlink:href="topology_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="1180.75,-213.12 1041.75,-213.12 1041.75,-193.88 1180.75,-193.88 1180.75,-213.12"/>
<text xml:space="preserve" text-anchor="middle" x="1111.25" y="-199.62" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/topology/topology.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node23 -->
<g id="edge44_Node000001_Node000023" class="edge">
<title>Node1&#45;&gt;Node23</title>
<g id="a_edge44_Node000001_Node000023"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M882.8,-256.2C938.39,-243.62 1021.85,-224.73 1071.01,-213.61"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="882.18,-252.75 873.2,-258.37 883.73,-259.58 882.18,-252.75"/>
</a>
</g>
</g>
<!-- Node24 -->
<g id="Node000024" class="node">
<title>Node24</title>
<g id="a_Node000024"><a xlink:href="config_2bindings_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="1347.62,-213.12 1198.88,-213.12 1198.88,-193.88 1347.62,-193.88 1347.62,-213.12"/>
<text xml:space="preserve" text-anchor="middle" x="1273.25" y="-199.62" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/config/bindings.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node24 -->
<g id="edge45_Node000001_Node000024" class="edge">
<title>Node1&#45;&gt;Node24</title>
<g id="a_edge45_Node000001_Node000024"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M882.73,-261.79C954.36,-252.51 1081.64,-235.57 1190.25,-218.75 1200.51,-217.16 1211.46,-215.36 1221.93,-213.58"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="882.69,-258.26 873.22,-263.02 883.59,-265.21 882.69,-258.26"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node3 --> <!-- Node3 -->
<g id="Node000003" class="node"> <g id="Node000003" class="node">
<title>Node3</title> <title>Node3</title>
<g id="a_Node000003"><a xlink:href="curvilinear_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000003"><a xlink:href="bindings_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="147.25,-19.25 0,-19.25 0,0 147.25,0 147.25,-19.25"/> <polygon fill="white" stroke="#666666" points="857,-19.25 737.5,-19.25 737.5,0 857,0 857,-19.25"/>
<text xml:space="preserve" text-anchor="middle" x="73.62" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/topology/curvilinear.cpp</text> <text xml:space="preserve" text-anchor="middle" x="797.25" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/bindings.cpp</text>
</a> </a>
</g> </g>
</g> </g>
@@ -171,26 +284,17 @@ 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="M73.62,-43.48C73.62,-34.98 73.62,-26.09 73.62,-19.7"/> <path fill="none" stroke="#63b8ff" d="M797.25,-43.48C797.25,-34.98 797.25,-26.09 797.25,-19.7"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="70.13,-43.43 73.63,-53.43 77.13,-43.43 70.13,-43.43"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="793.75,-43.43 797.25,-53.43 800.75,-43.43 793.75,-43.43"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node4&#45;&gt;Node3 --> <!-- Node4&#45;&gt;Node2 -->
<g id="edge4_Node000004_Node000003" class="edge"> <g id="edge4_Node000004_Node000002" class="edge">
<title>Node4&#45;&gt;Node3</title> <title>Node4&#45;&gt;Node2</title>
<g id="a_edge4_Node000004_Node000003"><a xlink:title=" "> <g id="a_edge4_Node000004_Node000002"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M157.11,-49.94C135.39,-39.72 109.85,-27.69 92.79,-19.65"/> <path fill="none" stroke="#63b8ff" d="M733.05,-115.09C747,-105.62 763.16,-94.64 775.78,-86.08"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="155.5,-53.06 166.04,-54.15 158.48,-46.72 155.5,-53.06"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="731.37,-112 725.06,-120.51 735.3,-117.79 731.37,-112"/>
</a>
</g>
</g>
<!-- Node5 -->
<g id="Node000005" class="node">
<title>Node5</title>
<g id="a_Node000005"><a xlink:href="mapping_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="305.88,-19.25 165.38,-19.25 165.38,0 305.88,0 305.88,-19.25"/>
<text xml:space="preserve" text-anchor="middle" x="235.62" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/topology/mapping.cpp</text>
</a> </a>
</g> </g>
</g> </g>
@@ -198,8 +302,392 @@ var sectionId = 'dynsection-0';
<g id="edge5_Node000004_Node000005" class="edge"> <g id="edge5_Node000004_Node000005" class="edge">
<title>Node4&#45;&gt;Node5</title> <title>Node4&#45;&gt;Node5</title>
<g id="a_edge5_Node000004_Node000005"><a xlink:title=" "> <g id="a_edge5_Node000004_Node000005"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M213.87,-45.24C219.54,-36.22 225.63,-26.53 229.92,-19.7"/> <path fill="none" stroke="#63b8ff" d="M635.44,-124.52C580.89,-114.91 501.89,-100.44 433.25,-85.75 425.93,-84.18 418.14,-82.39 410.69,-80.62"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="210.93,-43.34 208.58,-53.67 216.86,-47.06 210.93,-43.34"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="634.75,-127.95 645.21,-126.24 635.96,-121.06 634.75,-127.95"/>
</a>
</g>
</g>
<!-- Node6 -->
<g id="Node000006" class="node">
<title>Node6</title>
<g id="a_Node000006"><a xlink:href="uniform_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="951.75,-85.75 860.75,-85.75 860.75,-55.25 951.75,-55.25 951.75,-85.75"/>
<text xml:space="preserve" text-anchor="start" x="868.75" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/refinement</text>
<text xml:space="preserve" text-anchor="middle" x="906.25" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">/uniform.cpp</text>
</a>
</g>
</g>
<!-- Node4&#45;&gt;Node6 -->
<g id="edge6_Node000004_Node000006" class="edge">
<title>Node4&#45;&gt;Node6</title>
<g id="a_edge6_Node000004_Node000006"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M759.72,-117.83C791.51,-107.78 830.49,-95.45 860.26,-86.04"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="758.72,-114.48 750.24,-120.83 760.83,-121.15 758.72,-114.48"/>
</a>
</g>
</g>
<!-- Node7 -->
<g id="Node000007" class="node">
<title>Node7</title>
<g id="a_Node000007"><a xlink:href="curvilinear_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="305.88,-80.12 158.62,-80.12 158.62,-60.88 305.88,-60.88 305.88,-80.12"/>
<text xml:space="preserve" text-anchor="middle" x="232.25" y="-66.62" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/topology/curvilinear.cpp</text>
</a>
</g>
</g>
<!-- Node4&#45;&gt;Node7 -->
<g id="edge7_Node000004_Node000007" class="edge">
<title>Node4&#45;&gt;Node7</title>
<g id="a_edge7_Node000004_Node000007"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M635.56,-126.55C623.8,-124.92 611.67,-123.27 600.25,-121.75 473.25,-104.89 440.95,-104.72 314.25,-85.75 303.96,-84.21 292.97,-82.41 282.49,-80.61"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="634.8,-129.98 645.19,-127.89 635.76,-123.04 634.8,-129.98"/>
</a>
</g>
</g>
<!-- Node8 -->
<g id="Node000008" class="node">
<title>Node8</title>
<g id="a_Node000008"><a xlink:href="mesh__utils_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="1188.38,-85.75 1098.12,-85.75 1098.12,-55.25 1188.38,-55.25 1188.38,-85.75"/>
<text xml:space="preserve" text-anchor="start" x="1106.12" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/utils/mesh</text>
<text xml:space="preserve" text-anchor="middle" x="1143.25" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">_utils.cpp</text>
</a>
</g>
</g>
<!-- Node4&#45;&gt;Node8 -->
<g id="edge8_Node000004_Node000008" class="edge">
<title>Node4&#45;&gt;Node8</title>
<g id="a_edge8_Node000004_Node000008"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M768.97,-121.42C910.75,-98.72 950.86,-111.58 1089.25,-85.75 1092.01,-85.23 1094.84,-84.65 1097.69,-84.03"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="768.48,-117.96 759.17,-123.03 769.61,-124.87 768.48,-117.96"/>
</a>
</g>
</g>
<!-- Node9&#45;&gt;Node2 -->
<g id="edge10_Node000009_Node000002" class="edge">
<title>Node9&#45;&gt;Node2</title>
<g id="a_edge10_Node000009_Node000002"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M315.83,-128.04C333.44,-125.91 352.58,-123.67 370.25,-121.75 535.82,-103.76 579.31,-115.09 743.25,-85.75 746.02,-85.25 748.85,-84.69 751.7,-84.07"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="315.51,-124.55 306,-129.23 316.35,-131.5 315.51,-124.55"/>
</a>
</g>
</g>
<!-- Node9&#45;&gt;Node7 -->
<g id="edge11_Node000009_Node000007" class="edge">
<title>Node9&#45;&gt;Node7</title>
<g id="a_edge11_Node000009_Node000007"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M244.32,-110.43C241.01,-99.76 237.39,-88.08 234.99,-80.32"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="240.96,-111.4 247.26,-119.92 247.64,-109.33 240.96,-111.4"/>
</a>
</g>
</g>
<!-- Node10 -->
<g id="Node000010" class="node">
<title>Node10</title>
<g id="a_Node000010"><a xlink:href="mapping_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="140.5,-80.12 0,-80.12 0,-60.88 140.5,-60.88 140.5,-80.12"/>
<text xml:space="preserve" text-anchor="middle" x="70.25" y="-66.62" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/topology/mapping.cpp</text>
</a>
</g>
</g>
<!-- Node9&#45;&gt;Node10 -->
<g id="edge12_Node000009_Node000010" class="edge">
<title>Node9&#45;&gt;Node10</title>
<g id="a_edge12_Node000009_Node000010"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M200.22,-117.56C166.08,-105.46 122.91,-90.16 95.94,-80.6"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="198.93,-120.82 209.52,-120.86 201.27,-114.22 198.93,-120.82"/>
</a>
</g>
</g>
<!-- Node11&#45;&gt;Node2 -->
<g id="edge14_Node000011_Node000002" class="edge">
<title>Node11&#45;&gt;Node2</title>
<g id="a_edge14_Node000011_Node000002"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M602.31,-120.75C642.65,-110.92 696.08,-97.78 743.25,-85.75 746.07,-85.03 748.97,-84.28 751.89,-83.53"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="601.65,-117.31 592.77,-123.07 603.31,-124.11 601.65,-117.31"/>
</a>
</g>
</g>
<!-- Node11&#45;&gt;Node6 -->
<g id="edge15_Node000011_Node000006" class="edge">
<title>Node11&#45;&gt;Node6</title>
<g id="a_edge15_Node000011_Node000006"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M602.37,-126.55C679.35,-114.9 804.93,-95.46 851.25,-85.75 854.24,-85.12 857.32,-84.44 860.41,-83.72"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="602.24,-123.03 592.88,-127.98 603.29,-129.95 602.24,-123.03"/>
</a>
</g>
</g>
<!-- Node12 -->
<g id="Node000012" class="node">
<title>Node12</title>
<g id="a_Node000012"><a xlink:href="optimize_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="734.5,-80.12 594,-80.12 594,-60.88 734.5,-60.88 734.5,-80.12"/>
<text xml:space="preserve" text-anchor="middle" x="664.25" y="-66.62" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/topology/optimize.cpp</text>
</a>
</g>
</g>
<!-- Node11&#45;&gt;Node12 -->
<g id="edge16_Node000011_Node000012" class="edge">
<title>Node11&#45;&gt;Node12</title>
<g id="a_edge16_Node000011_Node000012"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M577.79,-116.11C600.83,-104.22 629,-89.69 646.79,-80.51"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="576.24,-112.97 568.96,-120.67 579.45,-119.19 576.24,-112.97"/>
</a>
</g>
</g>
<!-- Node13&#45;&gt;Node2 -->
<g id="edge18_Node000013_Node000002" class="edge">
<title>Node13&#45;&gt;Node2</title>
<g id="a_edge18_Node000013_Node000002"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M814.97,-110.91C811.19,-102.5 807.1,-93.41 803.8,-86.08"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="811.76,-112.3 819.05,-119.98 818.14,-109.43 811.76,-112.3"/>
</a>
</g>
</g>
<!-- Node13&#45;&gt;Node6 -->
<g id="edge19_Node000013_Node000006" class="edge">
<title>Node13&#45;&gt;Node6</title>
<g id="a_edge19_Node000013_Node000006"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M853.2,-114.27C864.72,-104.98 877.85,-94.4 888.17,-86.08"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="851.17,-111.41 845.58,-120.41 855.56,-116.86 851.17,-111.41"/>
</a>
</g>
</g>
<!-- Node14&#45;&gt;Node2 -->
<g id="edge21_Node000014_Node000002" class="edge">
<title>Node14&#45;&gt;Node2</title>
<g id="a_edge21_Node000014_Node000002"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M1238.23,-126.62C1226.31,-124.91 1213.9,-123.2 1202.25,-121.75 1047.08,-102.38 1006.16,-113.44 852.25,-85.75 849.14,-85.19 845.95,-84.55 842.75,-83.85"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="1237.56,-130.06 1247.96,-128.04 1238.57,-123.14 1237.56,-130.06"/>
</a>
</g>
</g>
<!-- Node15 -->
<g id="Node000015" class="node">
<title>Node15</title>
<g id="a_Node000015"><a xlink:href="mesh__stats_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="1454.38,-85.75 1364.12,-85.75 1364.12,-55.25 1454.38,-55.25 1454.38,-85.75"/>
<text xml:space="preserve" text-anchor="start" x="1372.12" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/utils/mesh</text>
<text xml:space="preserve" text-anchor="middle" x="1409.25" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">_stats.cpp</text>
</a>
</g>
</g>
<!-- Node14&#45;&gt;Node15 -->
<g id="edge22_Node000014_Node000015" class="edge">
<title>Node14&#45;&gt;Node15</title>
<g id="a_edge22_Node000014_Node000015"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M1333.98,-115.64C1350.35,-106.04 1369.5,-94.81 1384.39,-86.08"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="1332.37,-112.52 1325.52,-120.6 1335.91,-118.56 1332.37,-112.52"/>
</a>
</g>
</g>
<!-- Node16 -->
<g id="Node000016" class="node">
<title>Node16</title>
<g id="a_Node000016"><a xlink:href="utils_2bindings_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="1346.5,-80.12 1206,-80.12 1206,-60.88 1346.5,-60.88 1346.5,-80.12"/>
<text xml:space="preserve" text-anchor="middle" x="1276.25" y="-66.62" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/utils/bindings.cpp</text>
</a>
</g>
</g>
<!-- Node14&#45;&gt;Node16 -->
<g id="edge23_Node000014_Node000016" class="edge">
<title>Node14&#45;&gt;Node16</title>
<g id="a_edge23_Node000014_Node000016"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M1290.25,-110.77C1286.42,-100.01 1282.19,-88.16 1279.4,-80.32"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="1286.87,-111.69 1293.52,-119.94 1293.46,-109.34 1286.87,-111.69"/>
</a>
</g>
</g>
<!-- Node17&#45;&gt;Node2 -->
<g id="edge25_Node000017_Node000002" class="edge">
<title>Node17&#45;&gt;Node2</title>
<g id="a_edge25_Node000017_Node000002"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M1085.83,-121.4C982.22,-101.25 952.63,-106.35 852.25,-85.75 849.16,-85.12 845.98,-84.42 842.78,-83.68"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="1085.15,-124.83 1095.64,-123.34 1086.51,-117.96 1085.15,-124.83"/>
</a>
</g>
</g>
<!-- Node17&#45;&gt;Node6 -->
<g id="edge26_Node000017_Node000006" class="edge">
<title>Node17&#45;&gt;Node6</title>
<g id="a_edge26_Node000017_Node000006"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M1086.15,-120.05C1044.79,-108.89 990.34,-94.19 952.22,-83.91"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="1085.14,-123.4 1095.71,-122.63 1086.97,-116.65 1085.14,-123.4"/>
</a>
</g>
</g>
<!-- Node17&#45;&gt;Node8 -->
<g id="edge27_Node000017_Node000008" class="edge">
<title>Node17&#45;&gt;Node8</title>
<g id="a_edge27_Node000017_Node000008"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M1144.45,-110.06C1144.19,-101.89 1143.92,-93.16 1143.7,-86.08"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="1140.94,-109.96 1144.75,-119.85 1147.94,-109.75 1140.94,-109.96"/>
</a>
</g>
</g>
<!-- Node17&#45;&gt;Node16 -->
<g id="edge28_Node000017_Node000016" class="edge">
<title>Node17&#45;&gt;Node16</title>
<g id="a_edge28_Node000017_Node000016"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M1184.99,-116.44C1209.26,-104.49 1239.14,-89.77 1257.95,-80.51"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="1183.76,-113.14 1176.33,-120.7 1186.85,-119.42 1183.76,-113.14"/>
</a>
</g>
</g>
<!-- Node18&#45;&gt;Node2 -->
<g id="edge38_Node000018_Node000002" class="edge">
<title>Node18&#45;&gt;Node2</title>
<g id="a_edge38_Node000018_Node000002"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M902.53,-176.58C901.49,-159.56 897.71,-137.59 886.25,-121.75 874.71,-105.79 856.44,-94.22 839.45,-86.24"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="899.02,-176.55 902.82,-186.44 906.02,-176.34 899.02,-176.55"/>
</a>
</g>
</g>
<!-- Node18&#45;&gt;Node4 -->
<g id="edge39_Node000018_Node000004" class="edge">
<title>Node18&#45;&gt;Node4</title>
<g id="a_edge39_Node000018_Node000004"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M846.2,-184.42C815.14,-174.41 777.01,-162.11 747.8,-152.69"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="844.83,-187.66 855.43,-187.4 846.98,-181 844.83,-187.66"/>
</a>
</g>
</g>
<!-- Node18&#45;&gt;Node6 -->
<g id="edge41_Node000018_Node000006" class="edge">
<title>Node18&#45;&gt;Node6</title>
<g id="a_edge41_Node000018_Node000006"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M912.6,-177.19C915.33,-169.33 917.88,-160.55 919.25,-152.25 923.05,-129.13 916.55,-102.27 911.45,-86.09"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="909.36,-175.86 909.14,-186.46 915.92,-178.31 909.36,-175.86"/>
</a>
</g>
</g>
<!-- Node18&#45;&gt;Node14 -->
<g id="edge40_Node000018_Node000014" class="edge">
<title>Node18&#45;&gt;Node14</title>
<g id="a_edge40_Node000018_Node000014"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M959.17,-194.13C1047.11,-181.17 1208.71,-157.2 1235.25,-152.25 1239.84,-151.39 1244.6,-150.45 1249.36,-149.46"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="958.67,-190.67 949.28,-195.59 959.69,-197.59 958.67,-190.67"/>
</a>
</g>
</g>
<!-- Node18&#45;&gt;Node16 -->
<g id="edge42_Node000018_Node000016" class="edge">
<title>Node18&#45;&gt;Node16</title>
<g id="a_edge42_Node000018_Node000016"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M958.81,-194C1042.76,-181.24 1191.63,-158.02 1202.25,-152.25 1234.5,-134.74 1260.18,-97.73 1270.87,-80.58"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="958.53,-190.5 949.17,-195.46 959.58,-197.42 958.53,-190.5"/>
</a>
</g>
</g>
<!-- Node19 -->
<g id="Node000019" class="node">
<title>Node19</title>
<g id="a_Node000019"><a xlink:href="mesh_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="469.38,-152.25 379.12,-152.25 379.12,-121.75 469.38,-121.75 469.38,-152.25"/>
<text xml:space="preserve" text-anchor="start" x="387.12" y="-138.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/stroid</text>
<text xml:space="preserve" text-anchor="middle" x="424.25" y="-127.5" font-family="Helvetica,sans-Serif" font-size="10.00">/IO/mesh.h</text>
</a>
</g>
</g>
<!-- Node18&#45;&gt;Node19 -->
<g id="edge30_Node000018_Node000019" class="edge">
<title>Node18&#45;&gt;Node19</title>
<g id="a_edge30_Node000018_Node000019"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M845.73,-198.33C764.09,-191.75 608.65,-177.06 478.25,-152.25 475.49,-151.72 472.66,-151.14 469.81,-150.5"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="845,-201.79 855.24,-199.09 845.55,-194.81 845,-201.79"/>
</a>
</g>
</g>
<!-- Node21 -->
<g id="Node000021" class="node">
<title>Node21</title>
<g id="a_Node000021"><a xlink:href="uniform_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="1079.38,-152.25 971.12,-152.25 971.12,-121.75 1079.38,-121.75 1079.38,-152.25"/>
<text xml:space="preserve" text-anchor="start" x="979.12" y="-138.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/stroid</text>
<text xml:space="preserve" text-anchor="middle" x="1025.25" y="-127.5" font-family="Helvetica,sans-Serif" font-size="10.00">/refinement/uniform.h</text>
</a>
</g>
</g>
<!-- Node18&#45;&gt;Node21 -->
<g id="edge34_Node000018_Node000021" class="edge">
<title>Node18&#45;&gt;Node21</title>
<g id="a_edge34_Node000018_Node000021"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M940.31,-182.54C958.78,-172.86 980.57,-161.43 997.45,-152.58"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="938.73,-179.42 931.5,-187.16 941.98,-185.62 938.73,-179.42"/>
</a>
</g>
</g>
<!-- Node19&#45;&gt;Node2 -->
<g id="edge31_Node000019_Node000002" class="edge">
<title>Node19&#45;&gt;Node2</title>
<g id="a_edge31_Node000019_Node000002"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M480.92,-121.38C596.83,-99.14 630.21,-108.26 743.25,-85.75 746.01,-85.2 748.83,-84.59 751.68,-83.95"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="480.45,-117.9 471.31,-123.26 481.8,-124.77 480.45,-117.9"/>
</a>
</g>
</g>
<!-- Node19&#45;&gt;Node5 -->
<g id="edge32_Node000019_Node000005" class="edge">
<title>Node19&#45;&gt;Node5</title>
<g id="a_edge32_Node000019_Node000005"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M406,-112.45C397.33,-101.27 387.49,-88.57 381.09,-80.32"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="403.08,-114.41 411.98,-120.17 408.62,-110.12 403.08,-114.41"/>
</a>
</g>
</g>
<!-- Node20 -->
<g id="Node000020" class="node">
<title>Node20</title>
<g id="a_Node000020"><a xlink:href="_i_o_2bindings_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="575.75,-80.12 442.75,-80.12 442.75,-60.88 575.75,-60.88 575.75,-80.12"/>
<text xml:space="preserve" text-anchor="middle" x="509.25" y="-66.62" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/IO/bindings.cpp</text>
</a>
</g>
</g>
<!-- Node19&#45;&gt;Node20 -->
<g id="edge33_Node000019_Node000020" class="edge">
<title>Node19&#45;&gt;Node20</title>
<g id="a_edge33_Node000019_Node000020"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M452.65,-114.45C467.99,-102.81 486.1,-89.07 497.62,-80.32"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="450.59,-111.62 444.74,-120.45 454.83,-117.19 450.59,-111.62"/>
</a>
</g>
</g>
<!-- Node21&#45;&gt;Node2 -->
<g id="edge35_Node000021_Node000002" class="edge">
<title>Node21&#45;&gt;Node2</title>
<g id="a_edge35_Node000021_Node000002"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M962.32,-118.2C924.46,-107.49 877.13,-94.1 842.87,-84.41"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="961.2,-121.52 971.77,-120.87 963.1,-114.78 961.2,-121.52"/>
</a>
</g>
</g>
<!-- Node21&#45;&gt;Node6 -->
<g id="edge36_Node000021_Node000006" class="edge">
<title>Node21&#45;&gt;Node6</title>
<g id="a_edge36_Node000021_Node000006"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M988.18,-115.91C970.36,-106.25 949.41,-94.89 933.15,-86.08"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="986.46,-118.95 996.92,-120.64 989.79,-112.8 986.46,-118.95"/>
</a>
</g>
</g>
<!-- Node22 -->
<g id="Node000022" class="node">
<title>Node22</title>
<g id="a_Node000022"><a xlink:href="refinement_2bindings_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="1080.5,-85.75 970,-85.75 970,-55.25 1080.5,-55.25 1080.5,-85.75"/>
<text xml:space="preserve" text-anchor="start" x="978" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/refinement</text>
<text xml:space="preserve" text-anchor="middle" x="1025.25" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">/bindings.cpp</text>
</a>
</g>
</g>
<!-- Node21&#45;&gt;Node22 -->
<g id="edge37_Node000021_Node000022" class="edge">
<title>Node21&#45;&gt;Node22</title>
<g id="a_edge37_Node000021_Node000022"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M1025.25,-110.06C1025.25,-101.89 1025.25,-93.16 1025.25,-86.08"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="1021.75,-109.85 1025.25,-119.85 1028.75,-109.85 1021.75,-109.85"/>
</a> </a>
</g> </g>
</g> </g>

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 36 KiB

View File

@@ -1,30 +1,30 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 13.0.1 (20250615.1724) <!-- Generated by graphviz version 14.1.2 (20260124.0452)
--> -->
<!-- Title: src/include/stroid/config/config.h Pages: 1 --> <!-- Title: src/include/stroid/config/config.h Pages: 1 -->
<svg width="655pt" height="160pt" <svg width="1462pt" height="293pt"
viewBox="0.00 0.00 655.00 160.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> viewBox="0.00 0.00 1462.00 293.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 156.25)"> <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 289.25)">
<title>src/include/stroid/config/config.h</title> <title>src/include/stroid/config/config.h</title>
<!-- Node1 --> <!-- Node1 -->
<g id="Node000001" class="node"> <g id="Node000001" class="node">
<title>Node1</title> <title>Node1</title>
<g id="a_Node000001"><a xlink:title=" "> <g id="a_Node000001"><a xlink:title=" ">
<polygon fill="#999999" stroke="#666666" points="364.75,-152.25 274.5,-152.25 274.5,-121.75 364.75,-121.75 364.75,-152.25"/> <polygon fill="#999999" stroke="#666666" points="871.38,-285.25 781.12,-285.25 781.12,-254.75 871.38,-254.75 871.38,-285.25"/>
<text xml:space="preserve" text-anchor="start" x="282.5" y="-138.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/stroid</text> <text xml:space="preserve" text-anchor="start" x="789.12" y="-271.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/stroid</text>
<text xml:space="preserve" text-anchor="middle" x="319.62" y="-127.5" font-family="Helvetica,sans-Serif" font-size="10.00">/config/config.h</text> <text xml:space="preserve" text-anchor="middle" x="826.25" y="-260.5" font-family="Helvetica,sans-Serif" font-size="10.00">/config/config.h</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node2 --> <!-- Node2 -->
<g id="Node000002" class="node"> <g id="Node000002" class="node">
<title>Node2</title> <title>Node2</title>
<g id="a_Node000002"><a xlink:href="curvilinear_8h.html" target="_top" xlink:title=" "> <g id="a_Node000002"><a xlink:href="stroid_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="128.88,-85.75 18.38,-85.75 18.38,-55.25 128.88,-55.25 128.88,-85.75"/> <polygon fill="white" stroke="#666666" points="842.38,-85.75 752.12,-85.75 752.12,-55.25 842.38,-55.25 842.38,-85.75"/>
<text xml:space="preserve" text-anchor="start" x="26.38" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/stroid</text> <text xml:space="preserve" text-anchor="start" x="760.12" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/stroid</text>
<text xml:space="preserve" text-anchor="middle" x="73.62" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">/topology/curvilinear.h</text> <text xml:space="preserve" text-anchor="middle" x="797.25" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">/stroid.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -32,18 +32,18 @@
<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="M263.25,-121.22C223.01,-110.67 169.15,-96.55 129.11,-86.05"/> <path fill="none" stroke="#63b8ff" d="M769.94,-251.15C725.35,-233.71 666.11,-202.35 638.25,-152.25 631.66,-140.4 630.24,-132.68 638.25,-121.75 641.76,-116.96 706.02,-97.69 751.76,-84.45"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="262.19,-124.56 272.75,-123.71 263.97,-117.79 262.19,-124.56"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="768.63,-254.4 779.22,-254.65 771.1,-247.85 768.63,-254.4"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node4 --> <!-- Node4 -->
<g id="Node000004" class="node"> <g id="Node000004" class="node">
<title>Node4</title> <title>Node4</title>
<g id="a_Node000004"><a xlink:href="mapping_8h.html" target="_top" xlink:title=" "> <g id="a_Node000004"><a xlink:href="curvilinear_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="250.5,-85.75 146.75,-85.75 146.75,-55.25 250.5,-55.25 250.5,-85.75"/> <polygon fill="white" stroke="#666666" points="757.5,-152.25 647,-152.25 647,-121.75 757.5,-121.75 757.5,-152.25"/>
<text xml:space="preserve" text-anchor="start" x="154.75" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/stroid</text> <text xml:space="preserve" text-anchor="start" x="655" y="-138.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/stroid</text>
<text xml:space="preserve" text-anchor="middle" x="198.62" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">/topology/mapping.h</text> <text xml:space="preserve" text-anchor="middle" x="702.25" y="-127.5" font-family="Helvetica,sans-Serif" font-size="10.00">/topology/curvilinear.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -51,72 +51,185 @@
<g id="edge3_Node000001_Node000004" class="edge"> <g id="edge3_Node000001_Node000004" class="edge">
<title>Node1&#45;&gt;Node4</title> <title>Node1&#45;&gt;Node4</title>
<g id="a_edge3_Node000001_Node000004"><a xlink:title=" "> <g id="a_edge3_Node000001_Node000004"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M282.19,-116.04C264.02,-106.36 242.58,-94.93 225.97,-86.08"/> <path fill="none" stroke="#63b8ff" d="M804.86,-246.4C779.39,-219.49 737.6,-175.35 716.06,-152.58"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="280.36,-119.04 290.83,-120.65 283.65,-112.86 280.36,-119.04"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="802.05,-248.52 811.47,-253.38 807.13,-243.71 802.05,-248.52"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node6 --> <!-- Node5 -->
<g id="Node000006" class="node"> <g id="Node000005" class="node">
<title>Node6</title> <title>Node5</title>
<g id="a_Node000006"><a xlink:href="topology_8h.html" target="_top" xlink:title=" "> <g id="a_Node000005"><a xlink:href="mesh_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="370.75,-85.75 268.5,-85.75 268.5,-55.25 370.75,-55.25 370.75,-85.75"/> <polygon fill="white" stroke="#666666" points="425,-80.12 323.5,-80.12 323.5,-60.88 425,-60.88 425,-80.12"/>
<text xml:space="preserve" text-anchor="start" x="276.5" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/stroid</text> <text xml:space="preserve" text-anchor="middle" x="374.25" y="-66.62" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/IO/mesh.cpp</text>
<text xml:space="preserve" text-anchor="middle" x="319.62" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">/topology/topology.h</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node1&#45;&gt;Node6 --> <!-- Node1&#45;&gt;Node5 -->
<g id="edge6_Node000001_Node000006" class="edge"> <g id="edge43_Node000001_Node000005" class="edge">
<title>Node1&#45;&gt;Node6</title> <title>Node1&#45;&gt;Node5</title>
<g id="a_edge6_Node000001_Node000006"><a xlink:title=" "> <g id="a_edge43_Node000001_Node000005"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M319.62,-110.06C319.62,-101.89 319.62,-93.16 319.62,-86.08"/> <path fill="none" stroke="#63b8ff" d="M769.42,-263.36C657.83,-250.94 416.85,-217.05 370.25,-152.25 354.68,-130.6 364.43,-96.6 370.48,-80.52"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="316.13,-109.85 319.63,-119.85 323.13,-109.85 316.13,-109.85"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="768.94,-266.82 779.26,-264.43 769.7,-259.87 768.94,-266.82"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node7 --> <!-- Node9 -->
<g id="Node000007" class="node"> <g id="Node000009" class="node">
<title>Node7</title> <title>Node9</title>
<g id="a_Node000007"><a xlink:href="mesh_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000009"><a xlink:href="mapping_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="490.38,-80.12 388.88,-80.12 388.88,-60.88 490.38,-60.88 490.38,-80.12"/> <polygon fill="white" stroke="#666666" points="304.12,-152.25 200.38,-152.25 200.38,-121.75 304.12,-121.75 304.12,-152.25"/>
<text xml:space="preserve" text-anchor="middle" x="439.62" y="-66.62" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/IO/mesh.cpp</text> <text xml:space="preserve" text-anchor="start" x="208.38" y="-138.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/stroid</text>
<text xml:space="preserve" text-anchor="middle" x="252.25" y="-127.5" font-family="Helvetica,sans-Serif" font-size="10.00">/topology/mapping.h</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node1&#45;&gt;Node7 --> <!-- Node1&#45;&gt;Node9 -->
<g id="edge7_Node000001_Node000007" class="edge"> <g id="edge9_Node000001_Node000009" class="edge">
<title>Node1&#45;&gt;Node7</title> <title>Node1&#45;&gt;Node9</title>
<g id="a_edge7_Node000001_Node000007"><a xlink:title=" "> <g id="a_edge9_Node000001_Node000009"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M356.92,-115.95C378.99,-104.09 405.86,-89.65 422.86,-80.51"/> <path fill="none" stroke="#63b8ff" d="M769.65,-267.74C657.85,-264.51 412.98,-253.58 337.25,-218.75 304.89,-203.87 277.05,-171.6 262.67,-152.67"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="355.34,-112.83 348.19,-120.65 358.65,-119 355.34,-112.83"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="769.4,-271.23 779.49,-268.01 769.59,-264.24 769.4,-271.23"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node8 --> <!-- Node11 -->
<g id="Node000008" class="node"> <g id="Node000011" class="node">
<title>Node8</title> <title>Node11</title>
<g id="a_Node000008"><a xlink:href="topology_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000011"><a xlink:href="optimize_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="647.12,-80.12 508.12,-80.12 508.12,-60.88 647.12,-60.88 647.12,-80.12"/> <polygon fill="white" stroke="#666666" points="591.12,-152.25 487.38,-152.25 487.38,-121.75 591.12,-121.75 591.12,-152.25"/>
<text xml:space="preserve" text-anchor="middle" x="577.62" y="-66.62" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/topology/topology.cpp</text> <text xml:space="preserve" text-anchor="start" x="495.38" y="-138.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/stroid</text>
<text xml:space="preserve" text-anchor="middle" x="539.25" y="-127.5" font-family="Helvetica,sans-Serif" font-size="10.00">/topology/optimize.h</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node1&#45;&gt;Node8 --> <!-- Node1&#45;&gt;Node11 -->
<g id="edge8_Node000001_Node000008" class="edge"> <g id="edge13_Node000001_Node000011" class="edge">
<title>Node1&#45;&gt;Node8</title> <title>Node1&#45;&gt;Node11</title>
<g id="a_edge8_Node000001_Node000008"><a xlink:title=" "> <g id="a_edge13_Node000001_Node000011"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M376.16,-121.87C426.4,-109.31 498.35,-91.32 541.29,-80.58"/> <path fill="none" stroke="#63b8ff" d="M769.44,-266.24C722.37,-261.69 655.31,-249.76 605.25,-218.75 578.47,-202.16 557.6,-170.82 546.98,-152.44"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="375.48,-118.43 366.62,-124.25 377.18,-125.22 375.48,-118.43"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="768.89,-269.71 779.15,-267.09 769.5,-262.73 768.89,-269.71"/>
</a>
</g>
</g>
<!-- Node13 -->
<g id="Node000013" class="node">
<title>Node13</title>
<g id="a_Node000013"><a xlink:href="topology_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="877.38,-152.25 775.12,-152.25 775.12,-121.75 877.38,-121.75 877.38,-152.25"/>
<text xml:space="preserve" text-anchor="start" x="783.12" y="-138.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/stroid</text>
<text xml:space="preserve" text-anchor="middle" x="826.25" y="-127.5" font-family="Helvetica,sans-Serif" font-size="10.00">/topology/topology.h</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node13 -->
<g id="edge17_Node000001_Node000013" class="edge">
<title>Node1&#45;&gt;Node13</title>
<g id="a_edge17_Node000001_Node000013"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M826.25,-243.18C826.25,-216.09 826.25,-174.46 826.25,-152.58"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="822.75,-242.97 826.25,-252.97 829.75,-242.97 822.75,-242.97"/>
</a>
</g>
</g>
<!-- Node14 -->
<g id="Node000014" class="node">
<title>Node14</title>
<g id="a_Node000014"><a xlink:href="mesh__stats_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="1348.88,-152.25 1249.62,-152.25 1249.62,-121.75 1348.88,-121.75 1348.88,-152.25"/>
<text xml:space="preserve" text-anchor="start" x="1257.62" y="-138.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/stroid</text>
<text xml:space="preserve" text-anchor="middle" x="1299.25" y="-127.5" font-family="Helvetica,sans-Serif" font-size="10.00">/utils/mesh_stats.h</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node14 -->
<g id="edge20_Node000001_Node000014" class="edge">
<title>Node1&#45;&gt;Node14</title>
<g id="a_edge20_Node000001_Node000014"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M882.38,-257.15C915.44,-248.93 957.46,-236.28 992.25,-218.75 1012.53,-208.53 1012.41,-197.27 1033.25,-188.25 1116.54,-152.21 1145.24,-169.97 1234.25,-152.25 1239.12,-151.28 1244.19,-150.23 1249.25,-149.16"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="881.9,-253.66 873.01,-259.41 883.55,-260.46 881.9,-253.66"/>
</a>
</g>
</g>
<!-- Node17 -->
<g id="Node000017" class="node">
<title>Node17</title>
<g id="a_Node000017"><a xlink:href="mesh__utils_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="1193,-152.25 1097.5,-152.25 1097.5,-121.75 1193,-121.75 1193,-152.25"/>
<text xml:space="preserve" text-anchor="start" x="1105.5" y="-138.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/stroid</text>
<text xml:space="preserve" text-anchor="middle" x="1145.25" y="-127.5" font-family="Helvetica,sans-Serif" font-size="10.00">/utils/mesh_utils.h</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node17 -->
<g id="edge24_Node000001_Node000017" class="edge">
<title>Node1&#45;&gt;Node17</title>
<g id="a_edge24_Node000001_Node000017"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M882.5,-250.71C905.9,-242.23 932.97,-231.25 956.25,-218.75 976.89,-207.66 978.4,-198.95 999.25,-188.25 1030.49,-172.21 1067.99,-159.43 1097.16,-150.77"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="881.37,-247.4 873.12,-254.05 883.71,-254 881.37,-247.4"/>
</a>
</g>
</g>
<!-- Node18 -->
<g id="Node000018" class="node">
<title>Node18</title>
<g id="a_Node000018"><a xlink:href="types_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="947.38,-218.75 857.12,-218.75 857.12,-188.25 947.38,-188.25 947.38,-218.75"/>
<text xml:space="preserve" text-anchor="start" x="865.12" y="-205.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/stroid</text>
<text xml:space="preserve" text-anchor="middle" x="902.25" y="-194" font-family="Helvetica,sans-Serif" font-size="10.00">/utils/types.h</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node18 -->
<g id="edge29_Node000001_Node000018" class="edge">
<title>Node1&#45;&gt;Node18</title>
<g id="a_edge29_Node000001_Node000018"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M852.18,-246.99C863.04,-237.78 875.37,-227.31 885.07,-219.08"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="850.01,-244.25 844.65,-253.38 854.54,-249.58 850.01,-244.25"/>
</a>
</g>
</g>
<!-- Node23 -->
<g id="Node000023" class="node">
<title>Node23</title>
<g id="a_Node000023"><a xlink:href="topology_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="1180.75,-213.12 1041.75,-213.12 1041.75,-193.88 1180.75,-193.88 1180.75,-213.12"/>
<text xml:space="preserve" text-anchor="middle" x="1111.25" y="-199.62" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/topology/topology.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node23 -->
<g id="edge44_Node000001_Node000023" class="edge">
<title>Node1&#45;&gt;Node23</title>
<g id="a_edge44_Node000001_Node000023"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M882.8,-256.2C938.39,-243.62 1021.85,-224.73 1071.01,-213.61"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="882.18,-252.75 873.2,-258.37 883.73,-259.58 882.18,-252.75"/>
</a>
</g>
</g>
<!-- Node24 -->
<g id="Node000024" class="node">
<title>Node24</title>
<g id="a_Node000024"><a xlink:href="config_2bindings_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="1347.62,-213.12 1198.88,-213.12 1198.88,-193.88 1347.62,-193.88 1347.62,-213.12"/>
<text xml:space="preserve" text-anchor="middle" x="1273.25" y="-199.62" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/config/bindings.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node24 -->
<g id="edge45_Node000001_Node000024" class="edge">
<title>Node1&#45;&gt;Node24</title>
<g id="a_edge45_Node000001_Node000024"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M882.73,-261.79C954.36,-252.51 1081.64,-235.57 1190.25,-218.75 1200.51,-217.16 1211.46,-215.36 1221.93,-213.58"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="882.69,-258.26 873.22,-263.02 883.59,-265.21 882.69,-258.26"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node3 --> <!-- Node3 -->
<g id="Node000003" class="node"> <g id="Node000003" class="node">
<title>Node3</title> <title>Node3</title>
<g id="a_Node000003"><a xlink:href="curvilinear_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000003"><a xlink:href="bindings_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="147.25,-19.25 0,-19.25 0,0 147.25,0 147.25,-19.25"/> <polygon fill="white" stroke="#666666" points="857,-19.25 737.5,-19.25 737.5,0 857,0 857,-19.25"/>
<text xml:space="preserve" text-anchor="middle" x="73.62" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/topology/curvilinear.cpp</text> <text xml:space="preserve" text-anchor="middle" x="797.25" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/bindings.cpp</text>
</a> </a>
</g> </g>
</g> </g>
@@ -124,26 +237,17 @@
<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="M73.62,-43.48C73.62,-34.98 73.62,-26.09 73.62,-19.7"/> <path fill="none" stroke="#63b8ff" d="M797.25,-43.48C797.25,-34.98 797.25,-26.09 797.25,-19.7"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="70.13,-43.43 73.63,-53.43 77.13,-43.43 70.13,-43.43"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="793.75,-43.43 797.25,-53.43 800.75,-43.43 793.75,-43.43"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node4&#45;&gt;Node3 --> <!-- Node4&#45;&gt;Node2 -->
<g id="edge4_Node000004_Node000003" class="edge"> <g id="edge4_Node000004_Node000002" class="edge">
<title>Node4&#45;&gt;Node3</title> <title>Node4&#45;&gt;Node2</title>
<g id="a_edge4_Node000004_Node000003"><a xlink:title=" "> <g id="a_edge4_Node000004_Node000002"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M157.11,-49.94C135.39,-39.72 109.85,-27.69 92.79,-19.65"/> <path fill="none" stroke="#63b8ff" d="M733.05,-115.09C747,-105.62 763.16,-94.64 775.78,-86.08"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="155.5,-53.06 166.04,-54.15 158.48,-46.72 155.5,-53.06"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="731.37,-112 725.06,-120.51 735.3,-117.79 731.37,-112"/>
</a>
</g>
</g>
<!-- Node5 -->
<g id="Node000005" class="node">
<title>Node5</title>
<g id="a_Node000005"><a xlink:href="mapping_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="305.88,-19.25 165.38,-19.25 165.38,0 305.88,0 305.88,-19.25"/>
<text xml:space="preserve" text-anchor="middle" x="235.62" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/topology/mapping.cpp</text>
</a> </a>
</g> </g>
</g> </g>
@@ -151,8 +255,392 @@
<g id="edge5_Node000004_Node000005" class="edge"> <g id="edge5_Node000004_Node000005" class="edge">
<title>Node4&#45;&gt;Node5</title> <title>Node4&#45;&gt;Node5</title>
<g id="a_edge5_Node000004_Node000005"><a xlink:title=" "> <g id="a_edge5_Node000004_Node000005"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M213.87,-45.24C219.54,-36.22 225.63,-26.53 229.92,-19.7"/> <path fill="none" stroke="#63b8ff" d="M635.44,-124.52C580.89,-114.91 501.89,-100.44 433.25,-85.75 425.93,-84.18 418.14,-82.39 410.69,-80.62"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="210.93,-43.34 208.58,-53.67 216.86,-47.06 210.93,-43.34"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="634.75,-127.95 645.21,-126.24 635.96,-121.06 634.75,-127.95"/>
</a>
</g>
</g>
<!-- Node6 -->
<g id="Node000006" class="node">
<title>Node6</title>
<g id="a_Node000006"><a xlink:href="uniform_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="951.75,-85.75 860.75,-85.75 860.75,-55.25 951.75,-55.25 951.75,-85.75"/>
<text xml:space="preserve" text-anchor="start" x="868.75" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/refinement</text>
<text xml:space="preserve" text-anchor="middle" x="906.25" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">/uniform.cpp</text>
</a>
</g>
</g>
<!-- Node4&#45;&gt;Node6 -->
<g id="edge6_Node000004_Node000006" class="edge">
<title>Node4&#45;&gt;Node6</title>
<g id="a_edge6_Node000004_Node000006"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M759.72,-117.83C791.51,-107.78 830.49,-95.45 860.26,-86.04"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="758.72,-114.48 750.24,-120.83 760.83,-121.15 758.72,-114.48"/>
</a>
</g>
</g>
<!-- Node7 -->
<g id="Node000007" class="node">
<title>Node7</title>
<g id="a_Node000007"><a xlink:href="curvilinear_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="305.88,-80.12 158.62,-80.12 158.62,-60.88 305.88,-60.88 305.88,-80.12"/>
<text xml:space="preserve" text-anchor="middle" x="232.25" y="-66.62" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/topology/curvilinear.cpp</text>
</a>
</g>
</g>
<!-- Node4&#45;&gt;Node7 -->
<g id="edge7_Node000004_Node000007" class="edge">
<title>Node4&#45;&gt;Node7</title>
<g id="a_edge7_Node000004_Node000007"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M635.56,-126.55C623.8,-124.92 611.67,-123.27 600.25,-121.75 473.25,-104.89 440.95,-104.72 314.25,-85.75 303.96,-84.21 292.97,-82.41 282.49,-80.61"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="634.8,-129.98 645.19,-127.89 635.76,-123.04 634.8,-129.98"/>
</a>
</g>
</g>
<!-- Node8 -->
<g id="Node000008" class="node">
<title>Node8</title>
<g id="a_Node000008"><a xlink:href="mesh__utils_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="1188.38,-85.75 1098.12,-85.75 1098.12,-55.25 1188.38,-55.25 1188.38,-85.75"/>
<text xml:space="preserve" text-anchor="start" x="1106.12" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/utils/mesh</text>
<text xml:space="preserve" text-anchor="middle" x="1143.25" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">_utils.cpp</text>
</a>
</g>
</g>
<!-- Node4&#45;&gt;Node8 -->
<g id="edge8_Node000004_Node000008" class="edge">
<title>Node4&#45;&gt;Node8</title>
<g id="a_edge8_Node000004_Node000008"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M768.97,-121.42C910.75,-98.72 950.86,-111.58 1089.25,-85.75 1092.01,-85.23 1094.84,-84.65 1097.69,-84.03"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="768.48,-117.96 759.17,-123.03 769.61,-124.87 768.48,-117.96"/>
</a>
</g>
</g>
<!-- Node9&#45;&gt;Node2 -->
<g id="edge10_Node000009_Node000002" class="edge">
<title>Node9&#45;&gt;Node2</title>
<g id="a_edge10_Node000009_Node000002"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M315.83,-128.04C333.44,-125.91 352.58,-123.67 370.25,-121.75 535.82,-103.76 579.31,-115.09 743.25,-85.75 746.02,-85.25 748.85,-84.69 751.7,-84.07"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="315.51,-124.55 306,-129.23 316.35,-131.5 315.51,-124.55"/>
</a>
</g>
</g>
<!-- Node9&#45;&gt;Node7 -->
<g id="edge11_Node000009_Node000007" class="edge">
<title>Node9&#45;&gt;Node7</title>
<g id="a_edge11_Node000009_Node000007"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M244.32,-110.43C241.01,-99.76 237.39,-88.08 234.99,-80.32"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="240.96,-111.4 247.26,-119.92 247.64,-109.33 240.96,-111.4"/>
</a>
</g>
</g>
<!-- Node10 -->
<g id="Node000010" class="node">
<title>Node10</title>
<g id="a_Node000010"><a xlink:href="mapping_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="140.5,-80.12 0,-80.12 0,-60.88 140.5,-60.88 140.5,-80.12"/>
<text xml:space="preserve" text-anchor="middle" x="70.25" y="-66.62" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/topology/mapping.cpp</text>
</a>
</g>
</g>
<!-- Node9&#45;&gt;Node10 -->
<g id="edge12_Node000009_Node000010" class="edge">
<title>Node9&#45;&gt;Node10</title>
<g id="a_edge12_Node000009_Node000010"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M200.22,-117.56C166.08,-105.46 122.91,-90.16 95.94,-80.6"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="198.93,-120.82 209.52,-120.86 201.27,-114.22 198.93,-120.82"/>
</a>
</g>
</g>
<!-- Node11&#45;&gt;Node2 -->
<g id="edge14_Node000011_Node000002" class="edge">
<title>Node11&#45;&gt;Node2</title>
<g id="a_edge14_Node000011_Node000002"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M602.31,-120.75C642.65,-110.92 696.08,-97.78 743.25,-85.75 746.07,-85.03 748.97,-84.28 751.89,-83.53"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="601.65,-117.31 592.77,-123.07 603.31,-124.11 601.65,-117.31"/>
</a>
</g>
</g>
<!-- Node11&#45;&gt;Node6 -->
<g id="edge15_Node000011_Node000006" class="edge">
<title>Node11&#45;&gt;Node6</title>
<g id="a_edge15_Node000011_Node000006"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M602.37,-126.55C679.35,-114.9 804.93,-95.46 851.25,-85.75 854.24,-85.12 857.32,-84.44 860.41,-83.72"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="602.24,-123.03 592.88,-127.98 603.29,-129.95 602.24,-123.03"/>
</a>
</g>
</g>
<!-- Node12 -->
<g id="Node000012" class="node">
<title>Node12</title>
<g id="a_Node000012"><a xlink:href="optimize_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="734.5,-80.12 594,-80.12 594,-60.88 734.5,-60.88 734.5,-80.12"/>
<text xml:space="preserve" text-anchor="middle" x="664.25" y="-66.62" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/topology/optimize.cpp</text>
</a>
</g>
</g>
<!-- Node11&#45;&gt;Node12 -->
<g id="edge16_Node000011_Node000012" class="edge">
<title>Node11&#45;&gt;Node12</title>
<g id="a_edge16_Node000011_Node000012"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M577.79,-116.11C600.83,-104.22 629,-89.69 646.79,-80.51"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="576.24,-112.97 568.96,-120.67 579.45,-119.19 576.24,-112.97"/>
</a>
</g>
</g>
<!-- Node13&#45;&gt;Node2 -->
<g id="edge18_Node000013_Node000002" class="edge">
<title>Node13&#45;&gt;Node2</title>
<g id="a_edge18_Node000013_Node000002"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M814.97,-110.91C811.19,-102.5 807.1,-93.41 803.8,-86.08"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="811.76,-112.3 819.05,-119.98 818.14,-109.43 811.76,-112.3"/>
</a>
</g>
</g>
<!-- Node13&#45;&gt;Node6 -->
<g id="edge19_Node000013_Node000006" class="edge">
<title>Node13&#45;&gt;Node6</title>
<g id="a_edge19_Node000013_Node000006"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M853.2,-114.27C864.72,-104.98 877.85,-94.4 888.17,-86.08"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="851.17,-111.41 845.58,-120.41 855.56,-116.86 851.17,-111.41"/>
</a>
</g>
</g>
<!-- Node14&#45;&gt;Node2 -->
<g id="edge21_Node000014_Node000002" class="edge">
<title>Node14&#45;&gt;Node2</title>
<g id="a_edge21_Node000014_Node000002"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M1238.23,-126.62C1226.31,-124.91 1213.9,-123.2 1202.25,-121.75 1047.08,-102.38 1006.16,-113.44 852.25,-85.75 849.14,-85.19 845.95,-84.55 842.75,-83.85"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="1237.56,-130.06 1247.96,-128.04 1238.57,-123.14 1237.56,-130.06"/>
</a>
</g>
</g>
<!-- Node15 -->
<g id="Node000015" class="node">
<title>Node15</title>
<g id="a_Node000015"><a xlink:href="mesh__stats_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="1454.38,-85.75 1364.12,-85.75 1364.12,-55.25 1454.38,-55.25 1454.38,-85.75"/>
<text xml:space="preserve" text-anchor="start" x="1372.12" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/utils/mesh</text>
<text xml:space="preserve" text-anchor="middle" x="1409.25" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">_stats.cpp</text>
</a>
</g>
</g>
<!-- Node14&#45;&gt;Node15 -->
<g id="edge22_Node000014_Node000015" class="edge">
<title>Node14&#45;&gt;Node15</title>
<g id="a_edge22_Node000014_Node000015"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M1333.98,-115.64C1350.35,-106.04 1369.5,-94.81 1384.39,-86.08"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="1332.37,-112.52 1325.52,-120.6 1335.91,-118.56 1332.37,-112.52"/>
</a>
</g>
</g>
<!-- Node16 -->
<g id="Node000016" class="node">
<title>Node16</title>
<g id="a_Node000016"><a xlink:href="utils_2bindings_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="1346.5,-80.12 1206,-80.12 1206,-60.88 1346.5,-60.88 1346.5,-80.12"/>
<text xml:space="preserve" text-anchor="middle" x="1276.25" y="-66.62" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/utils/bindings.cpp</text>
</a>
</g>
</g>
<!-- Node14&#45;&gt;Node16 -->
<g id="edge23_Node000014_Node000016" class="edge">
<title>Node14&#45;&gt;Node16</title>
<g id="a_edge23_Node000014_Node000016"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M1290.25,-110.77C1286.42,-100.01 1282.19,-88.16 1279.4,-80.32"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="1286.87,-111.69 1293.52,-119.94 1293.46,-109.34 1286.87,-111.69"/>
</a>
</g>
</g>
<!-- Node17&#45;&gt;Node2 -->
<g id="edge25_Node000017_Node000002" class="edge">
<title>Node17&#45;&gt;Node2</title>
<g id="a_edge25_Node000017_Node000002"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M1085.83,-121.4C982.22,-101.25 952.63,-106.35 852.25,-85.75 849.16,-85.12 845.98,-84.42 842.78,-83.68"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="1085.15,-124.83 1095.64,-123.34 1086.51,-117.96 1085.15,-124.83"/>
</a>
</g>
</g>
<!-- Node17&#45;&gt;Node6 -->
<g id="edge26_Node000017_Node000006" class="edge">
<title>Node17&#45;&gt;Node6</title>
<g id="a_edge26_Node000017_Node000006"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M1086.15,-120.05C1044.79,-108.89 990.34,-94.19 952.22,-83.91"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="1085.14,-123.4 1095.71,-122.63 1086.97,-116.65 1085.14,-123.4"/>
</a>
</g>
</g>
<!-- Node17&#45;&gt;Node8 -->
<g id="edge27_Node000017_Node000008" class="edge">
<title>Node17&#45;&gt;Node8</title>
<g id="a_edge27_Node000017_Node000008"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M1144.45,-110.06C1144.19,-101.89 1143.92,-93.16 1143.7,-86.08"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="1140.94,-109.96 1144.75,-119.85 1147.94,-109.75 1140.94,-109.96"/>
</a>
</g>
</g>
<!-- Node17&#45;&gt;Node16 -->
<g id="edge28_Node000017_Node000016" class="edge">
<title>Node17&#45;&gt;Node16</title>
<g id="a_edge28_Node000017_Node000016"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M1184.99,-116.44C1209.26,-104.49 1239.14,-89.77 1257.95,-80.51"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="1183.76,-113.14 1176.33,-120.7 1186.85,-119.42 1183.76,-113.14"/>
</a>
</g>
</g>
<!-- Node18&#45;&gt;Node2 -->
<g id="edge38_Node000018_Node000002" class="edge">
<title>Node18&#45;&gt;Node2</title>
<g id="a_edge38_Node000018_Node000002"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M902.53,-176.58C901.49,-159.56 897.71,-137.59 886.25,-121.75 874.71,-105.79 856.44,-94.22 839.45,-86.24"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="899.02,-176.55 902.82,-186.44 906.02,-176.34 899.02,-176.55"/>
</a>
</g>
</g>
<!-- Node18&#45;&gt;Node4 -->
<g id="edge39_Node000018_Node000004" class="edge">
<title>Node18&#45;&gt;Node4</title>
<g id="a_edge39_Node000018_Node000004"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M846.2,-184.42C815.14,-174.41 777.01,-162.11 747.8,-152.69"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="844.83,-187.66 855.43,-187.4 846.98,-181 844.83,-187.66"/>
</a>
</g>
</g>
<!-- Node18&#45;&gt;Node6 -->
<g id="edge41_Node000018_Node000006" class="edge">
<title>Node18&#45;&gt;Node6</title>
<g id="a_edge41_Node000018_Node000006"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M912.6,-177.19C915.33,-169.33 917.88,-160.55 919.25,-152.25 923.05,-129.13 916.55,-102.27 911.45,-86.09"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="909.36,-175.86 909.14,-186.46 915.92,-178.31 909.36,-175.86"/>
</a>
</g>
</g>
<!-- Node18&#45;&gt;Node14 -->
<g id="edge40_Node000018_Node000014" class="edge">
<title>Node18&#45;&gt;Node14</title>
<g id="a_edge40_Node000018_Node000014"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M959.17,-194.13C1047.11,-181.17 1208.71,-157.2 1235.25,-152.25 1239.84,-151.39 1244.6,-150.45 1249.36,-149.46"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="958.67,-190.67 949.28,-195.59 959.69,-197.59 958.67,-190.67"/>
</a>
</g>
</g>
<!-- Node18&#45;&gt;Node16 -->
<g id="edge42_Node000018_Node000016" class="edge">
<title>Node18&#45;&gt;Node16</title>
<g id="a_edge42_Node000018_Node000016"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M958.81,-194C1042.76,-181.24 1191.63,-158.02 1202.25,-152.25 1234.5,-134.74 1260.18,-97.73 1270.87,-80.58"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="958.53,-190.5 949.17,-195.46 959.58,-197.42 958.53,-190.5"/>
</a>
</g>
</g>
<!-- Node19 -->
<g id="Node000019" class="node">
<title>Node19</title>
<g id="a_Node000019"><a xlink:href="mesh_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="469.38,-152.25 379.12,-152.25 379.12,-121.75 469.38,-121.75 469.38,-152.25"/>
<text xml:space="preserve" text-anchor="start" x="387.12" y="-138.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/stroid</text>
<text xml:space="preserve" text-anchor="middle" x="424.25" y="-127.5" font-family="Helvetica,sans-Serif" font-size="10.00">/IO/mesh.h</text>
</a>
</g>
</g>
<!-- Node18&#45;&gt;Node19 -->
<g id="edge30_Node000018_Node000019" class="edge">
<title>Node18&#45;&gt;Node19</title>
<g id="a_edge30_Node000018_Node000019"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M845.73,-198.33C764.09,-191.75 608.65,-177.06 478.25,-152.25 475.49,-151.72 472.66,-151.14 469.81,-150.5"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="845,-201.79 855.24,-199.09 845.55,-194.81 845,-201.79"/>
</a>
</g>
</g>
<!-- Node21 -->
<g id="Node000021" class="node">
<title>Node21</title>
<g id="a_Node000021"><a xlink:href="uniform_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="1079.38,-152.25 971.12,-152.25 971.12,-121.75 1079.38,-121.75 1079.38,-152.25"/>
<text xml:space="preserve" text-anchor="start" x="979.12" y="-138.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/stroid</text>
<text xml:space="preserve" text-anchor="middle" x="1025.25" y="-127.5" font-family="Helvetica,sans-Serif" font-size="10.00">/refinement/uniform.h</text>
</a>
</g>
</g>
<!-- Node18&#45;&gt;Node21 -->
<g id="edge34_Node000018_Node000021" class="edge">
<title>Node18&#45;&gt;Node21</title>
<g id="a_edge34_Node000018_Node000021"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M940.31,-182.54C958.78,-172.86 980.57,-161.43 997.45,-152.58"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="938.73,-179.42 931.5,-187.16 941.98,-185.62 938.73,-179.42"/>
</a>
</g>
</g>
<!-- Node19&#45;&gt;Node2 -->
<g id="edge31_Node000019_Node000002" class="edge">
<title>Node19&#45;&gt;Node2</title>
<g id="a_edge31_Node000019_Node000002"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M480.92,-121.38C596.83,-99.14 630.21,-108.26 743.25,-85.75 746.01,-85.2 748.83,-84.59 751.68,-83.95"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="480.45,-117.9 471.31,-123.26 481.8,-124.77 480.45,-117.9"/>
</a>
</g>
</g>
<!-- Node19&#45;&gt;Node5 -->
<g id="edge32_Node000019_Node000005" class="edge">
<title>Node19&#45;&gt;Node5</title>
<g id="a_edge32_Node000019_Node000005"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M406,-112.45C397.33,-101.27 387.49,-88.57 381.09,-80.32"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="403.08,-114.41 411.98,-120.17 408.62,-110.12 403.08,-114.41"/>
</a>
</g>
</g>
<!-- Node20 -->
<g id="Node000020" class="node">
<title>Node20</title>
<g id="a_Node000020"><a xlink:href="_i_o_2bindings_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="575.75,-80.12 442.75,-80.12 442.75,-60.88 575.75,-60.88 575.75,-80.12"/>
<text xml:space="preserve" text-anchor="middle" x="509.25" y="-66.62" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/IO/bindings.cpp</text>
</a>
</g>
</g>
<!-- Node19&#45;&gt;Node20 -->
<g id="edge33_Node000019_Node000020" class="edge">
<title>Node19&#45;&gt;Node20</title>
<g id="a_edge33_Node000019_Node000020"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M452.65,-114.45C467.99,-102.81 486.1,-89.07 497.62,-80.32"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="450.59,-111.62 444.74,-120.45 454.83,-117.19 450.59,-111.62"/>
</a>
</g>
</g>
<!-- Node21&#45;&gt;Node2 -->
<g id="edge35_Node000021_Node000002" class="edge">
<title>Node21&#45;&gt;Node2</title>
<g id="a_edge35_Node000021_Node000002"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M962.32,-118.2C924.46,-107.49 877.13,-94.1 842.87,-84.41"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="961.2,-121.52 971.77,-120.87 963.1,-114.78 961.2,-121.52"/>
</a>
</g>
</g>
<!-- Node21&#45;&gt;Node6 -->
<g id="edge36_Node000021_Node000006" class="edge">
<title>Node21&#45;&gt;Node6</title>
<g id="a_edge36_Node000021_Node000006"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M988.18,-115.91C970.36,-106.25 949.41,-94.89 933.15,-86.08"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="986.46,-118.95 996.92,-120.64 989.79,-112.8 986.46,-118.95"/>
</a>
</g>
</g>
<!-- Node22 -->
<g id="Node000022" class="node">
<title>Node22</title>
<g id="a_Node000022"><a xlink:href="refinement_2bindings_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="1080.5,-85.75 970,-85.75 970,-55.25 1080.5,-55.25 1080.5,-85.75"/>
<text xml:space="preserve" text-anchor="start" x="978" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/refinement</text>
<text xml:space="preserve" text-anchor="middle" x="1025.25" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">/bindings.cpp</text>
</a>
</g>
</g>
<!-- Node21&#45;&gt;Node22 -->
<g id="edge37_Node000021_Node000022" class="edge">
<title>Node21&#45;&gt;Node22</title>
<g id="a_edge37_Node000021_Node000022"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M1025.25,-110.06C1025.25,-101.89 1025.25,-93.16 1025.25,-86.08"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="1021.75,-109.85 1025.25,-119.85 1028.75,-109.85 1021.75,-109.85"/>
</a> </a>
</g> </g>
</g> </g>

Before

Width:  |  Height:  |  Size: 7.6 KiB

After

Width:  |  Height:  |  Size: 32 KiB

View File

@@ -31,7 +31,7 @@
<tr id="projectrow"> <tr id="projectrow">
<td id="projectlogo"><img alt="Logo" src="Logo.png"/></td> <td id="projectlogo"><img alt="Logo" src="Logo.png"/></td>
<td id="projectalign"> <td id="projectalign">
<div id="projectname">stroid<span id="projectnumber">&#160;v0.2.0</span> <div id="projectname">stroid<span id="projectnumber">&#160;v0.6.0</span>
</div> </div>
<div id="projectbrief">Multi-block curvilinear mesh generation</div> <div id="projectbrief">Multi-block curvilinear mesh generation</div>
</td> </td>
@@ -110,19 +110,19 @@ $(function(){initNavTree('curvilinear_8cpp.html',''); initResizable(true); });
<div class="textblock"><code>#include &quot;<a class="el" href="curvilinear_8h.html">stroid/topology/curvilinear.h</a>&quot;</code><br /> <div class="textblock"><code>#include &quot;<a class="el" href="curvilinear_8h.html">stroid/topology/curvilinear.h</a>&quot;</code><br />
<code>#include &quot;<a class="el" href="mapping_8h.html">stroid/topology/mapping.h</a>&quot;</code><br /> <code>#include &quot;<a class="el" href="mapping_8h.html">stroid/topology/mapping.h</a>&quot;</code><br />
<code>#include &lt;iostream&gt;</code><br /> <code>#include &lt;iostream&gt;</code><br />
<code>#include &lt;memory&gt;</code><br />
<code>#include &lt;sys/proc.h&gt;</code><br />
</div><div class="textblock"><div class="dynheader"> </div><div class="textblock"><div class="dynheader">
Include dependency graph for curvilinear.cpp:</div> Include dependency graph for curvilinear.cpp:</div>
<div class="dyncontent"> <div class="dyncontent">
<div class="center"><div class="zoom"><iframe scrolling="no" frameborder="0" src="curvilinear_8cpp__incl.svg" width="100%" height="438"><p><b>This browser is not able to show SVG: try Firefox, Chrome, Safari, or Opera instead.</b></p></iframe></div></div> <div class="center"><div class="zoom"><iframe scrolling="no" frameborder="0" src="curvilinear_8cpp__incl.svg" width="100%" height="548"><p><b>This browser is not able to show SVG: try Firefox, Chrome, Safari, or Opera instead.</b></p></iframe></div></div>
</div> </div>
</div><table class="memberdecls"> </div><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="namespaces" name="namespaces"></a> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="namespaces" name="namespaces"></a>
Namespaces</h2></td></tr> Namespaces</h2></td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">namespace &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacestroid.html">stroid</a></td></tr> <tr class="memitem:"><td class="memItemLeft" align="right" valign="top">namespace &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacestroid.html">stroid</a></td></tr>
<tr class="memdesc:namespacestroid"><td class="mdescLeft">&#160;</td><td class="mdescRight">Public API surface for the stroid mesh generation library. <br /></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">namespace &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacestroid_1_1topology.html">stroid::topology</a></td></tr> <tr class="memitem:"><td class="memItemLeft" align="right" valign="top">namespace &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacestroid_1_1topology.html">stroid::topology</a></td></tr>
<tr class="memdesc:namespacestroid_1_1topology"><td class="mdescLeft">&#160;</td><td class="mdescRight">Topology construction and curvilinear mapping utilities. <br /></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="separator:"><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="func-members" name="func-members"></a> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="func-members" name="func-members"></a>
@@ -133,6 +133,9 @@ Functions</h2></td></tr>
<tr class="memitem:a836ed13e5bac63e7952c3ce4e5532e78" id="r_a836ed13e5bac63e7952c3ce4e5532e78"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacestroid_1_1topology.html#a836ed13e5bac63e7952c3ce4e5532e78">stroid::topology::ProjectMesh</a> (mfem::Mesh &amp;mesh, const fourdst::config::Config&lt; <a class="el" href="structstroid_1_1config_1_1_mesh_config.html">config::MeshConfig</a> &gt; &amp;config)</td></tr> <tr class="memitem:a836ed13e5bac63e7952c3ce4e5532e78" id="r_a836ed13e5bac63e7952c3ce4e5532e78"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacestroid_1_1topology.html#a836ed13e5bac63e7952c3ce4e5532e78">stroid::topology::ProjectMesh</a> (mfem::Mesh &amp;mesh, const fourdst::config::Config&lt; <a class="el" href="structstroid_1_1config_1_1_mesh_config.html">config::MeshConfig</a> &gt; &amp;config)</td></tr>
<tr class="memdesc:a836ed13e5bac63e7952c3ce4e5532e78"><td class="mdescLeft">&#160;</td><td class="mdescRight">Project high-order mesh nodes using the configured curvilinear mapping. <br /></td></tr> <tr class="memdesc:a836ed13e5bac63e7952c3ce4e5532e78"><td class="mdescLeft">&#160;</td><td class="mdescRight">Project high-order mesh nodes using the configured curvilinear mapping. <br /></td></tr>
<tr class="separator:a836ed13e5bac63e7952c3ce4e5532e78"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="separator:a836ed13e5bac63e7952c3ce4e5532e78"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5ab92f7fb487c4639042539bf7b86606" id="r_a5ab92f7fb487c4639042539bf7b86606"><td class="memItemLeft" align="right" valign="top">std::unique_ptr&lt; <a class="el" href="structstroid_1_1_scalar_mesh_field.html">ScalarMeshField</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacestroid_1_1topology.html#a5ab92f7fb487c4639042539bf7b86606">stroid::topology::BuildExteriorCoordinate</a> (mfem::Mesh &amp;mesh, mfem::Mesh &amp;reference_mesh, const fourdst::config::Config&lt; <a class="el" href="structstroid_1_1config_1_1_mesh_config.html">config::MeshConfig</a> &gt; &amp;config)</td></tr>
<tr class="memdesc:a5ab92f7fb487c4639042539bf7b86606"><td class="mdescLeft">&#160;</td><td class="mdescRight">Build a scalar grid function representing the compactification coordinate for a mesh. This ranges from 0-1 with 0 at the stellar surface and 1 at the compactified infinity. <br /></td></tr>
<tr class="separator:a5ab92f7fb487c4639042539bf7b86606"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table> </table>
</div><!-- contents --> </div><!-- contents -->
</div><!-- doc-content --> </div><!-- doc-content -->

View File

@@ -1,5 +1,6 @@
var curvilinear_8cpp = var curvilinear_8cpp =
[ [
[ "stroid::topology::BuildExteriorCoordinate", "namespacestroid_1_1topology.html#a5ab92f7fb487c4639042539bf7b86606", null ],
[ "stroid::topology::ProjectMesh", "namespacestroid_1_1topology.html#a836ed13e5bac63e7952c3ce4e5532e78", null ], [ "stroid::topology::ProjectMesh", "namespacestroid_1_1topology.html#a836ed13e5bac63e7952c3ce4e5532e78", null ],
[ "stroid::topology::PromoteToHighOrder", "namespacestroid_1_1topology.html#a5907aa2e639cda703d48d177abc37caf", null ] [ "stroid::topology::PromoteToHighOrder", "namespacestroid_1_1topology.html#a5907aa2e639cda703d48d177abc37caf", null ]
]; ];

View File

@@ -1,22 +1,41 @@
<map id="src/lib/topology/curvilinear.cpp" name="src/lib/topology/curvilinear.cpp"> <map id="src/lib/topology/curvilinear.cpp" name="src/lib/topology/curvilinear.cpp">
<area shape="rect" id="Node000001" title=" " alt="" coords="348,5,544,31"/> <area shape="rect" id="Node000001" title=" " alt="" coords="536,5,732,31"/>
<area shape="rect" id="Node000002" href="$curvilinear_8h.html" title=" " alt="" coords="207,79,387,105"/> <area shape="rect" id="Node000002" href="$curvilinear_8h.html" title=" " alt="" coords="334,79,513,105"/>
<area shape="poly" id="edge1_Node000001_Node000002" title=" " alt="" coords="424,31,337,74,335,69,418,32"/> <area shape="poly" id="edge1_Node000001_Node000002" title=" " alt="" coords="596,33,475,76,473,71,601,30"/>
<area shape="rect" id="Node000006" href="$mapping_8h.html" title=" " alt="" coords="13,79,184,105"/> <area shape="rect" id="Node000016" href="$mapping_8h.html" title=" " alt="" coords="549,79,719,105"/>
<area shape="poly" id="edge5_Node000001_Node000006" title=" " alt="" coords="386,34,173,78,172,73,388,29"/> <area shape="poly" id="edge18_Node000001_Node000016" title=" " alt="" coords="636,29,636,65,632,62,633,33"/>
<area shape="rect" id="Node000007" title=" " alt="" coords="411,79,482,105"/> <area shape="rect" id="Node000017" title=" " alt="" coords="744,79,815,105"/>
<area shape="poly" id="edge9_Node000001_Node000007" title=" " alt="" coords="448,29,449,65,444,62,445,33"/> <area shape="poly" id="edge22_Node000001_Node000017" title=" " alt="" coords="659,29,744,72,738,72,659,34"/>
<area shape="rect" id="Node000008" title=" " alt="" coords="506,79,574,105"/> <area shape="rect" id="Node000003" title=" " alt="" coords="466,226,546,252"/>
<area shape="poly" id="edge10_Node000001_Node000008" title=" " alt="" coords="463,29,515,70,509,69,461,34"/> <area shape="poly" id="edge2_Node000002_Node000003" title=" " alt="" coords="418,103,404,140,402,159,407,177,428,200,456,220,451,219,424,205,402,180,397,160,399,139,414,107"/>
<area shape="rect" id="Node000009" title=" " alt="" coords="598,79,681,105"/> <area shape="rect" id="Node000004" href="$config_8h.html" title=" " alt="" coords="570,226,712,252"/>
<area shape="poly" id="edge11_Node000001_Node000009" title=" " alt="" coords="479,29,595,73,590,73,479,34"/> <area shape="poly" id="edge3_Node000002_Node000004" title=" " alt="" coords="425,103,432,140,439,160,451,176,469,188,497,200,569,222,563,222,495,205,466,193,447,180,434,162,427,141,422,107"/>
<area shape="rect" id="Node000003" title=" " alt="" coords="5,153,85,178"/> <area shape="rect" id="Node000010" title=" " alt="" coords="460,153,611,178"/>
<area shape="poly" id="edge2_Node000002_Node000003" title=" " alt="" coords="255,108,100,151,99,146,254,103"/> <area shape="poly" id="edge9_Node000002_Node000010" title=" " alt="" coords="443,103,506,144,501,144,442,108"/>
<area shape="rect" id="Node000004" href="$config_8h.html" title=" " alt="" coords="108,153,251,178"/> <area shape="rect" id="Node000011" href="$types_8h.html" title=" " alt="" coords="207,153,336,178"/>
<area shape="poly" id="edge3_Node000002_Node000004" title=" " alt="" coords="280,105,214,147,211,142,275,106"/> <area shape="poly" id="edge10_Node000002_Node000011" title=" " alt="" coords="395,106,312,148,310,143,400,104"/>
<area shape="rect" id="Node000005" title=" " alt="" coords="275,153,426,178"/> <area shape="rect" id="Node000005" title=" " alt="" coords="567,300,627,326"/>
<area shape="poly" id="edge4_Node000002_Node000005" title=" " alt="" coords="307,102,335,141,330,139,305,107"/> <area shape="poly" id="edge4_Node000004_Node000005" title=" " alt="" coords="636,251,614,289,611,284,631,254"/>
<area shape="poly" id="edge6_Node000006_Node000003" title=" " alt="" coords="92,104,65,142,61,138,87,106"/> <area shape="rect" id="Node000006" title=" " alt="" coords="652,300,718,326"/>
<area shape="poly" id="edge7_Node000006_Node000004" title=" " alt="" coords="113,103,157,142,152,143,111,108"/> <area shape="poly" id="edge5_Node000004_Node000006" title=" " alt="" coords="649,250,672,288,667,285,647,255"/>
<area shape="poly" id="edge8_Node000006_Node000005" title=" " alt="" coords="141,103,295,146,291,150,141,108"/> <area shape="rect" id="Node000007" title=" " alt="" coords="260,300,313,326"/>
<area shape="poly" id="edge6_Node000004_Node000007" title=" " alt="" coords="583,253,329,306,328,300,578,252"/>
<area shape="rect" id="Node000008" title=" " alt="" coords="742,300,801,326"/>
<area shape="poly" id="edge7_Node000004_Node000008" title=" " alt="" coords="664,250,739,293,734,292,662,255"/>
<area shape="rect" id="Node000009" title=" " alt="" coords="475,300,543,326"/>
<area shape="poly" id="edge8_Node000004_Node000009" title=" " alt="" coords="621,252,545,295,543,290,616,253"/>
<area shape="poly" id="edge11_Node000011_Node000003" title=" " alt="" coords="312,176,454,221,449,222,311,182"/>
<area shape="poly" id="edge12_Node000011_Node000004" title=" " alt="" coords="335,176,566,222,561,224,334,182"/>
<area shape="poly" id="edge15_Node000011_Node000007" title=" " alt="" coords="208,180,174,193,143,209,133,218,126,228,126,238,131,250,154,274,183,290,215,300,247,308,241,308,213,305,181,295,151,278,127,254,120,239,121,226,128,214,140,204,172,188,213,178"/>
<area shape="rect" id="Node000012" title=" " alt="" coords="141,226,210,252"/>
<area shape="poly" id="edge13_Node000011_Node000012" title=" " alt="" coords="257,178,205,219,202,215,253,180"/>
<area shape="rect" id="Node000013" title=" " alt="" coords="234,226,309,252"/>
<area shape="poly" id="edge14_Node000011_Node000013" title=" " alt="" coords="273,176,274,212,269,209,270,181"/>
<area shape="rect" id="Node000014" title=" " alt="" coords="332,226,443,252"/>
<area shape="poly" id="edge16_Node000011_Node000014" title=" " alt="" coords="292,176,358,218,352,218,291,181"/>
<area shape="rect" id="Node000015" title=" " alt="" coords="5,226,66,252"/>
<area shape="poly" id="edge17_Node000011_Node000015" title=" " alt="" coords="231,182,82,227,80,222,232,176"/>
<area shape="poly" id="edge19_Node000016_Node000003" title=" " alt="" coords="637,103,638,140,634,161,624,180,596,207,561,225,559,220,593,203,620,177,629,159,633,140,634,107"/>
<area shape="poly" id="edge20_Node000016_Node000004" title=" " alt="" coords="644,103,658,125,669,152,669,184,657,215,654,211,663,184,664,153,653,128,642,108"/>
<area shape="poly" id="edge21_Node000016_Node000010" title=" " alt="" coords="620,104,565,146,563,141,615,106"/>
</map> </map>

View File

@@ -1 +1 @@
6950d4e2891a4c4f47ed638d27c5bf68 d45956378a9ea1ae6c7d8c6291ea6c42

View File

@@ -4,7 +4,7 @@
<!-- Generated by graphviz version 14.1.2 (20260124.0452) <!-- Generated by graphviz version 14.1.2 (20260124.0452)
--> -->
<!-- Title: src/lib/topology/curvilinear.cpp Pages: 1 --> <!-- Title: src/lib/topology/curvilinear.cpp Pages: 1 -->
<!--zoomable 138 --> <!--zoomable 248 -->
<svg id="main" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" onload="init(evt)"> <svg id="main" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" onload="init(evt)">
@@ -47,8 +47,8 @@
</g> </g>
</defs> </defs>
<script type="application/ecmascript"> <script type="application/ecmascript">
var viewWidth = 515; var viewWidth = 615;
var viewHeight = 138; var viewHeight = 248;
var sectionId = 'dynsection-0'; var sectionId = 'dynsection-0';
</script> </script>
<script type="application/ecmascript" xlink:href="svg.min.js"/> <script type="application/ecmascript" xlink:href="svg.min.js"/>
@@ -59,8 +59,8 @@ var sectionId = 'dynsection-0';
<g id="Node000001" class="node"> <g id="Node000001" class="node">
<title>Node1</title> <title>Node1</title>
<g id="a_Node000001"><a xlink:title=" "> <g id="a_Node000001"><a xlink:title=" ">
<polygon fill="#999999" stroke="#666666" points="404.38,-129.75 257.12,-129.75 257.12,-110.5 404.38,-110.5 404.38,-129.75"/> <polygon fill="#999999" stroke="#666666" points="545.25,-240.25 398,-240.25 398,-221 545.25,-221 545.25,-240.25"/>
<text xml:space="preserve" text-anchor="middle" x="330.75" y="-116.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/topology/curvilinear.cpp</text> <text xml:space="preserve" text-anchor="middle" x="471.62" y="-226.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/topology/curvilinear.cpp</text>
</a> </a>
</g> </g>
</g> </g>
@@ -68,8 +68,8 @@ var sectionId = 'dynsection-0';
<g id="Node000002" class="node"> <g id="Node000002" class="node">
<title>Node2</title> <title>Node2</title>
<g id="a_Node000002"><a xlink:href="curvilinear_8h.html" target="_top" xlink:title=" "> <g id="a_Node000002"><a xlink:href="curvilinear_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="286,-74.5 151.5,-74.5 151.5,-55.25 286,-55.25 286,-74.5"/> <polygon fill="white" stroke="#666666" points="380.88,-185 246.38,-185 246.38,-165.75 380.88,-165.75 380.88,-185"/>
<text xml:space="preserve" text-anchor="middle" x="218.75" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">stroid/topology/curvilinear.h</text> <text xml:space="preserve" text-anchor="middle" x="313.62" y="-171.5" font-family="Helvetica,sans-Serif" font-size="10.00">stroid/topology/curvilinear.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -77,80 +77,44 @@ var sectionId = 'dynsection-0';
<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="M311.75,-110.09C294.29,-101.79 268.15,-89.36 248.03,-79.79"/> <path fill="none" stroke="#63b8ff" d="M444.82,-220.59C419.17,-211.95 380.24,-198.82 351.44,-189.12"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="249.74,-76.74 239.21,-75.6 246.74,-83.06 249.74,-76.74"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="352.59,-185.81 341.99,-185.94 350.35,-192.45 352.59,-185.81"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node6 --> <!-- Node16 -->
<g id="Node000006" class="node"> <g id="Node000016" class="node">
<title>Node6</title> <title>Node16</title>
<g id="a_Node000006"><a xlink:href="mapping_8h.html" target="_top" xlink:title=" "> <g id="a_Node000016"><a xlink:href="mapping_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="133.62,-74.5 5.88,-74.5 5.88,-55.25 133.62,-55.25 133.62,-74.5"/> <polygon fill="white" stroke="#666666" points="535.5,-185 407.75,-185 407.75,-165.75 535.5,-165.75 535.5,-185"/>
<text xml:space="preserve" text-anchor="middle" x="69.75" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">stroid/topology/mapping.h</text> <text xml:space="preserve" text-anchor="middle" x="471.62" y="-171.5" font-family="Helvetica,sans-Serif" font-size="10.00">stroid/topology/mapping.h</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node1&#45;&gt;Node6 --> <!-- Node1&#45;&gt;Node16 -->
<g id="edge5_Node000001_Node000006" class="edge"> <g id="edge18_Node000001_Node000016" class="edge">
<title>Node1&#45;&gt;Node6</title> <title>Node1&#45;&gt;Node16</title>
<g id="a_edge5_Node000001_Node000006"><a xlink:title=" "> <g id="a_edge18_Node000001_Node000016"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M286.18,-110.03C241.7,-100.96 173.24,-86.99 125.26,-77.2"/> <path fill="none" stroke="#63b8ff" d="M471.62,-220.83C471.62,-214.32 471.62,-205.17 471.62,-196.87"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="126.12,-73.8 115.62,-75.23 124.72,-80.66 126.12,-73.8"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="475.13,-196.87 471.63,-186.87 468.13,-196.87 475.13,-196.87"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node7 --> <!-- Node17 -->
<g id="Node000007" class="node"> <g id="Node000017" class="node">
<title>Node7</title> <title>Node17</title>
<g id="a_Node000007"><a xlink:title=" "> <g id="a_Node000017"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="357.5,-74.5 304,-74.5 304,-55.25 357.5,-55.25 357.5,-74.5"/> <polygon fill="#e0e0e0" stroke="#999999" points="607.38,-185 553.88,-185 553.88,-165.75 607.38,-165.75 607.38,-185"/>
<text xml:space="preserve" text-anchor="middle" x="330.75" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">iostream</text> <text xml:space="preserve" text-anchor="middle" x="580.62" y="-171.5" font-family="Helvetica,sans-Serif" font-size="10.00">iostream</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node1&#45;&gt;Node7 --> <!-- Node1&#45;&gt;Node17 -->
<g id="edge9_Node000001_Node000007" class="edge"> <g id="edge22_Node000001_Node000017" class="edge">
<title>Node1&#45;&gt;Node7</title> <title>Node1&#45;&gt;Node17</title>
<g id="a_edge9_Node000001_Node000007"><a xlink:title=" "> <g id="a_edge22_Node000001_Node000017"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M330.75,-110.33C330.75,-103.82 330.75,-94.67 330.75,-86.37"/> <path fill="none" stroke="#63b8ff" d="M490.12,-220.59C507.03,-212.33 532.31,-199.98 551.86,-190.43"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="334.25,-86.37 330.75,-76.37 327.25,-86.37 334.25,-86.37"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="553.24,-193.65 560.68,-186.12 550.16,-187.36 553.24,-193.65"/>
</a>
</g>
</g>
<!-- Node8 -->
<g id="Node000008" class="node">
<title>Node8</title>
<g id="a_Node000008"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="426.38,-74.5 375.12,-74.5 375.12,-55.25 426.38,-55.25 426.38,-74.5"/>
<text xml:space="preserve" text-anchor="middle" x="400.75" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">memory</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node8 -->
<g id="edge10_Node000001_Node000008" class="edge">
<title>Node1&#45;&gt;Node8</title>
<g id="a_edge10_Node000001_Node000008"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M342.62,-110.09C352.84,-102.32 367.82,-90.92 380.01,-81.65"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="382.01,-84.53 387.85,-75.69 377.77,-78.96 382.01,-84.53"/>
</a>
</g>
</g>
<!-- Node9 -->
<g id="Node000009" class="node">
<title>Node9</title>
<g id="a_Node000009"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="506.62,-74.5 444.88,-74.5 444.88,-55.25 506.62,-55.25 506.62,-74.5"/>
<text xml:space="preserve" text-anchor="middle" x="475.75" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">sys/proc.h</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node9 -->
<g id="edge11_Node000001_Node000009" class="edge">
<title>Node1&#45;&gt;Node9</title>
<g id="a_edge11_Node000001_Node000009"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M355.35,-110.09C378.68,-101.52 413.99,-88.56 440.35,-78.88"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="441.43,-82.21 449.61,-75.47 439.02,-75.64 441.43,-82.21"/>
</a> </a>
</g> </g>
</g> </g>
@@ -158,8 +122,8 @@ 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="59.5,-19.25 0,-19.25 0,0 59.5,0 59.5,-19.25"/> <polygon fill="#e0e0e0" stroke="#999999" points="405.38,-74.5 345.88,-74.5 345.88,-55.25 405.38,-55.25 405.38,-74.5"/>
<text xml:space="preserve" text-anchor="middle" x="29.75" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">mfem.hpp</text> <text xml:space="preserve" text-anchor="middle" x="375.62" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">mfem.hpp</text>
</a> </a>
</g> </g>
</g> </g>
@@ -167,8 +131,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="M186.69,-54.84C154.66,-45.82 105.32,-31.92 70.53,-22.11"/> <path fill="none" stroke="#63b8ff" d="M307.97,-165.52C300.52,-152.61 289.47,-128.23 299.62,-110.5 307.64,-96.5 321.94,-86.47 335.99,-79.5"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="71.81,-18.84 61.24,-19.5 69.91,-25.58 71.81,-18.84"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="337.02,-82.88 344.7,-75.58 334.15,-76.49 337.02,-82.88"/>
</a> </a>
</g> </g>
</g> </g>
@@ -176,8 +140,8 @@ var sectionId = 'dynsection-0';
<g id="Node000004" class="node"> <g id="Node000004" class="node">
<title>Node4</title> <title>Node4</title>
<g id="a_Node000004"><a xlink:href="config_8h.html" target="_top" xlink:title=" "> <g id="a_Node000004"><a xlink:href="config_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="184.12,-19.25 77.38,-19.25 77.38,0 184.12,0 184.12,-19.25"/> <polygon fill="white" stroke="#666666" points="530,-74.5 423.25,-74.5 423.25,-55.25 530,-55.25 530,-74.5"/>
<text xml:space="preserve" text-anchor="middle" x="130.75" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">stroid/config/config.h</text> <text xml:space="preserve" text-anchor="middle" x="476.62" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">stroid/config/config.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -185,8 +149,44 @@ var sectionId = 'dynsection-0';
<g id="edge3_Node000002_Node000004" class="edge"> <g id="edge3_Node000002_Node000004" class="edge">
<title>Node2&#45;&gt;Node4</title> <title>Node2&#45;&gt;Node4</title>
<g id="a_edge3_Node000002_Node000004"><a xlink:title=" "> <g id="a_edge3_Node000002_Node000004"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M203.82,-54.84C190.55,-46.81 170.88,-34.91 155.3,-25.48"/> <path fill="none" stroke="#63b8ff" d="M313.74,-165.65C314.39,-152.01 317.66,-125.64 332.62,-110.5 345.24,-97.74 385.68,-85.84 420.5,-77.55"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="157.41,-22.67 147.05,-20.49 153.79,-28.66 157.41,-22.67"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="421.14,-80.99 430.09,-75.32 419.56,-74.17 421.14,-80.99"/>
</a>
</g>
</g>
<!-- Node10 -->
<g id="Node000010" class="node">
<title>Node10</title>
<g id="a_Node000010"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="454,-129.75 341.25,-129.75 341.25,-110.5 454,-110.5 454,-129.75"/>
<text xml:space="preserve" text-anchor="middle" x="397.62" y="-116.25" font-family="Helvetica,sans-Serif" font-size="10.00">fourdst/config/config.h</text>
</a>
</g>
</g>
<!-- Node2&#45;&gt;Node10 -->
<g id="edge9_Node000002_Node000010" class="edge">
<title>Node2&#45;&gt;Node10</title>
<g id="a_edge9_Node000002_Node000010"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M327.87,-165.34C340.42,-157.39 358.96,-145.64 373.77,-136.25"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="375.46,-139.32 382.03,-131.01 371.71,-133.41 375.46,-139.32"/>
</a>
</g>
</g>
<!-- Node11 -->
<g id="Node000011" class="node">
<title>Node11</title>
<g id="a_Node000011"><a xlink:href="types_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="247.75,-129.75 151.5,-129.75 151.5,-110.5 247.75,-110.5 247.75,-129.75"/>
<text xml:space="preserve" text-anchor="middle" x="199.62" y="-116.25" font-family="Helvetica,sans-Serif" font-size="10.00">stroid/utils/types.h</text>
</a>
</g>
</g>
<!-- Node2&#45;&gt;Node11 -->
<g id="edge10_Node000002_Node000011" class="edge">
<title>Node2&#45;&gt;Node11</title>
<g id="a_edge10_Node000002_Node000011"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M294.29,-165.34C276.52,-157.04 249.91,-144.61 229.42,-135.04"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="230.97,-131.9 220.43,-130.84 228.01,-138.25 230.97,-131.9"/>
</a> </a>
</g> </g>
</g> </g>
@@ -194,44 +194,215 @@ 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="315.12,-19.25 202.38,-19.25 202.38,0 315.12,0 315.12,-19.25"/> <polygon fill="#e0e0e0" stroke="#999999" points="466.25,-19.25 421,-19.25 421,0 466.25,0 466.25,-19.25"/>
<text xml:space="preserve" text-anchor="middle" x="258.75" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">fourdst/config/config.h</text> <text xml:space="preserve" text-anchor="middle" x="443.62" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">cstdint</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node2&#45;&gt;Node5 --> <!-- Node4&#45;&gt;Node5 -->
<g id="edge4_Node000002_Node000005" class="edge"> <g id="edge4_Node000004_Node000005" class="edge">
<title>Node2&#45;&gt;Node5</title> <title>Node4&#45;&gt;Node5</title>
<g id="a_edge4_Node000002_Node000005"><a xlink:title=" "> <g id="a_edge4_Node000004_Node000005"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M225.36,-55.08C230.71,-47.96 238.43,-37.68 245.1,-28.8"/> <path fill="none" stroke="#63b8ff" d="M471.18,-55.08C466.85,-48.11 460.66,-38.12 455.24,-29.37"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="247.88,-30.92 251.09,-20.82 242.29,-26.71 247.88,-30.92"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="458.23,-27.55 449.99,-20.9 452.28,-31.24 458.23,-27.55"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node6&#45;&gt;Node3 --> <!-- Node6 -->
<g id="edge6_Node000006_Node000003" class="edge"> <g id="Node000006" class="node">
<title>Node6&#45;&gt;Node3</title> <title>Node6</title>
<g id="a_edge6_Node000006_Node000003"><a xlink:title=" "> <g id="a_Node000006"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M63.14,-55.08C57.79,-47.96 50.07,-37.68 43.4,-28.8"/> <polygon fill="#e0e0e0" stroke="#999999" points="534.5,-19.25 484.75,-19.25 484.75,0 534.5,0 534.5,-19.25"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="46.21,-26.71 37.41,-20.82 40.62,-30.92 46.21,-26.71"/> <text xml:space="preserve" text-anchor="middle" x="509.62" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">optional</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node6&#45;&gt;Node4 --> <!-- Node4&#45;&gt;Node6 -->
<g id="edge7_Node000006_Node000004" class="edge"> <g id="edge5_Node000004_Node000006" class="edge">
<title>Node6&#45;&gt;Node4</title> <title>Node4&#45;&gt;Node6</title>
<g id="a_edge7_Node000006_Node000004"><a xlink:title=" "> <g id="a_edge5_Node000004_Node000006"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M80.1,-54.84C88.83,-47.22 101.54,-36.12 112.05,-26.95"/> <path fill="none" stroke="#63b8ff" d="M482.07,-55.08C486.4,-48.11 492.59,-38.12 498.01,-29.37"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="114.18,-29.73 119.41,-20.52 109.58,-24.46 114.18,-29.73"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="500.97,-31.24 503.26,-20.9 495.02,-27.55 500.97,-31.24"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node6&#45;&gt;Node5 --> <!-- Node7 -->
<g id="edge8_Node000006_Node000005" class="edge"> <g id="Node000007" class="node">
<title>Node6&#45;&gt;Node5</title> <title>Node7</title>
<g id="a_edge8_Node000006_Node000005"><a xlink:title=" "> <g id="a_Node000007"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M101.81,-54.84C133.17,-46.01 181.14,-32.49 215.79,-22.73"/> <polygon fill="#e0e0e0" stroke="#999999" points="230.62,-19.25 190.62,-19.25 190.62,0 230.62,0 230.62,-19.25"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="216.4,-26.19 225.07,-20.11 214.5,-19.46 216.4,-26.19"/> <text xml:space="preserve" text-anchor="middle" x="210.62" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">string</text>
</a>
</g>
</g>
<!-- Node4&#45;&gt;Node7 -->
<g id="edge6_Node000004_Node000007" class="edge">
<title>Node4&#45;&gt;Node7</title>
<g id="a_edge6_Node000004_Node000007"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M431.2,-54.78C377.42,-44.02 289.24,-26.36 242.32,-16.97"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="243.03,-13.54 232.54,-15.01 241.66,-20.41 243.03,-13.54"/>
</a>
</g>
</g>
<!-- Node8 -->
<g id="Node000008" class="node">
<title>Node8</title>
<g id="a_Node000008"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="596.5,-19.25 552.75,-19.25 552.75,0 596.5,0 596.5,-19.25"/>
<text xml:space="preserve" text-anchor="middle" x="574.62" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">format</text>
</a>
</g>
</g>
<!-- Node4&#45;&gt;Node8 -->
<g id="edge7_Node000004_Node000008" class="edge">
<title>Node4&#45;&gt;Node8</title>
<g id="a_edge7_Node000004_Node000008"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M493.25,-54.84C508.31,-46.66 530.77,-34.46 548.28,-24.94"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="549.47,-28.27 556.59,-20.43 546.13,-22.12 549.47,-28.27"/>
</a>
</g>
</g>
<!-- Node9 -->
<g id="Node000009" class="node">
<title>Node9</title>
<g id="a_Node000009"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="403.25,-19.25 352,-19.25 352,0 403.25,0 403.25,-19.25"/>
<text xml:space="preserve" text-anchor="middle" x="377.62" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">sstream</text>
</a>
</g>
</g>
<!-- Node4&#45;&gt;Node9 -->
<g id="edge8_Node000004_Node000009" class="edge">
<title>Node4&#45;&gt;Node9</title>
<g id="a_edge8_Node000004_Node000009"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M459.83,-54.84C444.61,-46.66 421.93,-34.46 404.24,-24.94"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="406.3,-22.07 395.83,-20.42 402.98,-28.24 406.3,-22.07"/>
</a>
</g>
</g>
<!-- Node11&#45;&gt;Node3 -->
<g id="edge11_Node000011_Node000003" class="edge">
<title>Node11&#45;&gt;Node3</title>
<g id="a_edge11_Node000011_Node000003"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M229.48,-110.09C258.43,-101.33 302.58,-87.98 334.78,-78.23"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="335.62,-81.64 344.17,-75.39 333.59,-74.94 335.62,-81.64"/>
</a>
</g>
</g>
<!-- Node11&#45;&gt;Node4 -->
<g id="edge12_Node000011_Node000004" class="edge">
<title>Node11&#45;&gt;Node4</title>
<g id="a_edge12_Node000011_Node000004"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M246.93,-110.03C294.33,-100.92 367.4,-86.87 418.36,-77.08"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="418.87,-80.54 428.03,-75.22 417.55,-73.67 418.87,-80.54"/>
</a>
</g>
</g>
<!-- Node11&#45;&gt;Node7 -->
<g id="edge15_Node000011_Node000007" class="edge">
<title>Node11&#45;&gt;Node7</title>
<g id="a_edge15_Node000011_Node000007"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M153.9,-110.03C116.81,-100.44 73.56,-82.84 92.62,-55.25 111.91,-27.34 151.05,-16.87 178.96,-12.95"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="179.12,-16.46 188.64,-11.82 178.3,-9.5 179.12,-16.46"/>
</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="153.25,-74.5 102,-74.5 102,-55.25 153.25,-55.25 153.25,-74.5"/>
<text xml:space="preserve" text-anchor="middle" x="127.62" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">memory</text>
</a>
</g>
</g>
<!-- Node11&#45;&gt;Node12 -->
<g id="edge13_Node000011_Node000012" class="edge">
<title>Node11&#45;&gt;Node12</title>
<g id="a_edge13_Node000011_Node000012"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M187.41,-110.09C176.8,-102.24 161.19,-90.7 148.58,-81.37"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="151,-78.81 140.88,-75.67 146.83,-84.44 151,-78.81"/>
</a>
</g>
</g>
<!-- Node13 -->
<g id="Node000013" class="node">
<title>Node13</title>
<g id="a_Node000013"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="227.5,-74.5 171.75,-74.5 171.75,-55.25 227.5,-55.25 227.5,-74.5"/>
<text xml:space="preserve" text-anchor="middle" x="199.62" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">expected</text>
</a>
</g>
</g>
<!-- Node11&#45;&gt;Node13 -->
<g id="edge14_Node000011_Node000013" class="edge">
<title>Node11&#45;&gt;Node13</title>
<g id="a_edge14_Node000011_Node000013"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M199.62,-110.33C199.62,-103.82 199.62,-94.67 199.62,-86.37"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="203.13,-86.37 199.63,-76.37 196.13,-86.37 203.13,-86.37"/>
</a>
</g>
</g>
<!-- Node14 -->
<g id="Node000014" class="node">
<title>Node14</title>
<g id="a_Node000014"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="328,-74.5 245.25,-74.5 245.25,-55.25 328,-55.25 328,-74.5"/>
<text xml:space="preserve" text-anchor="middle" x="286.62" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">unordered_map</text>
</a>
</g>
</g>
<!-- Node11&#45;&gt;Node14 -->
<g id="edge16_Node000011_Node000014" class="edge">
<title>Node11&#45;&gt;Node14</title>
<g id="a_edge16_Node000011_Node000014"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M214.38,-110.09C227.51,-102.06 246.95,-90.16 262.36,-80.73"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="263.8,-83.95 270.5,-75.74 260.15,-77.98 263.8,-83.95"/>
</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="45.25,-74.5 0,-74.5 0,-55.25 45.25,-55.25 45.25,-74.5"/>
<text xml:space="preserve" text-anchor="middle" x="22.62" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">variant</text>
</a>
</g>
</g>
<!-- Node11&#45;&gt;Node15 -->
<g id="edge17_Node000011_Node000015" class="edge">
<title>Node11&#45;&gt;Node15</title>
<g id="a_edge17_Node000011_Node000015"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M169.6,-110.09C138.28,-100.67 89.27,-85.93 56.56,-76.09"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="57.77,-72.79 47.18,-73.26 55.75,-79.5 57.77,-72.79"/>
</a>
</g>
</g>
<!-- Node16&#45;&gt;Node3 -->
<g id="edge19_Node000016_Node000003" class="edge">
<title>Node16&#45;&gt;Node3</title>
<g id="a_edge19_Node000016_Node000003"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M472.77,-165.61C474.01,-152.39 474.44,-127.11 462.62,-110.5 451.46,-94.81 433.1,-84.26 416.12,-77.38"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="417.82,-74.27 407.22,-74.08 415.38,-80.84 417.82,-74.27"/>
</a>
</g>
</g>
<!-- Node16&#45;&gt;Node4 -->
<g id="edge20_Node000016_Node000004" class="edge">
<title>Node16&#45;&gt;Node4</title>
<g id="a_edge20_Node000016_Node000004"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M478.22,-165.36C484.09,-156.72 492.27,-143.06 495.62,-129.75 499.47,-114.48 493.86,-97.39 487.75,-84.73"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="491.01,-83.4 483.2,-76.24 484.84,-86.71 491.01,-83.4"/>
</a>
</g>
</g>
<!-- Node16&#45;&gt;Node10 -->
<g id="edge21_Node000016_Node000010" class="edge">
<title>Node16&#45;&gt;Node10</title>
<g id="a_edge21_Node000016_Node000010"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M459.07,-165.34C448.16,-157.49 432.12,-145.95 419.16,-136.62"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="421.38,-133.91 411.22,-130.91 417.29,-139.59 421.38,-133.91"/>
</a> </a>
</g> </g>
</g> </g>

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 20 KiB

View File

@@ -4,16 +4,16 @@
<!-- Generated by graphviz version 14.1.2 (20260124.0452) <!-- Generated by graphviz version 14.1.2 (20260124.0452)
--> -->
<!-- Title: src/lib/topology/curvilinear.cpp Pages: 1 --> <!-- Title: src/lib/topology/curvilinear.cpp Pages: 1 -->
<svg width="515pt" height="138pt" <svg width="615pt" height="248pt"
viewBox="0.00 0.00 515.00 138.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> viewBox="0.00 0.00 615.00 248.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 133.75)"> <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 244.25)">
<title>src/lib/topology/curvilinear.cpp</title> <title>src/lib/topology/curvilinear.cpp</title>
<!-- Node1 --> <!-- Node1 -->
<g id="Node000001" class="node"> <g id="Node000001" class="node">
<title>Node1</title> <title>Node1</title>
<g id="a_Node000001"><a xlink:title=" "> <g id="a_Node000001"><a xlink:title=" ">
<polygon fill="#999999" stroke="#666666" points="404.38,-129.75 257.12,-129.75 257.12,-110.5 404.38,-110.5 404.38,-129.75"/> <polygon fill="#999999" stroke="#666666" points="545.25,-240.25 398,-240.25 398,-221 545.25,-221 545.25,-240.25"/>
<text xml:space="preserve" text-anchor="middle" x="330.75" y="-116.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/topology/curvilinear.cpp</text> <text xml:space="preserve" text-anchor="middle" x="471.62" y="-226.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/topology/curvilinear.cpp</text>
</a> </a>
</g> </g>
</g> </g>
@@ -21,8 +21,8 @@
<g id="Node000002" class="node"> <g id="Node000002" class="node">
<title>Node2</title> <title>Node2</title>
<g id="a_Node000002"><a xlink:href="curvilinear_8h.html" target="_top" xlink:title=" "> <g id="a_Node000002"><a xlink:href="curvilinear_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="286,-74.5 151.5,-74.5 151.5,-55.25 286,-55.25 286,-74.5"/> <polygon fill="white" stroke="#666666" points="380.88,-185 246.38,-185 246.38,-165.75 380.88,-165.75 380.88,-185"/>
<text xml:space="preserve" text-anchor="middle" x="218.75" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">stroid/topology/curvilinear.h</text> <text xml:space="preserve" text-anchor="middle" x="313.62" y="-171.5" font-family="Helvetica,sans-Serif" font-size="10.00">stroid/topology/curvilinear.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -30,80 +30,44 @@
<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="M311.75,-110.09C294.29,-101.79 268.15,-89.36 248.03,-79.79"/> <path fill="none" stroke="#63b8ff" d="M444.82,-220.59C419.17,-211.95 380.24,-198.82 351.44,-189.12"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="249.74,-76.74 239.21,-75.6 246.74,-83.06 249.74,-76.74"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="352.59,-185.81 341.99,-185.94 350.35,-192.45 352.59,-185.81"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node6 --> <!-- Node16 -->
<g id="Node000006" class="node"> <g id="Node000016" class="node">
<title>Node6</title> <title>Node16</title>
<g id="a_Node000006"><a xlink:href="mapping_8h.html" target="_top" xlink:title=" "> <g id="a_Node000016"><a xlink:href="mapping_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="133.62,-74.5 5.88,-74.5 5.88,-55.25 133.62,-55.25 133.62,-74.5"/> <polygon fill="white" stroke="#666666" points="535.5,-185 407.75,-185 407.75,-165.75 535.5,-165.75 535.5,-185"/>
<text xml:space="preserve" text-anchor="middle" x="69.75" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">stroid/topology/mapping.h</text> <text xml:space="preserve" text-anchor="middle" x="471.62" y="-171.5" font-family="Helvetica,sans-Serif" font-size="10.00">stroid/topology/mapping.h</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node1&#45;&gt;Node6 --> <!-- Node1&#45;&gt;Node16 -->
<g id="edge5_Node000001_Node000006" class="edge"> <g id="edge18_Node000001_Node000016" class="edge">
<title>Node1&#45;&gt;Node6</title> <title>Node1&#45;&gt;Node16</title>
<g id="a_edge5_Node000001_Node000006"><a xlink:title=" "> <g id="a_edge18_Node000001_Node000016"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M286.18,-110.03C241.7,-100.96 173.24,-86.99 125.26,-77.2"/> <path fill="none" stroke="#63b8ff" d="M471.62,-220.83C471.62,-214.32 471.62,-205.17 471.62,-196.87"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="126.12,-73.8 115.62,-75.23 124.72,-80.66 126.12,-73.8"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="475.13,-196.87 471.63,-186.87 468.13,-196.87 475.13,-196.87"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node7 --> <!-- Node17 -->
<g id="Node000007" class="node"> <g id="Node000017" class="node">
<title>Node7</title> <title>Node17</title>
<g id="a_Node000007"><a xlink:title=" "> <g id="a_Node000017"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="357.5,-74.5 304,-74.5 304,-55.25 357.5,-55.25 357.5,-74.5"/> <polygon fill="#e0e0e0" stroke="#999999" points="607.38,-185 553.88,-185 553.88,-165.75 607.38,-165.75 607.38,-185"/>
<text xml:space="preserve" text-anchor="middle" x="330.75" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">iostream</text> <text xml:space="preserve" text-anchor="middle" x="580.62" y="-171.5" font-family="Helvetica,sans-Serif" font-size="10.00">iostream</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node1&#45;&gt;Node7 --> <!-- Node1&#45;&gt;Node17 -->
<g id="edge9_Node000001_Node000007" class="edge"> <g id="edge22_Node000001_Node000017" class="edge">
<title>Node1&#45;&gt;Node7</title> <title>Node1&#45;&gt;Node17</title>
<g id="a_edge9_Node000001_Node000007"><a xlink:title=" "> <g id="a_edge22_Node000001_Node000017"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M330.75,-110.33C330.75,-103.82 330.75,-94.67 330.75,-86.37"/> <path fill="none" stroke="#63b8ff" d="M490.12,-220.59C507.03,-212.33 532.31,-199.98 551.86,-190.43"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="334.25,-86.37 330.75,-76.37 327.25,-86.37 334.25,-86.37"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="553.24,-193.65 560.68,-186.12 550.16,-187.36 553.24,-193.65"/>
</a>
</g>
</g>
<!-- Node8 -->
<g id="Node000008" class="node">
<title>Node8</title>
<g id="a_Node000008"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="426.38,-74.5 375.12,-74.5 375.12,-55.25 426.38,-55.25 426.38,-74.5"/>
<text xml:space="preserve" text-anchor="middle" x="400.75" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">memory</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node8 -->
<g id="edge10_Node000001_Node000008" class="edge">
<title>Node1&#45;&gt;Node8</title>
<g id="a_edge10_Node000001_Node000008"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M342.62,-110.09C352.84,-102.32 367.82,-90.92 380.01,-81.65"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="382.01,-84.53 387.85,-75.69 377.77,-78.96 382.01,-84.53"/>
</a>
</g>
</g>
<!-- Node9 -->
<g id="Node000009" class="node">
<title>Node9</title>
<g id="a_Node000009"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="506.62,-74.5 444.88,-74.5 444.88,-55.25 506.62,-55.25 506.62,-74.5"/>
<text xml:space="preserve" text-anchor="middle" x="475.75" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">sys/proc.h</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node9 -->
<g id="edge11_Node000001_Node000009" class="edge">
<title>Node1&#45;&gt;Node9</title>
<g id="a_edge11_Node000001_Node000009"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M355.35,-110.09C378.68,-101.52 413.99,-88.56 440.35,-78.88"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="441.43,-82.21 449.61,-75.47 439.02,-75.64 441.43,-82.21"/>
</a> </a>
</g> </g>
</g> </g>
@@ -111,8 +75,8 @@
<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="59.5,-19.25 0,-19.25 0,0 59.5,0 59.5,-19.25"/> <polygon fill="#e0e0e0" stroke="#999999" points="405.38,-74.5 345.88,-74.5 345.88,-55.25 405.38,-55.25 405.38,-74.5"/>
<text xml:space="preserve" text-anchor="middle" x="29.75" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">mfem.hpp</text> <text xml:space="preserve" text-anchor="middle" x="375.62" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">mfem.hpp</text>
</a> </a>
</g> </g>
</g> </g>
@@ -120,8 +84,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="M186.69,-54.84C154.66,-45.82 105.32,-31.92 70.53,-22.11"/> <path fill="none" stroke="#63b8ff" d="M307.97,-165.52C300.52,-152.61 289.47,-128.23 299.62,-110.5 307.64,-96.5 321.94,-86.47 335.99,-79.5"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="71.81,-18.84 61.24,-19.5 69.91,-25.58 71.81,-18.84"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="337.02,-82.88 344.7,-75.58 334.15,-76.49 337.02,-82.88"/>
</a> </a>
</g> </g>
</g> </g>
@@ -129,8 +93,8 @@
<g id="Node000004" class="node"> <g id="Node000004" class="node">
<title>Node4</title> <title>Node4</title>
<g id="a_Node000004"><a xlink:href="config_8h.html" target="_top" xlink:title=" "> <g id="a_Node000004"><a xlink:href="config_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="184.12,-19.25 77.38,-19.25 77.38,0 184.12,0 184.12,-19.25"/> <polygon fill="white" stroke="#666666" points="530,-74.5 423.25,-74.5 423.25,-55.25 530,-55.25 530,-74.5"/>
<text xml:space="preserve" text-anchor="middle" x="130.75" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">stroid/config/config.h</text> <text xml:space="preserve" text-anchor="middle" x="476.62" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">stroid/config/config.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -138,8 +102,44 @@
<g id="edge3_Node000002_Node000004" class="edge"> <g id="edge3_Node000002_Node000004" class="edge">
<title>Node2&#45;&gt;Node4</title> <title>Node2&#45;&gt;Node4</title>
<g id="a_edge3_Node000002_Node000004"><a xlink:title=" "> <g id="a_edge3_Node000002_Node000004"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M203.82,-54.84C190.55,-46.81 170.88,-34.91 155.3,-25.48"/> <path fill="none" stroke="#63b8ff" d="M313.74,-165.65C314.39,-152.01 317.66,-125.64 332.62,-110.5 345.24,-97.74 385.68,-85.84 420.5,-77.55"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="157.41,-22.67 147.05,-20.49 153.79,-28.66 157.41,-22.67"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="421.14,-80.99 430.09,-75.32 419.56,-74.17 421.14,-80.99"/>
</a>
</g>
</g>
<!-- Node10 -->
<g id="Node000010" class="node">
<title>Node10</title>
<g id="a_Node000010"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="454,-129.75 341.25,-129.75 341.25,-110.5 454,-110.5 454,-129.75"/>
<text xml:space="preserve" text-anchor="middle" x="397.62" y="-116.25" font-family="Helvetica,sans-Serif" font-size="10.00">fourdst/config/config.h</text>
</a>
</g>
</g>
<!-- Node2&#45;&gt;Node10 -->
<g id="edge9_Node000002_Node000010" class="edge">
<title>Node2&#45;&gt;Node10</title>
<g id="a_edge9_Node000002_Node000010"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M327.87,-165.34C340.42,-157.39 358.96,-145.64 373.77,-136.25"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="375.46,-139.32 382.03,-131.01 371.71,-133.41 375.46,-139.32"/>
</a>
</g>
</g>
<!-- Node11 -->
<g id="Node000011" class="node">
<title>Node11</title>
<g id="a_Node000011"><a xlink:href="types_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="247.75,-129.75 151.5,-129.75 151.5,-110.5 247.75,-110.5 247.75,-129.75"/>
<text xml:space="preserve" text-anchor="middle" x="199.62" y="-116.25" font-family="Helvetica,sans-Serif" font-size="10.00">stroid/utils/types.h</text>
</a>
</g>
</g>
<!-- Node2&#45;&gt;Node11 -->
<g id="edge10_Node000002_Node000011" class="edge">
<title>Node2&#45;&gt;Node11</title>
<g id="a_edge10_Node000002_Node000011"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M294.29,-165.34C276.52,-157.04 249.91,-144.61 229.42,-135.04"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="230.97,-131.9 220.43,-130.84 228.01,-138.25 230.97,-131.9"/>
</a> </a>
</g> </g>
</g> </g>
@@ -147,44 +147,215 @@
<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="315.12,-19.25 202.38,-19.25 202.38,0 315.12,0 315.12,-19.25"/> <polygon fill="#e0e0e0" stroke="#999999" points="466.25,-19.25 421,-19.25 421,0 466.25,0 466.25,-19.25"/>
<text xml:space="preserve" text-anchor="middle" x="258.75" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">fourdst/config/config.h</text> <text xml:space="preserve" text-anchor="middle" x="443.62" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">cstdint</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node2&#45;&gt;Node5 --> <!-- Node4&#45;&gt;Node5 -->
<g id="edge4_Node000002_Node000005" class="edge"> <g id="edge4_Node000004_Node000005" class="edge">
<title>Node2&#45;&gt;Node5</title> <title>Node4&#45;&gt;Node5</title>
<g id="a_edge4_Node000002_Node000005"><a xlink:title=" "> <g id="a_edge4_Node000004_Node000005"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M225.36,-55.08C230.71,-47.96 238.43,-37.68 245.1,-28.8"/> <path fill="none" stroke="#63b8ff" d="M471.18,-55.08C466.85,-48.11 460.66,-38.12 455.24,-29.37"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="247.88,-30.92 251.09,-20.82 242.29,-26.71 247.88,-30.92"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="458.23,-27.55 449.99,-20.9 452.28,-31.24 458.23,-27.55"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node6&#45;&gt;Node3 --> <!-- Node6 -->
<g id="edge6_Node000006_Node000003" class="edge"> <g id="Node000006" class="node">
<title>Node6&#45;&gt;Node3</title> <title>Node6</title>
<g id="a_edge6_Node000006_Node000003"><a xlink:title=" "> <g id="a_Node000006"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M63.14,-55.08C57.79,-47.96 50.07,-37.68 43.4,-28.8"/> <polygon fill="#e0e0e0" stroke="#999999" points="534.5,-19.25 484.75,-19.25 484.75,0 534.5,0 534.5,-19.25"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="46.21,-26.71 37.41,-20.82 40.62,-30.92 46.21,-26.71"/> <text xml:space="preserve" text-anchor="middle" x="509.62" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">optional</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node6&#45;&gt;Node4 --> <!-- Node4&#45;&gt;Node6 -->
<g id="edge7_Node000006_Node000004" class="edge"> <g id="edge5_Node000004_Node000006" class="edge">
<title>Node6&#45;&gt;Node4</title> <title>Node4&#45;&gt;Node6</title>
<g id="a_edge7_Node000006_Node000004"><a xlink:title=" "> <g id="a_edge5_Node000004_Node000006"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M80.1,-54.84C88.83,-47.22 101.54,-36.12 112.05,-26.95"/> <path fill="none" stroke="#63b8ff" d="M482.07,-55.08C486.4,-48.11 492.59,-38.12 498.01,-29.37"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="114.18,-29.73 119.41,-20.52 109.58,-24.46 114.18,-29.73"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="500.97,-31.24 503.26,-20.9 495.02,-27.55 500.97,-31.24"/>
</a> </a>
</g> </g>
</g> </g>
<!-- Node6&#45;&gt;Node5 --> <!-- Node7 -->
<g id="edge8_Node000006_Node000005" class="edge"> <g id="Node000007" class="node">
<title>Node6&#45;&gt;Node5</title> <title>Node7</title>
<g id="a_edge8_Node000006_Node000005"><a xlink:title=" "> <g id="a_Node000007"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M101.81,-54.84C133.17,-46.01 181.14,-32.49 215.79,-22.73"/> <polygon fill="#e0e0e0" stroke="#999999" points="230.62,-19.25 190.62,-19.25 190.62,0 230.62,0 230.62,-19.25"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="216.4,-26.19 225.07,-20.11 214.5,-19.46 216.4,-26.19"/> <text xml:space="preserve" text-anchor="middle" x="210.62" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">string</text>
</a>
</g>
</g>
<!-- Node4&#45;&gt;Node7 -->
<g id="edge6_Node000004_Node000007" class="edge">
<title>Node4&#45;&gt;Node7</title>
<g id="a_edge6_Node000004_Node000007"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M431.2,-54.78C377.42,-44.02 289.24,-26.36 242.32,-16.97"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="243.03,-13.54 232.54,-15.01 241.66,-20.41 243.03,-13.54"/>
</a>
</g>
</g>
<!-- Node8 -->
<g id="Node000008" class="node">
<title>Node8</title>
<g id="a_Node000008"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="596.5,-19.25 552.75,-19.25 552.75,0 596.5,0 596.5,-19.25"/>
<text xml:space="preserve" text-anchor="middle" x="574.62" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">format</text>
</a>
</g>
</g>
<!-- Node4&#45;&gt;Node8 -->
<g id="edge7_Node000004_Node000008" class="edge">
<title>Node4&#45;&gt;Node8</title>
<g id="a_edge7_Node000004_Node000008"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M493.25,-54.84C508.31,-46.66 530.77,-34.46 548.28,-24.94"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="549.47,-28.27 556.59,-20.43 546.13,-22.12 549.47,-28.27"/>
</a>
</g>
</g>
<!-- Node9 -->
<g id="Node000009" class="node">
<title>Node9</title>
<g id="a_Node000009"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="403.25,-19.25 352,-19.25 352,0 403.25,0 403.25,-19.25"/>
<text xml:space="preserve" text-anchor="middle" x="377.62" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">sstream</text>
</a>
</g>
</g>
<!-- Node4&#45;&gt;Node9 -->
<g id="edge8_Node000004_Node000009" class="edge">
<title>Node4&#45;&gt;Node9</title>
<g id="a_edge8_Node000004_Node000009"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M459.83,-54.84C444.61,-46.66 421.93,-34.46 404.24,-24.94"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="406.3,-22.07 395.83,-20.42 402.98,-28.24 406.3,-22.07"/>
</a>
</g>
</g>
<!-- Node11&#45;&gt;Node3 -->
<g id="edge11_Node000011_Node000003" class="edge">
<title>Node11&#45;&gt;Node3</title>
<g id="a_edge11_Node000011_Node000003"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M229.48,-110.09C258.43,-101.33 302.58,-87.98 334.78,-78.23"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="335.62,-81.64 344.17,-75.39 333.59,-74.94 335.62,-81.64"/>
</a>
</g>
</g>
<!-- Node11&#45;&gt;Node4 -->
<g id="edge12_Node000011_Node000004" class="edge">
<title>Node11&#45;&gt;Node4</title>
<g id="a_edge12_Node000011_Node000004"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M246.93,-110.03C294.33,-100.92 367.4,-86.87 418.36,-77.08"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="418.87,-80.54 428.03,-75.22 417.55,-73.67 418.87,-80.54"/>
</a>
</g>
</g>
<!-- Node11&#45;&gt;Node7 -->
<g id="edge15_Node000011_Node000007" class="edge">
<title>Node11&#45;&gt;Node7</title>
<g id="a_edge15_Node000011_Node000007"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M153.9,-110.03C116.81,-100.44 73.56,-82.84 92.62,-55.25 111.91,-27.34 151.05,-16.87 178.96,-12.95"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="179.12,-16.46 188.64,-11.82 178.3,-9.5 179.12,-16.46"/>
</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="153.25,-74.5 102,-74.5 102,-55.25 153.25,-55.25 153.25,-74.5"/>
<text xml:space="preserve" text-anchor="middle" x="127.62" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">memory</text>
</a>
</g>
</g>
<!-- Node11&#45;&gt;Node12 -->
<g id="edge13_Node000011_Node000012" class="edge">
<title>Node11&#45;&gt;Node12</title>
<g id="a_edge13_Node000011_Node000012"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M187.41,-110.09C176.8,-102.24 161.19,-90.7 148.58,-81.37"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="151,-78.81 140.88,-75.67 146.83,-84.44 151,-78.81"/>
</a>
</g>
</g>
<!-- Node13 -->
<g id="Node000013" class="node">
<title>Node13</title>
<g id="a_Node000013"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="227.5,-74.5 171.75,-74.5 171.75,-55.25 227.5,-55.25 227.5,-74.5"/>
<text xml:space="preserve" text-anchor="middle" x="199.62" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">expected</text>
</a>
</g>
</g>
<!-- Node11&#45;&gt;Node13 -->
<g id="edge14_Node000011_Node000013" class="edge">
<title>Node11&#45;&gt;Node13</title>
<g id="a_edge14_Node000011_Node000013"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M199.62,-110.33C199.62,-103.82 199.62,-94.67 199.62,-86.37"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="203.13,-86.37 199.63,-76.37 196.13,-86.37 203.13,-86.37"/>
</a>
</g>
</g>
<!-- Node14 -->
<g id="Node000014" class="node">
<title>Node14</title>
<g id="a_Node000014"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="328,-74.5 245.25,-74.5 245.25,-55.25 328,-55.25 328,-74.5"/>
<text xml:space="preserve" text-anchor="middle" x="286.62" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">unordered_map</text>
</a>
</g>
</g>
<!-- Node11&#45;&gt;Node14 -->
<g id="edge16_Node000011_Node000014" class="edge">
<title>Node11&#45;&gt;Node14</title>
<g id="a_edge16_Node000011_Node000014"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M214.38,-110.09C227.51,-102.06 246.95,-90.16 262.36,-80.73"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="263.8,-83.95 270.5,-75.74 260.15,-77.98 263.8,-83.95"/>
</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="45.25,-74.5 0,-74.5 0,-55.25 45.25,-55.25 45.25,-74.5"/>
<text xml:space="preserve" text-anchor="middle" x="22.62" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">variant</text>
</a>
</g>
</g>
<!-- Node11&#45;&gt;Node15 -->
<g id="edge17_Node000011_Node000015" class="edge">
<title>Node11&#45;&gt;Node15</title>
<g id="a_edge17_Node000011_Node000015"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M169.6,-110.09C138.28,-100.67 89.27,-85.93 56.56,-76.09"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="57.77,-72.79 47.18,-73.26 55.75,-79.5 57.77,-72.79"/>
</a>
</g>
</g>
<!-- Node16&#45;&gt;Node3 -->
<g id="edge19_Node000016_Node000003" class="edge">
<title>Node16&#45;&gt;Node3</title>
<g id="a_edge19_Node000016_Node000003"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M472.77,-165.61C474.01,-152.39 474.44,-127.11 462.62,-110.5 451.46,-94.81 433.1,-84.26 416.12,-77.38"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="417.82,-74.27 407.22,-74.08 415.38,-80.84 417.82,-74.27"/>
</a>
</g>
</g>
<!-- Node16&#45;&gt;Node4 -->
<g id="edge20_Node000016_Node000004" class="edge">
<title>Node16&#45;&gt;Node4</title>
<g id="a_edge20_Node000016_Node000004"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M478.22,-165.36C484.09,-156.72 492.27,-143.06 495.62,-129.75 499.47,-114.48 493.86,-97.39 487.75,-84.73"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="491.01,-83.4 483.2,-76.24 484.84,-86.71 491.01,-83.4"/>
</a>
</g>
</g>
<!-- Node16&#45;&gt;Node10 -->
<g id="edge21_Node000016_Node000010" class="edge">
<title>Node16&#45;&gt;Node10</title>
<g id="a_edge21_Node000016_Node000010"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M459.07,-165.34C448.16,-157.49 432.12,-145.95 419.16,-136.62"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="421.38,-133.91 411.22,-130.91 417.29,-139.59 421.38,-133.91"/>
</a> </a>
</g> </g>
</g> </g>

Before

Width:  |  Height:  |  Size: 8.3 KiB

After

Width:  |  Height:  |  Size: 16 KiB

View File

@@ -31,7 +31,7 @@
<tr id="projectrow"> <tr id="projectrow">
<td id="projectlogo"><img alt="Logo" src="Logo.png"/></td> <td id="projectlogo"><img alt="Logo" src="Logo.png"/></td>
<td id="projectalign"> <td id="projectalign">
<div id="projectname">stroid<span id="projectnumber">&#160;v0.2.0</span> <div id="projectname">stroid<span id="projectnumber">&#160;v0.6.0</span>
</div> </div>
<div id="projectbrief">Multi-block curvilinear mesh generation</div> <div id="projectbrief">Multi-block curvilinear mesh generation</div>
</td> </td>
@@ -110,22 +110,25 @@ $(function(){initNavTree('curvilinear_8h.html',''); initResizable(true); });
<div class="textblock"><code>#include &quot;mfem.hpp&quot;</code><br /> <div class="textblock"><code>#include &quot;mfem.hpp&quot;</code><br />
<code>#include &quot;<a class="el" href="config_8h.html">stroid/config/config.h</a>&quot;</code><br /> <code>#include &quot;<a class="el" href="config_8h.html">stroid/config/config.h</a>&quot;</code><br />
<code>#include &quot;fourdst/config/config.h&quot;</code><br /> <code>#include &quot;fourdst/config/config.h&quot;</code><br />
<code>#include &quot;<a class="el" href="types_8h.html">stroid/utils/types.h</a>&quot;</code><br />
</div><div class="textblock"><div class="dynheader"> </div><div class="textblock"><div class="dynheader">
Include dependency graph for curvilinear.h:</div> Include dependency graph for curvilinear.h:</div>
<div class="dyncontent"> <div class="dyncontent">
<div class="center"><iframe scrolling="no" frameborder="0" src="curvilinear_8h__incl.svg" width="431" height="126"><p><b>This browser is not able to show SVG: try Firefox, Chrome, Safari, or Opera instead.</b></p></iframe></div> <div class="center"><div class="zoom"><iframe scrolling="no" frameborder="0" src="curvilinear_8h__incl.svg" width="100%" height="504"><p><b>This browser is not able to show SVG: try Firefox, Chrome, Safari, or Opera instead.</b></p></iframe></div></div>
</div> </div>
</div><div class="textblock"><div class="dynheader"> </div><div class="textblock"><div class="dynheader">
This graph shows which files directly or indirectly include this file:</div> This graph shows which files directly or indirectly include this file:</div>
<div class="dyncontent"> <div class="dyncontent">
<div class="center"><iframe scrolling="no" frameborder="0" src="curvilinear_8h__dep__incl.svg" width="207" height="126"><p><b>This browser is not able to show SVG: try Firefox, Chrome, Safari, or Opera instead.</b></p></iframe></div> <div class="center"><div class="zoom"><iframe scrolling="no" frameborder="0" src="curvilinear_8h__dep__incl.svg" width="100%" height="460"><p><b>This browser is not able to show SVG: try Firefox, Chrome, Safari, or Opera instead.</b></p></iframe></div></div>
</div> </div>
</div><table class="memberdecls"> </div><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="namespaces" name="namespaces"></a> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="namespaces" name="namespaces"></a>
Namespaces</h2></td></tr> Namespaces</h2></td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">namespace &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacestroid.html">stroid</a></td></tr> <tr class="memitem:"><td class="memItemLeft" align="right" valign="top">namespace &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacestroid.html">stroid</a></td></tr>
<tr class="memdesc:namespacestroid"><td class="mdescLeft">&#160;</td><td class="mdescRight">Public API surface for the stroid mesh generation library. <br /></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">namespace &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacestroid_1_1topology.html">stroid::topology</a></td></tr> <tr class="memitem:"><td class="memItemLeft" align="right" valign="top">namespace &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacestroid_1_1topology.html">stroid::topology</a></td></tr>
<tr class="memdesc:namespacestroid_1_1topology"><td class="mdescLeft">&#160;</td><td class="mdescRight">Topology construction and curvilinear mapping utilities. <br /></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="separator:"><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="func-members" name="func-members"></a> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="func-members" name="func-members"></a>
@@ -136,6 +139,9 @@ Functions</h2></td></tr>
<tr class="memitem:a836ed13e5bac63e7952c3ce4e5532e78" id="r_a836ed13e5bac63e7952c3ce4e5532e78"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacestroid_1_1topology.html#a836ed13e5bac63e7952c3ce4e5532e78">stroid::topology::ProjectMesh</a> (mfem::Mesh &amp;mesh, const fourdst::config::Config&lt; <a class="el" href="structstroid_1_1config_1_1_mesh_config.html">config::MeshConfig</a> &gt; &amp;config)</td></tr> <tr class="memitem:a836ed13e5bac63e7952c3ce4e5532e78" id="r_a836ed13e5bac63e7952c3ce4e5532e78"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacestroid_1_1topology.html#a836ed13e5bac63e7952c3ce4e5532e78">stroid::topology::ProjectMesh</a> (mfem::Mesh &amp;mesh, const fourdst::config::Config&lt; <a class="el" href="structstroid_1_1config_1_1_mesh_config.html">config::MeshConfig</a> &gt; &amp;config)</td></tr>
<tr class="memdesc:a836ed13e5bac63e7952c3ce4e5532e78"><td class="mdescLeft">&#160;</td><td class="mdescRight">Project high-order mesh nodes using the configured curvilinear mapping. <br /></td></tr> <tr class="memdesc:a836ed13e5bac63e7952c3ce4e5532e78"><td class="mdescLeft">&#160;</td><td class="mdescRight">Project high-order mesh nodes using the configured curvilinear mapping. <br /></td></tr>
<tr class="separator:a836ed13e5bac63e7952c3ce4e5532e78"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="separator:a836ed13e5bac63e7952c3ce4e5532e78"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5ab92f7fb487c4639042539bf7b86606" id="r_a5ab92f7fb487c4639042539bf7b86606"><td class="memItemLeft" align="right" valign="top">std::unique_ptr&lt; <a class="el" href="structstroid_1_1_scalar_mesh_field.html">ScalarMeshField</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacestroid_1_1topology.html#a5ab92f7fb487c4639042539bf7b86606">stroid::topology::BuildExteriorCoordinate</a> (mfem::Mesh &amp;mesh, mfem::Mesh &amp;reference_mesh, const fourdst::config::Config&lt; <a class="el" href="structstroid_1_1config_1_1_mesh_config.html">config::MeshConfig</a> &gt; &amp;config)</td></tr>
<tr class="memdesc:a5ab92f7fb487c4639042539bf7b86606"><td class="mdescLeft">&#160;</td><td class="mdescRight">Build a scalar grid function representing the compactification coordinate for a mesh. This ranges from 0-1 with 0 at the stellar surface and 1 at the compactified infinity. <br /></td></tr>
<tr class="separator:a5ab92f7fb487c4639042539bf7b86606"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table> </table>
</div><!-- contents --> </div><!-- contents -->
</div><!-- doc-content --> </div><!-- doc-content -->

View File

@@ -1,5 +1,6 @@
var curvilinear_8h = var curvilinear_8h =
[ [
[ "stroid::topology::BuildExteriorCoordinate", "namespacestroid_1_1topology.html#a5ab92f7fb487c4639042539bf7b86606", null ],
[ "stroid::topology::ProjectMesh", "namespacestroid_1_1topology.html#a836ed13e5bac63e7952c3ce4e5532e78", null ], [ "stroid::topology::ProjectMesh", "namespacestroid_1_1topology.html#a836ed13e5bac63e7952c3ce4e5532e78", null ],
[ "stroid::topology::PromoteToHighOrder", "namespacestroid_1_1topology.html#a5907aa2e639cda703d48d177abc37caf", null ] [ "stroid::topology::PromoteToHighOrder", "namespacestroid_1_1topology.html#a5907aa2e639cda703d48d177abc37caf", null ]
]; ];

View File

@@ -1,5 +1,15 @@
<map id="src/include/stroid/topology/curvilinear.h" name="src/include/stroid/topology/curvilinear.h"> <map id="src/include/stroid/topology/curvilinear.h" name="src/include/stroid/topology/curvilinear.h">
<area shape="rect" id="Node000001" title=" " alt="" coords="30,5,177,46"/> <area shape="rect" id="Node000001" title=" " alt="" coords="315,5,463,46"/>
<area shape="rect" id="Node000002" href="$curvilinear_8cpp.html" title=" " alt="" coords="5,94,202,120"/> <area shape="rect" id="Node000002" href="$stroid_8h.html" title=" " alt="" coords="25,94,145,135"/>
<area shape="poly" id="edge1_Node000001_Node000002" title=" " alt="" coords="106,62,106,93,101,93,101,62"/> <area shape="poly" id="edge1_Node000001_Node000002" title=" " alt="" coords="304,53,147,98,145,93,306,48"/>
<area shape="rect" id="Node000004" href="$mesh_8cpp.html" title=" " alt="" coords="169,102,305,127"/>
<area shape="poly" id="edge3_Node000001_Node000004" title=" " alt="" coords="344,53,259,103,257,99,339,55"/>
<area shape="rect" id="Node000005" href="$uniform_8cpp.html" title=" " alt="" coords="328,94,450,135"/>
<area shape="poly" id="edge4_Node000001_Node000005" title=" " alt="" coords="391,60,391,95,387,92,387,64"/>
<area shape="rect" id="Node000006" href="$curvilinear_8cpp.html" title=" " alt="" coords="474,102,670,127"/>
<area shape="poly" id="edge5_Node000001_Node000006" title=" " alt="" coords="444,50,549,101,543,101,443,55"/>
<area shape="rect" id="Node000007" href="$mesh__utils_8cpp.html" title=" " alt="" coords="694,94,814,135"/>
<area shape="poly" id="edge6_Node000001_Node000007" title=" " alt="" coords="478,44,683,91,697,97,691,97,682,97,478,49"/>
<area shape="rect" id="Node000003" href="$bindings_8cpp.html" title=" " alt="" coords="5,183,165,208"/>
<area shape="poly" id="edge2_Node000002_Node000003" title=" " alt="" coords="87,149,87,183,83,181,83,152"/>
</map> </map>

View File

@@ -1 +1 @@
1ef7d734bf2c7c23d22f2dc767d814d9 8ebbe784dcbe0800100b357b2af6d277

View File

@@ -1,13 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 13.0.1 (20250615.1724) <!-- Generated by graphviz version 14.1.2 (20260124.0452)
--> -->
<!-- Title: src/include/stroid/topology/curvilinear.h Pages: 1 --> <!-- Title: src/include/stroid/topology/curvilinear.h Pages: 1 -->
<svg width="155pt" height="94pt" <!--zoomable 160 -->
viewBox="0.00 0.00 155.00 94.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<svg id="main" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve"> <svg id="main" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" onload="init(evt)">
<style type="text/css"><![CDATA[ <style type="text/css"><![CDATA[
.node, .edge {opacity: 0.7;} .node, .edge {opacity: 0.7;}
@@ -15,26 +14,64 @@
.edge:hover path { stroke: red; } .edge:hover path { stroke: red; }
.edge:hover polygon { stroke: red; fill: red; } .edge:hover polygon { stroke: red; fill: red; }
]]></style> ]]></style>
<defs>
<circle id="rim" cx="0" cy="0" r="7"/>
<circle id="rim2" cx="0" cy="0" r="3.5"/>
<g id="zoomPlus">
<use xlink:href="#rim" fill="#404040"><set attributeName="fill" to="#808080" begin="zoomplus.mouseover" end="zoomplus.mouseout"/></use>
<path d="M-4,0h8M0,-4v8" fill="none" stroke="white" stroke-width="1.5" pointer-events="none"/>
</g>
<g id="zoomMin">
<use xlink:href="#rim" fill="#404040"><set attributeName="fill" to="#808080" begin="zoomminus.mouseover" end="zoomminus.mouseout"/></use>
<path d="M-4,0h8" fill="none" stroke="white" stroke-width="1.5" pointer-events="none"/>
</g>
<g id="arrowUp" transform="translate(30 24)">
<use xlink:href="#rim"/>
<path pointer-events="none" fill="none" stroke="white" stroke-width="1.5" d="M0,-3.0v7 M-2.5,-0.5L0,-3.0L2.5,-0.5"/>
</g>
<g id="arrowRight" transform="rotate(90) translate(36 -43)">
<use xlink:href="#rim"/>
<path pointer-events="none" fill="none" stroke="white" stroke-width="1.5" d="M0,-3.0v7 M-2.5,-0.5L0,-3.0L2.5,-0.5"/>
</g>
<g id="arrowDown" transform="rotate(180) translate(-30 -48)">
<use xlink:href="#rim"/>
<path pointer-events="none" fill="none" stroke="white" stroke-width="1.5" d="M0,-3.0v7 M-2.5,-0.5L0,-3.0L2.5,-0.5"/>
</g>
<g id="arrowLeft" transform="rotate(270) translate(-36 17)">
<use xlink:href="#rim"/>
<path pointer-events="none" fill="none" stroke="white" stroke-width="1.5" d="M0,-3.0v7 M-2.5,-0.5L0,-3.0L2.5,-0.5"/>
</g>
<g id="resetDef">
<use xlink:href="#rim2" fill="#404040"><set attributeName="fill" to="#808080" begin="reset.mouseover" end="reset.mouseout"/></use>
</g>
</defs>
<script type="application/ecmascript">
var viewWidth = 615;
var viewHeight = 160;
var sectionId = 'dynsection-1';
</script>
<script type="application/ecmascript" xlink:href="svg.min.js"/> <script type="application/ecmascript" xlink:href="svg.min.js"/>
<svg id="graph" class="graph"> <svg id="graph" class="graph">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 89.75)"> <g id="viewport">
<title>src/include/stroid/topology/curvilinear.h</title> <title>src/include/stroid/topology/curvilinear.h</title>
<!-- Node1 --> <!-- Node1 -->
<g id="Node000001" class="node"> <g id="Node000001" class="node">
<title>Node1</title> <title>Node1</title>
<g id="a_Node000001"><a xlink:title=" "> <g id="a_Node000001"><a xlink:title=" ">
<polygon fill="#999999" stroke="#666666" points="128.88,-85.75 18.38,-85.75 18.38,-55.25 128.88,-55.25 128.88,-85.75"/> <polygon fill="#999999" stroke="#666666" points="343,-152.25 232.5,-152.25 232.5,-121.75 343,-121.75 343,-152.25"/>
<text xml:space="preserve" text-anchor="start" x="26.38" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/stroid</text> <text xml:space="preserve" text-anchor="start" x="240.5" y="-138.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/stroid</text>
<text xml:space="preserve" text-anchor="middle" x="73.62" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">/topology/curvilinear.h</text> <text xml:space="preserve" text-anchor="middle" x="287.75" y="-127.5" font-family="Helvetica,sans-Serif" font-size="10.00">/topology/curvilinear.h</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node2 --> <!-- Node2 -->
<g id="Node000002" class="node"> <g id="Node000002" class="node">
<title>Node2</title> <title>Node2</title>
<g id="a_Node000002"><a xlink:href="curvilinear_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000002"><a xlink:href="stroid_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="147.25,-19.25 0,-19.25 0,0 147.25,0 147.25,-19.25"/> <polygon fill="white" stroke="#666666" points="104.88,-85.75 14.62,-85.75 14.62,-55.25 104.88,-55.25 104.88,-85.75"/>
<text xml:space="preserve" text-anchor="middle" x="73.62" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/topology/curvilinear.cpp</text> <text xml:space="preserve" text-anchor="start" x="22.62" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/stroid</text>
<text xml:space="preserve" text-anchor="middle" x="59.75" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">/stroid.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -42,13 +79,126 @@
<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="M73.62,-43.48C73.62,-34.98 73.62,-26.09 73.62,-19.7"/> <path fill="none" stroke="#63b8ff" d="M224.82,-118.2C186.96,-107.49 139.63,-94.1 105.37,-84.41"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="70.13,-43.43 73.63,-53.43 77.13,-43.43 70.13,-43.43"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="223.7,-121.52 234.27,-120.87 225.6,-114.78 223.7,-121.52"/>
</a>
</g>
</g>
<!-- Node4 -->
<g id="Node000004" class="node">
<title>Node4</title>
<g id="a_Node000004"><a xlink:href="mesh_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="224.5,-80.12 123,-80.12 123,-60.88 224.5,-60.88 224.5,-80.12"/>
<text xml:space="preserve" text-anchor="middle" x="173.75" y="-66.62" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/IO/mesh.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node4 -->
<g id="edge3_Node000001_Node000004" class="edge">
<title>Node1&#45;&gt;Node4</title>
<g id="a_edge3_Node000001_Node000004"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M252.04,-115.79C231.12,-103.96 205.75,-89.61 189.67,-80.51"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="250.14,-118.74 260.56,-120.62 253.58,-112.65 250.14,-118.74"/>
</a>
</g>
</g>
<!-- Node5 -->
<g id="Node000005" class="node">
<title>Node5</title>
<g id="a_Node000005"><a xlink:href="uniform_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="333.25,-85.75 242.25,-85.75 242.25,-55.25 333.25,-55.25 333.25,-85.75"/>
<text xml:space="preserve" text-anchor="start" x="250.25" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/refinement</text>
<text xml:space="preserve" text-anchor="middle" x="287.75" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">/uniform.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node5 -->
<g id="edge4_Node000001_Node000005" class="edge">
<title>Node1&#45;&gt;Node5</title>
<g id="a_edge4_Node000001_Node000005"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M287.75,-110.06C287.75,-101.89 287.75,-93.16 287.75,-86.08"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="284.25,-109.85 287.75,-119.85 291.25,-109.85 284.25,-109.85"/>
</a>
</g>
</g>
<!-- Node6 -->
<g id="Node000006" class="node">
<title>Node6</title>
<g id="a_Node000006"><a xlink:href="curvilinear_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="498.38,-80.12 351.12,-80.12 351.12,-60.88 498.38,-60.88 498.38,-80.12"/>
<text xml:space="preserve" text-anchor="middle" x="424.75" y="-66.62" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/topology/curvilinear.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node6 -->
<g id="edge5_Node000001_Node000006" class="edge">
<title>Node1&#45;&gt;Node6</title>
<g id="a_edge5_Node000001_Node000006"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M328.97,-116.6C354.41,-104.62 385.85,-89.81 405.61,-80.51"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="327.76,-113.29 320.21,-120.72 330.75,-119.63 327.76,-113.29"/>
</a>
</g>
</g>
<!-- Node7 -->
<g id="Node000007" class="node">
<title>Node7</title>
<g id="a_Node000007"><a xlink:href="mesh__utils_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="606.88,-85.75 516.62,-85.75 516.62,-55.25 606.88,-55.25 606.88,-85.75"/>
<text xml:space="preserve" text-anchor="start" x="524.62" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/utils/mesh</text>
<text xml:space="preserve" text-anchor="middle" x="561.75" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">_utils.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node7 -->
<g id="edge6_Node000001_Node000007" class="edge">
<title>Node1&#45;&gt;Node7</title>
<g id="a_edge6_Node000001_Node000007"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M354.54,-121.35C398.22,-111.63 456.48,-98.37 507.75,-85.75 510.57,-85.05 513.48,-84.33 516.4,-83.58"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="353.96,-117.9 344.96,-123.48 355.48,-124.73 353.96,-117.9"/>
</a>
</g>
</g>
<!-- Node3 -->
<g id="Node000003" class="node">
<title>Node3</title>
<g id="a_Node000003"><a xlink:href="bindings_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="119.5,-19.25 0,-19.25 0,0 119.5,0 119.5,-19.25"/>
<text xml:space="preserve" text-anchor="middle" x="59.75" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/bindings.cpp</text>
</a>
</g>
</g>
<!-- Node2&#45;&gt;Node3 -->
<g id="edge2_Node000002_Node000003" class="edge">
<title>Node2&#45;&gt;Node3</title>
<g id="a_edge2_Node000002_Node000003"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M59.75,-43.48C59.75,-34.98 59.75,-26.09 59.75,-19.7"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="56.25,-43.43 59.75,-53.43 63.25,-43.43 56.25,-43.43"/>
</a> </a>
</g> </g>
</g> </g>
</g> </g>
</svg> </svg>
<g id="navigator" transform="translate(0 0)" fill="#404254">
<rect fill="#f2f5e9" fill-opacity="0.5" stroke="#606060" stroke-width=".5" x="0" y="0" width="60" height="60"/>
<use id="zoomplus" xlink:href="#zoomPlus" x="17" y="9" onmousedown="handleZoom(evt,'in')"/>
<use id="zoomminus" xlink:href="#zoomMin" x="42" y="9" onmousedown="handleZoom(evt,'out')"/>
<use id="reset" xlink:href="#resetDef" x="30" y="36" onmousedown="handleReset()"/>
<use id="arrowup" xlink:href="#arrowUp" x="0" y="0" onmousedown="handlePan(0,-1)"/>
<use id="arrowright" xlink:href="#arrowRight" x="0" y="0" onmousedown="handlePan(1,0)"/>
<use id="arrowdown" xlink:href="#arrowDown" x="0" y="0" onmousedown="handlePan(0,1)"/>
<use id="arrowleft" xlink:href="#arrowLeft" x="0" y="0" onmousedown="handlePan(-1,0)"/>
</g>
<svg viewBox="0 0 15 15" width="100%" height="30px" preserveAspectRatio="xMaxYMin meet">
<g id="arrow_out" transform="scale(0.3 0.3)">
<a xlink:href="curvilinear_8h__dep__incl_org.svg" target="_base">
<rect id="button" ry="5" rx="5" y="6" x="6" height="38" width="38"
fill="#f2f5e9" fill-opacity="0.5" stroke="#606060" stroke-width="1.0"/>
<path id="arrow"
d="M 11.500037,31.436501 C 11.940474,20.09759 22.043105,11.32322 32.158766,21.979434 L 37.068811,17.246167 C 37.068811,17.246167 37.088388,32 37.088388,32 L 22.160133,31.978069 C 22.160133,31.978069 26.997745,27.140456 26.997745,27.140456 C 18.528582,18.264221 13.291696,25.230495 11.500037,31.436501 z"
style="fill:#404040;"/>
</a>
</g>
</svg> </svg>
<style type='text/css'> <style type='text/css'>

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 10 KiB

View File

@@ -1,29 +1,30 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 13.0.1 (20250615.1724) <!-- Generated by graphviz version 14.1.2 (20260124.0452)
--> -->
<!-- Title: src/include/stroid/topology/curvilinear.h Pages: 1 --> <!-- Title: src/include/stroid/topology/curvilinear.h Pages: 1 -->
<svg width="155pt" height="94pt" <svg width="615pt" height="160pt"
viewBox="0.00 0.00 155.00 94.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> viewBox="0.00 0.00 615.00 160.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 89.75)"> <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 156.25)">
<title>src/include/stroid/topology/curvilinear.h</title> <title>src/include/stroid/topology/curvilinear.h</title>
<!-- Node1 --> <!-- Node1 -->
<g id="Node000001" class="node"> <g id="Node000001" class="node">
<title>Node1</title> <title>Node1</title>
<g id="a_Node000001"><a xlink:title=" "> <g id="a_Node000001"><a xlink:title=" ">
<polygon fill="#999999" stroke="#666666" points="128.88,-85.75 18.38,-85.75 18.38,-55.25 128.88,-55.25 128.88,-85.75"/> <polygon fill="#999999" stroke="#666666" points="343,-152.25 232.5,-152.25 232.5,-121.75 343,-121.75 343,-152.25"/>
<text xml:space="preserve" text-anchor="start" x="26.38" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/stroid</text> <text xml:space="preserve" text-anchor="start" x="240.5" y="-138.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/stroid</text>
<text xml:space="preserve" text-anchor="middle" x="73.62" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">/topology/curvilinear.h</text> <text xml:space="preserve" text-anchor="middle" x="287.75" y="-127.5" font-family="Helvetica,sans-Serif" font-size="10.00">/topology/curvilinear.h</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node2 --> <!-- Node2 -->
<g id="Node000002" class="node"> <g id="Node000002" class="node">
<title>Node2</title> <title>Node2</title>
<g id="a_Node000002"><a xlink:href="curvilinear_8cpp.html" target="_top" xlink:title=" "> <g id="a_Node000002"><a xlink:href="stroid_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="147.25,-19.25 0,-19.25 0,0 147.25,0 147.25,-19.25"/> <polygon fill="white" stroke="#666666" points="104.88,-85.75 14.62,-85.75 14.62,-55.25 104.88,-55.25 104.88,-85.75"/>
<text xml:space="preserve" text-anchor="middle" x="73.62" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/topology/curvilinear.cpp</text> <text xml:space="preserve" text-anchor="start" x="22.62" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/stroid</text>
<text xml:space="preserve" text-anchor="middle" x="59.75" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">/stroid.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -31,8 +32,100 @@
<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="M73.62,-43.48C73.62,-34.98 73.62,-26.09 73.62,-19.7"/> <path fill="none" stroke="#63b8ff" d="M224.82,-118.2C186.96,-107.49 139.63,-94.1 105.37,-84.41"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="70.13,-43.43 73.63,-53.43 77.13,-43.43 70.13,-43.43"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="223.7,-121.52 234.27,-120.87 225.6,-114.78 223.7,-121.52"/>
</a>
</g>
</g>
<!-- Node4 -->
<g id="Node000004" class="node">
<title>Node4</title>
<g id="a_Node000004"><a xlink:href="mesh_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="224.5,-80.12 123,-80.12 123,-60.88 224.5,-60.88 224.5,-80.12"/>
<text xml:space="preserve" text-anchor="middle" x="173.75" y="-66.62" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/IO/mesh.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node4 -->
<g id="edge3_Node000001_Node000004" class="edge">
<title>Node1&#45;&gt;Node4</title>
<g id="a_edge3_Node000001_Node000004"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M252.04,-115.79C231.12,-103.96 205.75,-89.61 189.67,-80.51"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="250.14,-118.74 260.56,-120.62 253.58,-112.65 250.14,-118.74"/>
</a>
</g>
</g>
<!-- Node5 -->
<g id="Node000005" class="node">
<title>Node5</title>
<g id="a_Node000005"><a xlink:href="uniform_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="333.25,-85.75 242.25,-85.75 242.25,-55.25 333.25,-55.25 333.25,-85.75"/>
<text xml:space="preserve" text-anchor="start" x="250.25" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/refinement</text>
<text xml:space="preserve" text-anchor="middle" x="287.75" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">/uniform.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node5 -->
<g id="edge4_Node000001_Node000005" class="edge">
<title>Node1&#45;&gt;Node5</title>
<g id="a_edge4_Node000001_Node000005"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M287.75,-110.06C287.75,-101.89 287.75,-93.16 287.75,-86.08"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="284.25,-109.85 287.75,-119.85 291.25,-109.85 284.25,-109.85"/>
</a>
</g>
</g>
<!-- Node6 -->
<g id="Node000006" class="node">
<title>Node6</title>
<g id="a_Node000006"><a xlink:href="curvilinear_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="498.38,-80.12 351.12,-80.12 351.12,-60.88 498.38,-60.88 498.38,-80.12"/>
<text xml:space="preserve" text-anchor="middle" x="424.75" y="-66.62" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/topology/curvilinear.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node6 -->
<g id="edge5_Node000001_Node000006" class="edge">
<title>Node1&#45;&gt;Node6</title>
<g id="a_edge5_Node000001_Node000006"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M328.97,-116.6C354.41,-104.62 385.85,-89.81 405.61,-80.51"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="327.76,-113.29 320.21,-120.72 330.75,-119.63 327.76,-113.29"/>
</a>
</g>
</g>
<!-- Node7 -->
<g id="Node000007" class="node">
<title>Node7</title>
<g id="a_Node000007"><a xlink:href="mesh__utils_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="606.88,-85.75 516.62,-85.75 516.62,-55.25 606.88,-55.25 606.88,-85.75"/>
<text xml:space="preserve" text-anchor="start" x="524.62" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/lib/utils/mesh</text>
<text xml:space="preserve" text-anchor="middle" x="561.75" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">_utils.cpp</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node7 -->
<g id="edge6_Node000001_Node000007" class="edge">
<title>Node1&#45;&gt;Node7</title>
<g id="a_edge6_Node000001_Node000007"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M354.54,-121.35C398.22,-111.63 456.48,-98.37 507.75,-85.75 510.57,-85.05 513.48,-84.33 516.4,-83.58"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="353.96,-117.9 344.96,-123.48 355.48,-124.73 353.96,-117.9"/>
</a>
</g>
</g>
<!-- Node3 -->
<g id="Node000003" class="node">
<title>Node3</title>
<g id="a_Node000003"><a xlink:href="bindings_8cpp.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="119.5,-19.25 0,-19.25 0,0 119.5,0 119.5,-19.25"/>
<text xml:space="preserve" text-anchor="middle" x="59.75" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/python/bindings.cpp</text>
</a>
</g>
</g>
<!-- Node2&#45;&gt;Node3 -->
<g id="edge2_Node000002_Node000003" class="edge">
<title>Node2&#45;&gt;Node3</title>
<g id="a_edge2_Node000002_Node000003"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M59.75,-43.48C59.75,-34.98 59.75,-26.09 59.75,-19.7"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="56.25,-43.43 59.75,-53.43 63.25,-43.43 56.25,-43.43"/>
</a> </a>
</g> </g>
</g> </g>

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 6.4 KiB

View File

@@ -1,9 +1,32 @@
<map id="src/include/stroid/topology/curvilinear.h" name="src/include/stroid/topology/curvilinear.h"> <map id="src/include/stroid/topology/curvilinear.h" name="src/include/stroid/topology/curvilinear.h">
<area shape="rect" id="Node000001" title=" " alt="" coords="106,5,253,46"/> <area shape="rect" id="Node000001" title=" " alt="" coords="183,5,331,46"/>
<area shape="rect" id="Node000002" title=" " alt="" coords="5,94,85,120"/> <area shape="rect" id="Node000002" title=" " alt="" coords="5,168,85,193"/>
<area shape="poly" id="edge1_Node000001_Node000002" title=" " alt="" coords="147,49,80,88,78,83,145,44"/> <area shape="poly" id="edge1_Node000001_Node000002" title=" " alt="" coords="231,49,75,161,72,156,229,44"/>
<area shape="rect" id="Node000003" href="$config_8h.html" title=" " alt="" coords="108,94,251,120"/> <area shape="rect" id="Node000003" href="$config_8h.html" title=" " alt="" coords="109,168,251,193"/>
<area shape="poly" id="edge2_Node000001_Node000003" title=" " alt="" coords="182,46,182,78,177,78,177,46"/> <area shape="poly" id="edge2_Node000001_Node000003" title=" " alt="" coords="249,45,195,155,190,152,245,48"/>
<area shape="rect" id="Node000004" title=" " alt="" coords="275,94,426,120"/> <area shape="rect" id="Node000009" title=" " alt="" coords="398,94,548,120"/>
<area shape="poly" id="edge3_Node000001_Node000004" title=" " alt="" coords="223,44,312,85,309,90,221,49"/> <area shape="poly" id="edge8_Node000001_Node000009" title=" " alt="" coords="311,44,428,88,423,89,311,49"/>
<area shape="rect" id="Node000010" href="$types_8h.html" title=" " alt="" coords="245,94,373,120"/>
<area shape="poly" id="edge9_Node000001_Node000010" title=" " alt="" coords="271,44,295,81,290,80,269,49"/>
<area shape="rect" id="Node000004" title=" " alt="" coords="106,241,166,267"/>
<area shape="poly" id="edge3_Node000003_Node000004" title=" " alt="" coords="175,192,153,230,149,226,170,195"/>
<area shape="rect" id="Node000005" title=" " alt="" coords="191,241,257,267"/>
<area shape="poly" id="edge4_Node000003_Node000005" title=" " alt="" coords="188,191,211,228,206,227,186,196"/>
<area shape="rect" id="Node000006" title=" " alt="" coords="540,241,593,267"/>
<area shape="poly" id="edge5_Node000003_Node000006" title=" " alt="" coords="246,191,526,243,523,247,245,197"/>
<area shape="rect" id="Node000007" title=" " alt="" coords="281,241,340,267"/>
<area shape="poly" id="edge6_Node000003_Node000007" title=" " alt="" coords="203,191,278,233,273,234,201,196"/>
<area shape="rect" id="Node000008" title=" " alt="" coords="14,241,82,267"/>
<area shape="poly" id="edge7_Node000003_Node000008" title=" " alt="" coords="160,195,84,236,82,231,155,193"/>
<area shape="poly" id="edge10_Node000010_Node000002" title=" " alt="" coords="264,123,101,167,99,162,265,118"/>
<area shape="poly" id="edge11_Node000010_Node000003" title=" " alt="" coords="289,119,216,162,214,157,285,121"/>
<area shape="poly" id="edge14_Node000010_Node000006" title=" " alt="" coords="374,116,675,165,682,178,682,190,666,211,639,228,608,242,607,237,637,223,663,207,676,188,676,179,671,170,373,121"/>
<area shape="rect" id="Node000011" title=" " alt="" coords="275,168,343,193"/>
<area shape="poly" id="edge12_Node000010_Node000011" title=" " alt="" coords="311,118,311,153,307,151,307,122"/>
<area shape="rect" id="Node000012" title=" " alt="" coords="368,168,442,193"/>
<area shape="poly" id="edge13_Node000010_Node000012" title=" " alt="" coords="326,118,380,159,374,158,325,123"/>
<area shape="rect" id="Node000013" title=" " alt="" coords="466,168,576,193"/>
<area shape="poly" id="edge15_Node000010_Node000013" title=" " alt="" coords="345,118,473,162,468,163,345,123"/>
<area shape="rect" id="Node000014" title=" " alt="" coords="600,168,660,193"/>
<area shape="poly" id="edge16_Node000010_Node000014" title=" " alt="" coords="370,118,587,166,582,168,370,123"/>
</map> </map>

View File

@@ -1 +1 @@
bb805b01e9860bf23e5856fbeb7bbf80 a4b95d1ab074b1997c93c432539a70d7

View File

@@ -1,13 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 13.0.1 (20250615.1724) <!-- Generated by graphviz version 14.1.2 (20260124.0452)
--> -->
<!-- Title: src/include/stroid/topology/curvilinear.h Pages: 1 --> <!-- Title: src/include/stroid/topology/curvilinear.h Pages: 1 -->
<svg width="323pt" height="94pt" <!--zoomable 204 -->
viewBox="0.00 0.00 323.00 94.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<svg id="main" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve"> <svg id="main" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" onload="init(evt)">
<style type="text/css"><![CDATA[ <style type="text/css"><![CDATA[
.node, .edge {opacity: 0.7;} .node, .edge {opacity: 0.7;}
@@ -15,17 +14,54 @@
.edge:hover path { stroke: red; } .edge:hover path { stroke: red; }
.edge:hover polygon { stroke: red; fill: red; } .edge:hover polygon { stroke: red; fill: red; }
]]></style> ]]></style>
<defs>
<circle id="rim" cx="0" cy="0" r="7"/>
<circle id="rim2" cx="0" cy="0" r="3.5"/>
<g id="zoomPlus">
<use xlink:href="#rim" fill="#404040"><set attributeName="fill" to="#808080" begin="zoomplus.mouseover" end="zoomplus.mouseout"/></use>
<path d="M-4,0h8M0,-4v8" fill="none" stroke="white" stroke-width="1.5" pointer-events="none"/>
</g>
<g id="zoomMin">
<use xlink:href="#rim" fill="#404040"><set attributeName="fill" to="#808080" begin="zoomminus.mouseover" end="zoomminus.mouseout"/></use>
<path d="M-4,0h8" fill="none" stroke="white" stroke-width="1.5" pointer-events="none"/>
</g>
<g id="arrowUp" transform="translate(30 24)">
<use xlink:href="#rim"/>
<path pointer-events="none" fill="none" stroke="white" stroke-width="1.5" d="M0,-3.0v7 M-2.5,-0.5L0,-3.0L2.5,-0.5"/>
</g>
<g id="arrowRight" transform="rotate(90) translate(36 -43)">
<use xlink:href="#rim"/>
<path pointer-events="none" fill="none" stroke="white" stroke-width="1.5" d="M0,-3.0v7 M-2.5,-0.5L0,-3.0L2.5,-0.5"/>
</g>
<g id="arrowDown" transform="rotate(180) translate(-30 -48)">
<use xlink:href="#rim"/>
<path pointer-events="none" fill="none" stroke="white" stroke-width="1.5" d="M0,-3.0v7 M-2.5,-0.5L0,-3.0L2.5,-0.5"/>
</g>
<g id="arrowLeft" transform="rotate(270) translate(-36 17)">
<use xlink:href="#rim"/>
<path pointer-events="none" fill="none" stroke="white" stroke-width="1.5" d="M0,-3.0v7 M-2.5,-0.5L0,-3.0L2.5,-0.5"/>
</g>
<g id="resetDef">
<use xlink:href="#rim2" fill="#404040"><set attributeName="fill" to="#808080" begin="reset.mouseover" end="reset.mouseout"/></use>
</g>
</defs>
<script type="application/ecmascript">
var viewWidth = 514;
var viewHeight = 204;
var sectionId = 'dynsection-0';
</script>
<script type="application/ecmascript" xlink:href="svg.min.js"/> <script type="application/ecmascript" xlink:href="svg.min.js"/>
<svg id="graph" class="graph"> <svg id="graph" class="graph">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 89.75)"> <g id="viewport">
<title>src/include/stroid/topology/curvilinear.h</title> <title>src/include/stroid/topology/curvilinear.h</title>
<!-- Node1 --> <!-- Node1 -->
<g id="Node000001" class="node"> <g id="Node000001" class="node">
<title>Node1</title> <title>Node1</title>
<g id="a_Node000001"><a xlink:title=" "> <g id="a_Node000001"><a xlink:title=" ">
<polygon fill="#999999" stroke="#666666" points="186,-85.75 75.5,-85.75 75.5,-55.25 186,-55.25 186,-85.75"/> <polygon fill="#999999" stroke="#666666" points="244,-196.25 133.5,-196.25 133.5,-165.75 244,-165.75 244,-196.25"/>
<text xml:space="preserve" text-anchor="start" x="83.5" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/stroid</text> <text xml:space="preserve" text-anchor="start" x="141.5" y="-182.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/stroid</text>
<text xml:space="preserve" text-anchor="middle" x="130.75" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">/topology/curvilinear.h</text> <text xml:space="preserve" text-anchor="middle" x="188.75" y="-171.5" font-family="Helvetica,sans-Serif" font-size="10.00">/topology/curvilinear.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -33,8 +69,8 @@
<g id="Node000002" class="node"> <g id="Node000002" class="node">
<title>Node2</title> <title>Node2</title>
<g id="a_Node000002"><a xlink:title=" "> <g id="a_Node000002"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="59.5,-19.25 0,-19.25 0,0 59.5,0 59.5,-19.25"/> <polygon fill="#e0e0e0" stroke="#999999" points="59.5,-74.5 0,-74.5 0,-55.25 59.5,-55.25 59.5,-74.5"/>
<text xml:space="preserve" text-anchor="middle" x="29.75" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">mfem.hpp</text> <text xml:space="preserve" text-anchor="middle" x="29.75" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">mfem.hpp</text>
</a> </a>
</g> </g>
</g> </g>
@@ -42,8 +78,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="M105.52,-54.8C90.14,-45.83 70.55,-34.41 55.14,-25.42"/> <path fill="none" stroke="#63b8ff" d="M168.29,-165.31C138.17,-143.69 82.14,-103.48 51.37,-81.39"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="56.95,-22.43 46.55,-20.42 53.42,-28.48 56.95,-22.43"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="53.73,-78.78 43.56,-75.79 49.64,-84.46 53.73,-78.78"/>
</a> </a>
</g> </g>
</g> </g>
@@ -51,8 +87,8 @@
<g id="Node000003" class="node"> <g id="Node000003" class="node">
<title>Node3</title> <title>Node3</title>
<g id="a_Node000003"><a xlink:href="config_8h.html" target="_top" xlink:title=" "> <g id="a_Node000003"><a xlink:href="config_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="184.12,-19.25 77.38,-19.25 77.38,0 184.12,0 184.12,-19.25"/> <polygon fill="white" stroke="#666666" points="184.12,-74.5 77.38,-74.5 77.38,-55.25 184.12,-55.25 184.12,-74.5"/>
<text xml:space="preserve" text-anchor="middle" x="130.75" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">stroid/config/config.h</text> <text xml:space="preserve" text-anchor="middle" x="130.75" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">stroid/config/config.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -60,8 +96,44 @@
<g id="edge2_Node000001_Node000003" class="edge"> <g id="edge2_Node000001_Node000003" class="edge">
<title>Node1&#45;&gt;Node3</title> <title>Node1&#45;&gt;Node3</title>
<g id="a_edge2_Node000001_Node000003"><a xlink:title=" "> <g id="a_edge2_Node000001_Node000003"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M130.75,-54.95C130.75,-47.71 130.75,-38.84 130.75,-30.94"/> <path fill="none" stroke="#63b8ff" d="M181.4,-165.55C171.03,-145.12 152.05,-107.79 140.5,-85.06"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="134.25,-31.21 130.75,-21.21 127.25,-31.21 134.25,-31.21"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="143.7,-83.63 136.05,-76.3 137.46,-86.8 143.7,-83.63"/>
</a>
</g>
</g>
<!-- Node9 -->
<g id="Node000009" class="node">
<title>Node9</title>
<g id="a_Node000009"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="407.12,-129.75 294.38,-129.75 294.38,-110.5 407.12,-110.5 407.12,-129.75"/>
<text xml:space="preserve" text-anchor="middle" x="350.75" y="-116.25" font-family="Helvetica,sans-Serif" font-size="10.00">fourdst/config/config.h</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node9 -->
<g id="edge8_Node000001_Node000009" class="edge">
<title>Node1&#45;&gt;Node9</title>
<g id="a_edge8_Node000001_Node000009"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M229.21,-165.3C255.66,-155.68 289.88,-143.25 315.27,-134.02"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="316.28,-137.38 324.48,-130.67 313.89,-130.8 316.28,-137.38"/>
</a>
</g>
</g>
<!-- Node10 -->
<g id="Node000010" class="node">
<title>Node10</title>
<g id="a_Node000010"><a xlink:href="types_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="275.88,-129.75 179.62,-129.75 179.62,-110.5 275.88,-110.5 275.88,-129.75"/>
<text xml:space="preserve" text-anchor="middle" x="227.75" y="-116.25" font-family="Helvetica,sans-Serif" font-size="10.00">stroid/utils/types.h</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node10 -->
<g id="edge9_Node000001_Node000010" class="edge">
<title>Node1&#45;&gt;Node10</title>
<g id="a_edge9_Node000001_Node000010"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M198.39,-165.45C203.53,-157.69 209.91,-148.06 215.4,-139.76"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="218.3,-141.73 220.9,-131.46 212.46,-137.87 218.3,-141.73"/>
</a> </a>
</g> </g>
</g> </g>
@@ -69,22 +141,214 @@
<g id="Node000004" class="node"> <g id="Node000004" class="node">
<title>Node4</title> <title>Node4</title>
<g id="a_Node000004"><a xlink:title=" "> <g id="a_Node000004"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="315.12,-19.25 202.38,-19.25 202.38,0 315.12,0 315.12,-19.25"/> <polygon fill="#e0e0e0" stroke="#999999" points="120.38,-19.25 75.12,-19.25 75.12,0 120.38,0 120.38,-19.25"/>
<text xml:space="preserve" text-anchor="middle" x="258.75" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">fourdst/config/config.h</text> <text xml:space="preserve" text-anchor="middle" x="97.75" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">cstdint</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node1&#45;&gt;Node4 --> <!-- Node3&#45;&gt;Node4 -->
<g id="edge3_Node000001_Node000004" class="edge"> <g id="edge3_Node000003_Node000004" class="edge">
<title>Node1&#45;&gt;Node4</title> <title>Node3&#45;&gt;Node4</title>
<g id="a_edge3_Node000001_Node000004"><a xlink:title=" "> <g id="a_edge3_Node000003_Node000004"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M162.72,-54.8C182.96,-45.48 208.97,-33.52 228.81,-24.4"/> <path fill="none" stroke="#63b8ff" d="M125.3,-55.08C120.98,-48.11 114.79,-38.12 109.37,-29.37"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="230.12,-27.65 237.74,-20.29 227.2,-21.29 230.12,-27.65"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="112.36,-27.55 104.11,-20.9 106.41,-31.24 112.36,-27.55"/>
</a>
</g>
</g>
<!-- Node5 -->
<g id="Node000005" class="node">
<title>Node5</title>
<g id="a_Node000005"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="188.62,-19.25 138.88,-19.25 138.88,0 188.62,0 188.62,-19.25"/>
<text xml:space="preserve" text-anchor="middle" x="163.75" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">optional</text>
</a>
</g>
</g>
<!-- Node3&#45;&gt;Node5 -->
<g id="edge4_Node000003_Node000005" class="edge">
<title>Node3&#45;&gt;Node5</title>
<g id="a_edge4_Node000003_Node000005"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M136.2,-55.08C140.52,-48.11 146.71,-38.12 152.13,-29.37"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="155.09,-31.24 157.39,-20.9 149.14,-27.55 155.09,-31.24"/>
</a>
</g>
</g>
<!-- Node6 -->
<g id="Node000006" class="node">
<title>Node6</title>
<g id="a_Node000006"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="440.75,-19.25 400.75,-19.25 400.75,0 440.75,0 440.75,-19.25"/>
<text xml:space="preserve" text-anchor="middle" x="420.75" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">string</text>
</a>
</g>
</g>
<!-- Node3&#45;&gt;Node6 -->
<g id="edge5_Node000003_Node000006" class="edge">
<title>Node3&#45;&gt;Node6</title>
<g id="a_edge5_Node000003_Node000006"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M180.27,-54.78C240.18,-43.78 339.23,-25.59 389.46,-16.37"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="389.86,-19.86 399.06,-14.61 388.6,-12.97 389.86,-19.86"/>
</a>
</g>
</g>
<!-- Node7 -->
<g id="Node000007" class="node">
<title>Node7</title>
<g id="a_Node000007"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="250.62,-19.25 206.88,-19.25 206.88,0 250.62,0 250.62,-19.25"/>
<text xml:space="preserve" text-anchor="middle" x="228.75" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">format</text>
</a>
</g>
</g>
<!-- Node3&#45;&gt;Node7 -->
<g id="edge6_Node000003_Node000007" class="edge">
<title>Node3&#45;&gt;Node7</title>
<g id="a_edge6_Node000003_Node000007"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M147.37,-54.84C162.44,-46.66 184.89,-34.46 202.4,-24.94"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="203.6,-28.27 210.71,-20.43 200.26,-22.12 203.6,-28.27"/>
</a>
</g>
</g>
<!-- Node8 -->
<g id="Node000008" class="node">
<title>Node8</title>
<g id="a_Node000008"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="57.38,-19.25 6.12,-19.25 6.12,0 57.38,0 57.38,-19.25"/>
<text xml:space="preserve" text-anchor="middle" x="31.75" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">sstream</text>
</a>
</g>
</g>
<!-- Node3&#45;&gt;Node8 -->
<g id="edge7_Node000003_Node000008" class="edge">
<title>Node3&#45;&gt;Node8</title>
<g id="a_edge7_Node000003_Node000008"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M113.96,-54.84C98.74,-46.66 76.05,-34.46 58.37,-24.94"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="60.42,-22.07 49.96,-20.42 57.11,-28.24 60.42,-22.07"/>
</a>
</g>
</g>
<!-- Node10&#45;&gt;Node2 -->
<g id="edge10_Node000010_Node000002" class="edge">
<title>Node10&#45;&gt;Node2</title>
<g id="a_edge10_Node000010_Node000002"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M194.16,-110.09C160.07,-100.92 107.23,-86.71 70.7,-76.89"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="71.96,-73.6 61.39,-74.38 70.14,-80.36 71.96,-73.6"/>
</a>
</g>
</g>
<!-- Node10&#45;&gt;Node3 -->
<g id="edge11_Node000010_Node000003" class="edge">
<title>Node10&#45;&gt;Node3</title>
<g id="a_edge11_Node000010_Node000003"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M211.3,-110.09C196.52,-101.98 174.57,-89.93 157.32,-80.46"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="159.06,-77.43 148.61,-75.68 155.69,-83.56 159.06,-77.43"/>
</a>
</g>
</g>
<!-- Node10&#45;&gt;Node6 -->
<g id="edge14_Node000010_Node000006" class="edge">
<title>Node10&#45;&gt;Node6</title>
<g id="a_edge14_Node000010_Node000006"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M276.16,-111.61C354.1,-99.46 498.93,-76.64 500.75,-74.5 519.61,-52.31 481.54,-32.35 451.7,-20.86"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="453.22,-17.69 442.62,-17.55 450.81,-24.27 453.22,-17.69"/>
</a>
</g>
</g>
<!-- Node11 -->
<g id="Node000011" class="node">
<title>Node11</title>
<g id="a_Node000011"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="253.38,-74.5 202.12,-74.5 202.12,-55.25 253.38,-55.25 253.38,-74.5"/>
<text xml:space="preserve" text-anchor="middle" x="227.75" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">memory</text>
</a>
</g>
</g>
<!-- Node10&#45;&gt;Node11 -->
<g id="edge12_Node000010_Node000011" class="edge">
<title>Node10&#45;&gt;Node11</title>
<g id="a_edge12_Node000010_Node000011"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M227.75,-110.33C227.75,-103.82 227.75,-94.67 227.75,-86.37"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="231.25,-86.37 227.75,-76.37 224.25,-86.37 231.25,-86.37"/>
</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="327.62,-74.5 271.88,-74.5 271.88,-55.25 327.62,-55.25 327.62,-74.5"/>
<text xml:space="preserve" text-anchor="middle" x="299.75" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">expected</text>
</a>
</g>
</g>
<!-- Node10&#45;&gt;Node12 -->
<g id="edge13_Node000010_Node000012" class="edge">
<title>Node10&#45;&gt;Node12</title>
<g id="a_edge13_Node000010_Node000012"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M239.96,-110.09C250.58,-102.24 266.19,-90.7 278.79,-81.37"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="280.54,-84.44 286.5,-75.67 276.38,-78.81 280.54,-84.44"/>
</a>
</g>
</g>
<!-- Node13 -->
<g id="Node000013" class="node">
<title>Node13</title>
<g id="a_Node000013"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="428.12,-74.5 345.38,-74.5 345.38,-55.25 428.12,-55.25 428.12,-74.5"/>
<text xml:space="preserve" text-anchor="middle" x="386.75" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">unordered_map</text>
</a>
</g>
</g>
<!-- Node10&#45;&gt;Node13 -->
<g id="edge15_Node000010_Node000013" class="edge">
<title>Node10&#45;&gt;Node13</title>
<g id="a_edge15_Node000010_Node000013"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M254.72,-110.09C280.65,-101.41 320.06,-88.21 349.08,-78.49"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="349.84,-81.93 358.21,-75.43 347.62,-75.29 349.84,-81.93"/>
</a>
</g>
</g>
<!-- Node14 -->
<g id="Node000014" class="node">
<title>Node14</title>
<g id="a_Node000014"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="491.38,-74.5 446.12,-74.5 446.12,-55.25 491.38,-55.25 491.38,-74.5"/>
<text xml:space="preserve" text-anchor="middle" x="468.75" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">variant</text>
</a>
</g>
</g>
<!-- Node10&#45;&gt;Node14 -->
<g id="edge16_Node000010_Node000014" class="edge">
<title>Node10&#45;&gt;Node14</title>
<g id="a_edge16_Node000010_Node000014"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M273.57,-110.07C313.62,-101.99 373.57,-89.51 434.7,-74.89"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="435.34,-78.34 444.24,-72.59 433.7,-71.53 435.34,-78.34"/>
</a> </a>
</g> </g>
</g> </g>
</g> </g>
</svg> </svg>
<g id="navigator" transform="translate(0 0)" fill="#404254">
<rect fill="#f2f5e9" fill-opacity="0.5" stroke="#606060" stroke-width=".5" x="0" y="0" width="60" height="60"/>
<use id="zoomplus" xlink:href="#zoomPlus" x="17" y="9" onmousedown="handleZoom(evt,'in')"/>
<use id="zoomminus" xlink:href="#zoomMin" x="42" y="9" onmousedown="handleZoom(evt,'out')"/>
<use id="reset" xlink:href="#resetDef" x="30" y="36" onmousedown="handleReset()"/>
<use id="arrowup" xlink:href="#arrowUp" x="0" y="0" onmousedown="handlePan(0,-1)"/>
<use id="arrowright" xlink:href="#arrowRight" x="0" y="0" onmousedown="handlePan(1,0)"/>
<use id="arrowdown" xlink:href="#arrowDown" x="0" y="0" onmousedown="handlePan(0,1)"/>
<use id="arrowleft" xlink:href="#arrowLeft" x="0" y="0" onmousedown="handlePan(-1,0)"/>
</g>
<svg viewBox="0 0 15 15" width="100%" height="30px" preserveAspectRatio="xMaxYMin meet">
<g id="arrow_out" transform="scale(0.3 0.3)">
<a xlink:href="curvilinear_8h__incl_org.svg" target="_base">
<rect id="button" ry="5" rx="5" y="6" x="6" height="38" width="38"
fill="#f2f5e9" fill-opacity="0.5" stroke="#606060" stroke-width="1.0"/>
<path id="arrow"
d="M 11.500037,31.436501 C 11.940474,20.09759 22.043105,11.32322 32.158766,21.979434 L 37.068811,17.246167 C 37.068811,17.246167 37.088388,32 37.088388,32 L 22.160133,31.978069 C 22.160133,31.978069 26.997745,27.140456 26.997745,27.140456 C 18.528582,18.264221 13.291696,25.230495 11.500037,31.436501 z"
style="fill:#404040;"/>
</a>
</g>
</svg> </svg>
<style type='text/css'> <style type='text/css'>

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 16 KiB

View File

@@ -1,20 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 13.0.1 (20250615.1724) <!-- Generated by graphviz version 14.1.2 (20260124.0452)
--> -->
<!-- Title: src/include/stroid/topology/curvilinear.h Pages: 1 --> <!-- Title: src/include/stroid/topology/curvilinear.h Pages: 1 -->
<svg width="323pt" height="94pt" <svg width="514pt" height="204pt"
viewBox="0.00 0.00 323.00 94.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> viewBox="0.00 0.00 514.00 204.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 89.75)"> <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 200.25)">
<title>src/include/stroid/topology/curvilinear.h</title> <title>src/include/stroid/topology/curvilinear.h</title>
<!-- Node1 --> <!-- Node1 -->
<g id="Node000001" class="node"> <g id="Node000001" class="node">
<title>Node1</title> <title>Node1</title>
<g id="a_Node000001"><a xlink:title=" "> <g id="a_Node000001"><a xlink:title=" ">
<polygon fill="#999999" stroke="#666666" points="186,-85.75 75.5,-85.75 75.5,-55.25 186,-55.25 186,-85.75"/> <polygon fill="#999999" stroke="#666666" points="244,-196.25 133.5,-196.25 133.5,-165.75 244,-165.75 244,-196.25"/>
<text xml:space="preserve" text-anchor="start" x="83.5" y="-72.25" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/stroid</text> <text xml:space="preserve" text-anchor="start" x="141.5" y="-182.75" font-family="Helvetica,sans-Serif" font-size="10.00">src/include/stroid</text>
<text xml:space="preserve" text-anchor="middle" x="130.75" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">/topology/curvilinear.h</text> <text xml:space="preserve" text-anchor="middle" x="188.75" y="-171.5" font-family="Helvetica,sans-Serif" font-size="10.00">/topology/curvilinear.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -22,8 +22,8 @@
<g id="Node000002" class="node"> <g id="Node000002" class="node">
<title>Node2</title> <title>Node2</title>
<g id="a_Node000002"><a xlink:title=" "> <g id="a_Node000002"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="59.5,-19.25 0,-19.25 0,0 59.5,0 59.5,-19.25"/> <polygon fill="#e0e0e0" stroke="#999999" points="59.5,-74.5 0,-74.5 0,-55.25 59.5,-55.25 59.5,-74.5"/>
<text xml:space="preserve" text-anchor="middle" x="29.75" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">mfem.hpp</text> <text xml:space="preserve" text-anchor="middle" x="29.75" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">mfem.hpp</text>
</a> </a>
</g> </g>
</g> </g>
@@ -31,8 +31,8 @@
<g id="edge1_Node000001_Node000002" class="edge"> <g id="edge1_Node000001_Node000002" class="edge">
<title>Node1&#45;&gt;Node2</title> <title>Node1&#45;&gt;Node2</title>
<g id="a_edge1_Node000001_Node000002"><a xlink:title=" "> <g id="a_edge1_Node000001_Node000002"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M105.52,-54.8C90.14,-45.83 70.55,-34.41 55.14,-25.42"/> <path fill="none" stroke="#63b8ff" d="M168.29,-165.31C138.17,-143.69 82.14,-103.48 51.37,-81.39"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="56.95,-22.43 46.55,-20.42 53.42,-28.48 56.95,-22.43"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="53.73,-78.78 43.56,-75.79 49.64,-84.46 53.73,-78.78"/>
</a> </a>
</g> </g>
</g> </g>
@@ -40,8 +40,8 @@
<g id="Node000003" class="node"> <g id="Node000003" class="node">
<title>Node3</title> <title>Node3</title>
<g id="a_Node000003"><a xlink:href="config_8h.html" target="_top" xlink:title=" "> <g id="a_Node000003"><a xlink:href="config_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="184.12,-19.25 77.38,-19.25 77.38,0 184.12,0 184.12,-19.25"/> <polygon fill="white" stroke="#666666" points="184.12,-74.5 77.38,-74.5 77.38,-55.25 184.12,-55.25 184.12,-74.5"/>
<text xml:space="preserve" text-anchor="middle" x="130.75" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">stroid/config/config.h</text> <text xml:space="preserve" text-anchor="middle" x="130.75" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">stroid/config/config.h</text>
</a> </a>
</g> </g>
</g> </g>
@@ -49,8 +49,44 @@
<g id="edge2_Node000001_Node000003" class="edge"> <g id="edge2_Node000001_Node000003" class="edge">
<title>Node1&#45;&gt;Node3</title> <title>Node1&#45;&gt;Node3</title>
<g id="a_edge2_Node000001_Node000003"><a xlink:title=" "> <g id="a_edge2_Node000001_Node000003"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M130.75,-54.95C130.75,-47.71 130.75,-38.84 130.75,-30.94"/> <path fill="none" stroke="#63b8ff" d="M181.4,-165.55C171.03,-145.12 152.05,-107.79 140.5,-85.06"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="134.25,-31.21 130.75,-21.21 127.25,-31.21 134.25,-31.21"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="143.7,-83.63 136.05,-76.3 137.46,-86.8 143.7,-83.63"/>
</a>
</g>
</g>
<!-- Node9 -->
<g id="Node000009" class="node">
<title>Node9</title>
<g id="a_Node000009"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="407.12,-129.75 294.38,-129.75 294.38,-110.5 407.12,-110.5 407.12,-129.75"/>
<text xml:space="preserve" text-anchor="middle" x="350.75" y="-116.25" font-family="Helvetica,sans-Serif" font-size="10.00">fourdst/config/config.h</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node9 -->
<g id="edge8_Node000001_Node000009" class="edge">
<title>Node1&#45;&gt;Node9</title>
<g id="a_edge8_Node000001_Node000009"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M229.21,-165.3C255.66,-155.68 289.88,-143.25 315.27,-134.02"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="316.28,-137.38 324.48,-130.67 313.89,-130.8 316.28,-137.38"/>
</a>
</g>
</g>
<!-- Node10 -->
<g id="Node000010" class="node">
<title>Node10</title>
<g id="a_Node000010"><a xlink:href="types_8h.html" target="_top" xlink:title=" ">
<polygon fill="white" stroke="#666666" points="275.88,-129.75 179.62,-129.75 179.62,-110.5 275.88,-110.5 275.88,-129.75"/>
<text xml:space="preserve" text-anchor="middle" x="227.75" y="-116.25" font-family="Helvetica,sans-Serif" font-size="10.00">stroid/utils/types.h</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node10 -->
<g id="edge9_Node000001_Node000010" class="edge">
<title>Node1&#45;&gt;Node10</title>
<g id="a_edge9_Node000001_Node000010"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M198.39,-165.45C203.53,-157.69 209.91,-148.06 215.4,-139.76"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="218.3,-141.73 220.9,-131.46 212.46,-137.87 218.3,-141.73"/>
</a> </a>
</g> </g>
</g> </g>
@@ -58,17 +94,188 @@
<g id="Node000004" class="node"> <g id="Node000004" class="node">
<title>Node4</title> <title>Node4</title>
<g id="a_Node000004"><a xlink:title=" "> <g id="a_Node000004"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="315.12,-19.25 202.38,-19.25 202.38,0 315.12,0 315.12,-19.25"/> <polygon fill="#e0e0e0" stroke="#999999" points="120.38,-19.25 75.12,-19.25 75.12,0 120.38,0 120.38,-19.25"/>
<text xml:space="preserve" text-anchor="middle" x="258.75" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">fourdst/config/config.h</text> <text xml:space="preserve" text-anchor="middle" x="97.75" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">cstdint</text>
</a> </a>
</g> </g>
</g> </g>
<!-- Node1&#45;&gt;Node4 --> <!-- Node3&#45;&gt;Node4 -->
<g id="edge3_Node000001_Node000004" class="edge"> <g id="edge3_Node000003_Node000004" class="edge">
<title>Node1&#45;&gt;Node4</title> <title>Node3&#45;&gt;Node4</title>
<g id="a_edge3_Node000001_Node000004"><a xlink:title=" "> <g id="a_edge3_Node000003_Node000004"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M162.72,-54.8C182.96,-45.48 208.97,-33.52 228.81,-24.4"/> <path fill="none" stroke="#63b8ff" d="M125.3,-55.08C120.98,-48.11 114.79,-38.12 109.37,-29.37"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="230.12,-27.65 237.74,-20.29 227.2,-21.29 230.12,-27.65"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="112.36,-27.55 104.11,-20.9 106.41,-31.24 112.36,-27.55"/>
</a>
</g>
</g>
<!-- Node5 -->
<g id="Node000005" class="node">
<title>Node5</title>
<g id="a_Node000005"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="188.62,-19.25 138.88,-19.25 138.88,0 188.62,0 188.62,-19.25"/>
<text xml:space="preserve" text-anchor="middle" x="163.75" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">optional</text>
</a>
</g>
</g>
<!-- Node3&#45;&gt;Node5 -->
<g id="edge4_Node000003_Node000005" class="edge">
<title>Node3&#45;&gt;Node5</title>
<g id="a_edge4_Node000003_Node000005"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M136.2,-55.08C140.52,-48.11 146.71,-38.12 152.13,-29.37"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="155.09,-31.24 157.39,-20.9 149.14,-27.55 155.09,-31.24"/>
</a>
</g>
</g>
<!-- Node6 -->
<g id="Node000006" class="node">
<title>Node6</title>
<g id="a_Node000006"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="440.75,-19.25 400.75,-19.25 400.75,0 440.75,0 440.75,-19.25"/>
<text xml:space="preserve" text-anchor="middle" x="420.75" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">string</text>
</a>
</g>
</g>
<!-- Node3&#45;&gt;Node6 -->
<g id="edge5_Node000003_Node000006" class="edge">
<title>Node3&#45;&gt;Node6</title>
<g id="a_edge5_Node000003_Node000006"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M180.27,-54.78C240.18,-43.78 339.23,-25.59 389.46,-16.37"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="389.86,-19.86 399.06,-14.61 388.6,-12.97 389.86,-19.86"/>
</a>
</g>
</g>
<!-- Node7 -->
<g id="Node000007" class="node">
<title>Node7</title>
<g id="a_Node000007"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="250.62,-19.25 206.88,-19.25 206.88,0 250.62,0 250.62,-19.25"/>
<text xml:space="preserve" text-anchor="middle" x="228.75" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">format</text>
</a>
</g>
</g>
<!-- Node3&#45;&gt;Node7 -->
<g id="edge6_Node000003_Node000007" class="edge">
<title>Node3&#45;&gt;Node7</title>
<g id="a_edge6_Node000003_Node000007"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M147.37,-54.84C162.44,-46.66 184.89,-34.46 202.4,-24.94"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="203.6,-28.27 210.71,-20.43 200.26,-22.12 203.6,-28.27"/>
</a>
</g>
</g>
<!-- Node8 -->
<g id="Node000008" class="node">
<title>Node8</title>
<g id="a_Node000008"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="57.38,-19.25 6.12,-19.25 6.12,0 57.38,0 57.38,-19.25"/>
<text xml:space="preserve" text-anchor="middle" x="31.75" y="-5.75" font-family="Helvetica,sans-Serif" font-size="10.00">sstream</text>
</a>
</g>
</g>
<!-- Node3&#45;&gt;Node8 -->
<g id="edge7_Node000003_Node000008" class="edge">
<title>Node3&#45;&gt;Node8</title>
<g id="a_edge7_Node000003_Node000008"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M113.96,-54.84C98.74,-46.66 76.05,-34.46 58.37,-24.94"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="60.42,-22.07 49.96,-20.42 57.11,-28.24 60.42,-22.07"/>
</a>
</g>
</g>
<!-- Node10&#45;&gt;Node2 -->
<g id="edge10_Node000010_Node000002" class="edge">
<title>Node10&#45;&gt;Node2</title>
<g id="a_edge10_Node000010_Node000002"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M194.16,-110.09C160.07,-100.92 107.23,-86.71 70.7,-76.89"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="71.96,-73.6 61.39,-74.38 70.14,-80.36 71.96,-73.6"/>
</a>
</g>
</g>
<!-- Node10&#45;&gt;Node3 -->
<g id="edge11_Node000010_Node000003" class="edge">
<title>Node10&#45;&gt;Node3</title>
<g id="a_edge11_Node000010_Node000003"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M211.3,-110.09C196.52,-101.98 174.57,-89.93 157.32,-80.46"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="159.06,-77.43 148.61,-75.68 155.69,-83.56 159.06,-77.43"/>
</a>
</g>
</g>
<!-- Node10&#45;&gt;Node6 -->
<g id="edge14_Node000010_Node000006" class="edge">
<title>Node10&#45;&gt;Node6</title>
<g id="a_edge14_Node000010_Node000006"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M276.16,-111.61C354.1,-99.46 498.93,-76.64 500.75,-74.5 519.61,-52.31 481.54,-32.35 451.7,-20.86"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="453.22,-17.69 442.62,-17.55 450.81,-24.27 453.22,-17.69"/>
</a>
</g>
</g>
<!-- Node11 -->
<g id="Node000011" class="node">
<title>Node11</title>
<g id="a_Node000011"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="253.38,-74.5 202.12,-74.5 202.12,-55.25 253.38,-55.25 253.38,-74.5"/>
<text xml:space="preserve" text-anchor="middle" x="227.75" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">memory</text>
</a>
</g>
</g>
<!-- Node10&#45;&gt;Node11 -->
<g id="edge12_Node000010_Node000011" class="edge">
<title>Node10&#45;&gt;Node11</title>
<g id="a_edge12_Node000010_Node000011"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M227.75,-110.33C227.75,-103.82 227.75,-94.67 227.75,-86.37"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="231.25,-86.37 227.75,-76.37 224.25,-86.37 231.25,-86.37"/>
</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="327.62,-74.5 271.88,-74.5 271.88,-55.25 327.62,-55.25 327.62,-74.5"/>
<text xml:space="preserve" text-anchor="middle" x="299.75" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">expected</text>
</a>
</g>
</g>
<!-- Node10&#45;&gt;Node12 -->
<g id="edge13_Node000010_Node000012" class="edge">
<title>Node10&#45;&gt;Node12</title>
<g id="a_edge13_Node000010_Node000012"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M239.96,-110.09C250.58,-102.24 266.19,-90.7 278.79,-81.37"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="280.54,-84.44 286.5,-75.67 276.38,-78.81 280.54,-84.44"/>
</a>
</g>
</g>
<!-- Node13 -->
<g id="Node000013" class="node">
<title>Node13</title>
<g id="a_Node000013"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="428.12,-74.5 345.38,-74.5 345.38,-55.25 428.12,-55.25 428.12,-74.5"/>
<text xml:space="preserve" text-anchor="middle" x="386.75" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">unordered_map</text>
</a>
</g>
</g>
<!-- Node10&#45;&gt;Node13 -->
<g id="edge15_Node000010_Node000013" class="edge">
<title>Node10&#45;&gt;Node13</title>
<g id="a_edge15_Node000010_Node000013"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M254.72,-110.09C280.65,-101.41 320.06,-88.21 349.08,-78.49"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="349.84,-81.93 358.21,-75.43 347.62,-75.29 349.84,-81.93"/>
</a>
</g>
</g>
<!-- Node14 -->
<g id="Node000014" class="node">
<title>Node14</title>
<g id="a_Node000014"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="491.38,-74.5 446.12,-74.5 446.12,-55.25 491.38,-55.25 491.38,-74.5"/>
<text xml:space="preserve" text-anchor="middle" x="468.75" y="-61" font-family="Helvetica,sans-Serif" font-size="10.00">variant</text>
</a>
</g>
</g>
<!-- Node10&#45;&gt;Node14 -->
<g id="edge16_Node000010_Node000014" class="edge">
<title>Node10&#45;&gt;Node14</title>
<g id="a_edge16_Node000010_Node000014"><a xlink:title=" ">
<path fill="none" stroke="#63b8ff" d="M273.57,-110.07C313.62,-101.99 373.57,-89.51 434.7,-74.89"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="435.34,-78.34 444.24,-72.59 433.7,-71.53 435.34,-78.34"/>
</a> </a>
</g> </g>
</g> </g>

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View File

@@ -31,7 +31,7 @@
<tr id="projectrow"> <tr id="projectrow">
<td id="projectlogo"><img alt="Logo" src="Logo.png"/></td> <td id="projectlogo"><img alt="Logo" src="Logo.png"/></td>
<td id="projectalign"> <td id="projectalign">
<div id="projectname">stroid<span id="projectnumber">&#160;v0.2.0</span> <div id="projectname">stroid<span id="projectnumber">&#160;v0.2.1</span>
</div> </div>
<div id="projectbrief">Multi-block curvilinear mesh generation</div> <div id="projectbrief">Multi-block curvilinear mesh generation</div>
</td> </td>

View File

@@ -31,7 +31,7 @@
<tr id="projectrow"> <tr id="projectrow">
<td id="projectlogo"><img alt="Logo" src="Logo.png"/></td> <td id="projectlogo"><img alt="Logo" src="Logo.png"/></td>
<td id="projectalign"> <td id="projectalign">
<div id="projectname">stroid<span id="projectnumber">&#160;v0.2.0</span> <div id="projectname">stroid<span id="projectnumber">&#160;v0.2.1</span>
</div> </div>
<div id="projectbrief">Multi-block curvilinear mesh generation</div> <div id="projectbrief">Multi-block curvilinear mesh generation</div>
</td> </td>

View File

@@ -31,7 +31,7 @@
<tr id="projectrow"> <tr id="projectrow">
<td id="projectlogo"><img alt="Logo" src="Logo.png"/></td> <td id="projectlogo"><img alt="Logo" src="Logo.png"/></td>
<td id="projectalign"> <td id="projectalign">
<div id="projectname">stroid<span id="projectnumber">&#160;v0.2.0</span> <div id="projectname">stroid<span id="projectnumber">&#160;v0.2.1</span>
</div> </div>
<div id="projectbrief">Multi-block curvilinear mesh generation</div> <div id="projectbrief">Multi-block curvilinear mesh generation</div>
</td> </td>

View File

@@ -31,7 +31,7 @@
<tr id="projectrow"> <tr id="projectrow">
<td id="projectlogo"><img alt="Logo" src="Logo.png"/></td> <td id="projectlogo"><img alt="Logo" src="Logo.png"/></td>
<td id="projectalign"> <td id="projectalign">
<div id="projectname">stroid<span id="projectnumber">&#160;v0.2.0</span> <div id="projectname">stroid<span id="projectnumber">&#160;v0.2.1</span>
</div> </div>
<div id="projectbrief">Multi-block curvilinear mesh generation</div> <div id="projectbrief">Multi-block curvilinear mesh generation</div>
</td> </td>

View File

@@ -31,7 +31,7 @@
<tr id="projectrow"> <tr id="projectrow">
<td id="projectlogo"><img alt="Logo" src="Logo.png"/></td> <td id="projectlogo"><img alt="Logo" src="Logo.png"/></td>
<td id="projectalign"> <td id="projectalign">
<div id="projectname">stroid<span id="projectnumber">&#160;v0.2.0</span> <div id="projectname">stroid<span id="projectnumber">&#160;v0.2.1</span>
</div> </div>
<div id="projectbrief">Multi-block curvilinear mesh generation</div> <div id="projectbrief">Multi-block curvilinear mesh generation</div>
</td> </td>

View File

@@ -31,7 +31,7 @@
<tr id="projectrow"> <tr id="projectrow">
<td id="projectlogo"><img alt="Logo" src="Logo.png"/></td> <td id="projectlogo"><img alt="Logo" src="Logo.png"/></td>
<td id="projectalign"> <td id="projectalign">
<div id="projectname">stroid<span id="projectnumber">&#160;v0.2.0</span> <div id="projectname">stroid<span id="projectnumber">&#160;v0.6.0</span>
</div> </div>
<div id="projectbrief">Multi-block curvilinear mesh generation</div> <div id="projectbrief">Multi-block curvilinear mesh generation</div>
</td> </td>
@@ -107,7 +107,7 @@ $(function(){initNavTree('dir_31a6c70da1404d38d1b51e38b19548a1.html',''); initRe
<div class="dynheader"> <div class="dynheader">
Directory dependency graph for IO:</div> Directory dependency graph for IO:</div>
<div class="dyncontent"> <div class="dyncontent">
<div class="center"><iframe scrolling="no" frameborder="0" src="dir_31a6c70da1404d38d1b51e38b19548a1_dep.svg" width="91" height="106"><p><b>This browser is not able to show SVG: try Firefox, Chrome, Safari, or Opera instead.</b></p></iframe></div> <div class="center"><iframe scrolling="no" frameborder="0" src="dir_31a6c70da1404d38d1b51e38b19548a1_dep.svg" width="99" height="179"><p><b>This browser is not able to show SVG: try Firefox, Chrome, Safari, or Opera instead.</b></p></iframe></div>
</div> </div>
<table class="memberdecls"> <table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="files" name="files"></a> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="files" name="files"></a>

View File

@@ -1,4 +1,7 @@
<map id="src/include/stroid/IO" name="src/include/stroid/IO"> <map id="src/include/stroid/IO" name="src/include/stroid/IO">
<area shape="rect" id="node1" href="dir_31a6c70da1404d38d1b51e38b19548a1.html" title="IO" alt="" coords="26,52,65,78"/> <area shape="rect" id="node1" href="dir_9d5018b9ddb63a582aa4c6b91bec2f8c.html" title="utils" alt="" coords="27,126,72,152"/>
<area shape="rect" id="clust1" href="dir_3f4f28e99864f6e7d54ad0c93ce0a2a5.html" title="stroid" alt="" coords="16,16,75,89"/> <area shape="rect" id="node2" href="dir_31a6c70da1404d38d1b51e38b19548a1.html" title="IO" alt="" coords="30,52,69,78"/>
<area shape="poly" id="edge1" href="dir_000006_000020.html" alt="" coords="51,76,52,111,47,110,48,81"/>
<area shape="rect" id="edge1-headlabel" href="dir_000006_000020.html" title="1" alt="" coords="54,100,61,115"/>
<area shape="rect" id="clust1" href="dir_3f4f28e99864f6e7d54ad0c93ce0a2a5.html" title="stroid" alt="" coords="16,16,83,162"/>
</map> </map>

View File

@@ -1 +1 @@
ca552089631a787b46f4183859a8aad9 cca422376e856b7996b22c55ca903c9e

View File

@@ -1,11 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 13.0.1 (20250615.1724) <!-- Generated by graphviz version 14.1.2 (20260124.0452)
--> -->
<!-- Title: src/include/stroid/IO Pages: 1 --> <!-- Title: src/include/stroid/IO Pages: 1 -->
<svg width="68pt" height="79pt" <svg width="74pt" height="134pt"
viewBox="0.00 0.00 68.00 79.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> viewBox="0.00 0.00 74.00 134.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<svg id="main" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve"> <svg id="main" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve">
@@ -17,22 +17,44 @@
]]></style> ]]></style>
<script type="application/ecmascript" xlink:href="svg.min.js"/> <script type="application/ecmascript" xlink:href="svg.min.js"/>
<svg id="graph" class="graph"> <svg id="graph" class="graph">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 74.5)"> <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 129.75)">
<title>src/include/stroid/IO</title> <title>src/include/stroid/IO</title>
<g id="clust1" class="cluster"> <g id="clust1" class="cluster">
<title>clusterdir_3f4f28e99864f6e7d54ad0c93ce0a2a5</title> <title>clusterdir_3f4f28e99864f6e7d54ad0c93ce0a2a5</title>
<g id="a_clust1"><a xlink:href="dir_3f4f28e99864f6e7d54ad0c93ce0a2a5.html" target="_top" xlink:title="stroid"> <g id="a_clust1"><a xlink:href="dir_3f4f28e99864f6e7d54ad0c93ce0a2a5.html" target="_top" xlink:title="stroid">
<polygon fill="#edf0f7" stroke="#7f7f7f" stroke-dasharray="5,2" points="8,-8 8,-62.5 52,-62.5 52,-8 8,-8"/> <polygon fill="#edf0f7" stroke="#7f7f7f" stroke-dasharray="5,2" points="8,-8 8,-117.75 58,-117.75 58,-8 8,-8"/>
<text xml:space="preserve" text-anchor="middle" x="30" y="-49" font-family="Helvetica,sans-Serif" font-size="10.00">stroid</text> <text xml:space="preserve" text-anchor="middle" x="33" y="-104.25" font-family="Helvetica,sans-Serif" font-size="10.00">stroid</text>
</a>
</g>
</g>
<!-- dir_9d5018b9ddb63a582aa4c6b91bec2f8c -->
<g id="node1" class="node">
<title>dir_9d5018b9ddb63a582aa4c6b91bec2f8c</title>
<g id="a_node1"><a xlink:href="dir_9d5018b9ddb63a582aa4c6b91bec2f8c.html" target="_top" xlink:title="utils">
<polygon fill="#a2b4d6" stroke="#404040" points="50,-35.25 16,-35.25 16,-16 50,-16 50,-35.25"/>
<text xml:space="preserve" text-anchor="middle" x="33" y="-21.75" font-family="Helvetica,sans-Serif" font-size="10.00">utils</text>
</a> </a>
</g> </g>
</g> </g>
<!-- dir_31a6c70da1404d38d1b51e38b19548a1 --> <!-- dir_31a6c70da1404d38d1b51e38b19548a1 -->
<g id="node1" class="node"> <g id="node2" class="node">
<title>dir_31a6c70da1404d38d1b51e38b19548a1</title> <title>dir_31a6c70da1404d38d1b51e38b19548a1</title>
<g id="a_node1"><a xlink:href="dir_31a6c70da1404d38d1b51e38b19548a1.html" target="_top" xlink:title="IO"> <g id="a_node2"><a xlink:href="dir_31a6c70da1404d38d1b51e38b19548a1.html" target="_top" xlink:title="IO">
<polygon fill="#edf0f7" stroke="#404040" stroke-width="2" points="44.4,-35.25 15.6,-35.25 15.6,-16 44.4,-16 44.4,-35.25"/> <polygon fill="#edf0f7" stroke="#404040" stroke-width="2" points="47.4,-90.5 18.6,-90.5 18.6,-71.25 47.4,-71.25 47.4,-90.5"/>
<text xml:space="preserve" text-anchor="middle" x="30" y="-21.75" font-family="Helvetica,sans-Serif" font-size="10.00">IO</text> <text xml:space="preserve" text-anchor="middle" x="33" y="-77" font-family="Helvetica,sans-Serif" font-size="10.00">IO</text>
</a>
</g>
</g>
<!-- dir_31a6c70da1404d38d1b51e38b19548a1&#45;&gt;dir_9d5018b9ddb63a582aa4c6b91bec2f8c -->
<g id="edge1" class="edge">
<title>dir_31a6c70da1404d38d1b51e38b19548a1&#45;&gt;dir_9d5018b9ddb63a582aa4c6b91bec2f8c</title>
<g id="a_edge1"><a xlink:href="dir_000006_000020.html" target="_top">
<path fill="none" stroke="#63b8ff" d="M33,-71.08C33,-64.57 33,-55.42 33,-47.12"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="36.5,-47.12 33,-37.12 29.5,-47.12 36.5,-47.12"/>
</a>
</g>
<g id="a_edge1&#45;headlabel"><a xlink:href="dir_000006_000020.html" target="_top" xlink:title="1">
<text xml:space="preserve" text-anchor="middle" x="39.34" y="-45.33" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">1</text>
</a> </a>
</g> </g>
</g> </g>

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@@ -1,27 +1,49 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 13.0.1 (20250615.1724) <!-- Generated by graphviz version 14.1.2 (20260124.0452)
--> -->
<!-- Title: src/include/stroid/IO Pages: 1 --> <!-- Title: src/include/stroid/IO Pages: 1 -->
<svg width="68pt" height="79pt" <svg width="74pt" height="134pt"
viewBox="0.00 0.00 68.00 79.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> viewBox="0.00 0.00 74.00 134.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 74.5)"> <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 129.75)">
<title>src/include/stroid/IO</title> <title>src/include/stroid/IO</title>
<g id="clust1" class="cluster"> <g id="clust1" class="cluster">
<title>clusterdir_3f4f28e99864f6e7d54ad0c93ce0a2a5</title> <title>clusterdir_3f4f28e99864f6e7d54ad0c93ce0a2a5</title>
<g id="a_clust1"><a xlink:href="dir_3f4f28e99864f6e7d54ad0c93ce0a2a5.html" target="_top" xlink:title="stroid"> <g id="a_clust1"><a xlink:href="dir_3f4f28e99864f6e7d54ad0c93ce0a2a5.html" target="_top" xlink:title="stroid">
<polygon fill="#edf0f7" stroke="#7f7f7f" stroke-dasharray="5,2" points="8,-8 8,-62.5 52,-62.5 52,-8 8,-8"/> <polygon fill="#edf0f7" stroke="#7f7f7f" stroke-dasharray="5,2" points="8,-8 8,-117.75 58,-117.75 58,-8 8,-8"/>
<text xml:space="preserve" text-anchor="middle" x="30" y="-49" font-family="Helvetica,sans-Serif" font-size="10.00">stroid</text> <text xml:space="preserve" text-anchor="middle" x="33" y="-104.25" font-family="Helvetica,sans-Serif" font-size="10.00">stroid</text>
</a>
</g>
</g>
<!-- dir_9d5018b9ddb63a582aa4c6b91bec2f8c -->
<g id="node1" class="node">
<title>dir_9d5018b9ddb63a582aa4c6b91bec2f8c</title>
<g id="a_node1"><a xlink:href="dir_9d5018b9ddb63a582aa4c6b91bec2f8c.html" target="_top" xlink:title="utils">
<polygon fill="#a2b4d6" stroke="#404040" points="50,-35.25 16,-35.25 16,-16 50,-16 50,-35.25"/>
<text xml:space="preserve" text-anchor="middle" x="33" y="-21.75" font-family="Helvetica,sans-Serif" font-size="10.00">utils</text>
</a> </a>
</g> </g>
</g> </g>
<!-- dir_31a6c70da1404d38d1b51e38b19548a1 --> <!-- dir_31a6c70da1404d38d1b51e38b19548a1 -->
<g id="node1" class="node"> <g id="node2" class="node">
<title>dir_31a6c70da1404d38d1b51e38b19548a1</title> <title>dir_31a6c70da1404d38d1b51e38b19548a1</title>
<g id="a_node1"><a xlink:href="dir_31a6c70da1404d38d1b51e38b19548a1.html" target="_top" xlink:title="IO"> <g id="a_node2"><a xlink:href="dir_31a6c70da1404d38d1b51e38b19548a1.html" target="_top" xlink:title="IO">
<polygon fill="#edf0f7" stroke="#404040" stroke-width="2" points="44.4,-35.25 15.6,-35.25 15.6,-16 44.4,-16 44.4,-35.25"/> <polygon fill="#edf0f7" stroke="#404040" stroke-width="2" points="47.4,-90.5 18.6,-90.5 18.6,-71.25 47.4,-71.25 47.4,-90.5"/>
<text xml:space="preserve" text-anchor="middle" x="30" y="-21.75" font-family="Helvetica,sans-Serif" font-size="10.00">IO</text> <text xml:space="preserve" text-anchor="middle" x="33" y="-77" font-family="Helvetica,sans-Serif" font-size="10.00">IO</text>
</a>
</g>
</g>
<!-- dir_31a6c70da1404d38d1b51e38b19548a1&#45;&gt;dir_9d5018b9ddb63a582aa4c6b91bec2f8c -->
<g id="edge1" class="edge">
<title>dir_31a6c70da1404d38d1b51e38b19548a1&#45;&gt;dir_9d5018b9ddb63a582aa4c6b91bec2f8c</title>
<g id="a_edge1"><a xlink:href="dir_000006_000020.html" target="_top">
<path fill="none" stroke="#63b8ff" d="M33,-71.08C33,-64.57 33,-55.42 33,-47.12"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="36.5,-47.12 33,-37.12 29.5,-47.12 36.5,-47.12"/>
</a>
</g>
<g id="a_edge1&#45;headlabel"><a xlink:href="dir_000006_000020.html" target="_top" xlink:title="1">
<text xml:space="preserve" text-anchor="middle" x="39.34" y="-45.33" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">1</text>
</a> </a>
</g> </g>
</g> </g>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@@ -31,7 +31,7 @@
<tr id="projectrow"> <tr id="projectrow">
<td id="projectlogo"><img alt="Logo" src="Logo.png"/></td> <td id="projectlogo"><img alt="Logo" src="Logo.png"/></td>
<td id="projectalign"> <td id="projectalign">
<div id="projectname">stroid<span id="projectnumber">&#160;v0.2.0</span> <div id="projectname">stroid<span id="projectnumber">&#160;v0.6.0</span>
</div> </div>
<div id="projectbrief">Multi-block curvilinear mesh generation</div> <div id="projectbrief">Multi-block curvilinear mesh generation</div>
</td> </td>
@@ -107,19 +107,28 @@ $(function(){initNavTree('dir_3f4f28e99864f6e7d54ad0c93ce0a2a5.html',''); initRe
<div class="dynheader"> <div class="dynheader">
Directory dependency graph for stroid:</div> Directory dependency graph for stroid:</div>
<div class="dyncontent"> <div class="dyncontent">
<div class="center"><iframe scrolling="no" frameborder="0" src="dir_3f4f28e99864f6e7d54ad0c93ce0a2a5_dep.svg" width="354" height="200"><p><b>This browser is not able to show SVG: try Firefox, Chrome, Safari, or Opera instead.</b></p></iframe></div> <div class="center"><iframe scrolling="no" frameborder="0" src="dir_3f4f28e99864f6e7d54ad0c93ce0a2a5_dep.svg" width="366" height="347"><p><b>This browser is not able to show SVG: try Firefox, Chrome, Safari, or Opera instead.</b></p></iframe></div>
</div> </div>
<table class="memberdecls"> <table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="subdirs" name="subdirs"></a> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="subdirs" name="subdirs"></a>
Directories</h2></td></tr> Directories</h2></td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><span class="iconfclosed"></span>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="dir_dc36fd7496f87f6989d6d6a9445d600c.html">config</a></td></tr> <tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><span class="iconfclosed"></span>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="dir_dc36fd7496f87f6989d6d6a9445d600c.html">config</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><span class="iconfclosed"></span>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="dir_760124f38acb4ebb9f6d85a2d3ae192f.html">exceptions</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><span class="iconfclosed"></span>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="dir_31a6c70da1404d38d1b51e38b19548a1.html">IO</a></td></tr> <tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><span class="iconfclosed"></span>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="dir_31a6c70da1404d38d1b51e38b19548a1.html">IO</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><span class="iconfclosed"></span>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="dir_23ef0af4381c568078c3c1a0b52a2897.html">refinement</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><span class="iconfclosed"></span>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="dir_9da86e8abab39b749c6020360d8e4403.html">topology</a></td></tr> <tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><span class="iconfclosed"></span>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="dir_9da86e8abab39b749c6020360d8e4403.html">topology</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><span class="iconfclosed"></span>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="dir_9d5018b9ddb63a582aa4c6b91bec2f8c.html">utils</a></td></tr> <tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><span class="iconfclosed"></span>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="dir_9d5018b9ddb63a582aa4c6b91bec2f8c.html">utils</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="files" name="files"></a>
Files</h2></td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><span class="icondoc"></span>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="stroid_8h.html">stroid.h</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table> </table>
</div><!-- contents --> </div><!-- contents -->
</div><!-- doc-content --> </div><!-- doc-content -->

View File

@@ -1,7 +1,10 @@
var dir_3f4f28e99864f6e7d54ad0c93ce0a2a5 = var dir_3f4f28e99864f6e7d54ad0c93ce0a2a5 =
[ [
[ "config", "dir_dc36fd7496f87f6989d6d6a9445d600c.html", "dir_dc36fd7496f87f6989d6d6a9445d600c" ], [ "config", "dir_dc36fd7496f87f6989d6d6a9445d600c.html", "dir_dc36fd7496f87f6989d6d6a9445d600c" ],
[ "exceptions", "dir_760124f38acb4ebb9f6d85a2d3ae192f.html", "dir_760124f38acb4ebb9f6d85a2d3ae192f" ],
[ "IO", "dir_31a6c70da1404d38d1b51e38b19548a1.html", "dir_31a6c70da1404d38d1b51e38b19548a1" ], [ "IO", "dir_31a6c70da1404d38d1b51e38b19548a1.html", "dir_31a6c70da1404d38d1b51e38b19548a1" ],
[ "refinement", "dir_23ef0af4381c568078c3c1a0b52a2897.html", "dir_23ef0af4381c568078c3c1a0b52a2897" ],
[ "topology", "dir_9da86e8abab39b749c6020360d8e4403.html", "dir_9da86e8abab39b749c6020360d8e4403" ], [ "topology", "dir_9da86e8abab39b749c6020360d8e4403.html", "dir_9da86e8abab39b749c6020360d8e4403" ],
[ "utils", "dir_9d5018b9ddb63a582aa4c6b91bec2f8c.html", "dir_9d5018b9ddb63a582aa4c6b91bec2f8c" ] [ "utils", "dir_9d5018b9ddb63a582aa4c6b91bec2f8c.html", "dir_9d5018b9ddb63a582aa4c6b91bec2f8c" ],
[ "stroid.h", "stroid_8h.html", "stroid_8h" ]
]; ];

View File

@@ -1,10 +1,30 @@
<map id="src/include/stroid" name="src/include/stroid"> <map id="src/include/stroid" name="src/include/stroid">
<area shape="rect" id="node2" href="dir_dc36fd7496f87f6989d6d6a9445d600c.html" title="config" alt="" coords="184,137,240,162"/> <area shape="rect" id="node2" href="dir_dc36fd7496f87f6989d6d6a9445d600c.html" title="config" alt="" coords="158,284,215,310"/>
<area shape="rect" id="node3" href="dir_31a6c70da1404d38d1b51e38b19548a1.html" title="IO" alt="" coords="114,63,153,89"/> <area shape="poly" id="edge5" href="dir_000016_000000.html" alt="" coords="139,86,109,97,76,114,64,124,55,135,52,147,55,161,74,196,100,227,157,274,152,276,97,230,70,199,49,163,46,147,51,133,60,120,74,109,107,92,142,82"/>
<area shape="rect" id="node4" href="dir_9da86e8abab39b749c6020360d8e4403.html" title="topology" alt="" coords="177,63,247,89"/> <area shape="rect" id="edge5-headlabel" href="dir_000016_000000.html" title="8" alt="" coords="153,259,160,274"/>
<area shape="poly" id="edge1" href="dir_000009_000000.html" alt="" coords="215,89,215,121,209,121,209,89"/> <area shape="rect" id="node4" href="dir_31a6c70da1404d38d1b51e38b19548a1.html" title="IO" alt="" coords="63,137,102,162"/>
<area shape="rect" id="edge1-headlabel" href="dir_000009_000000.html" title="3" alt="" coords="217,111,224,126"/> <area shape="poly" id="edge2" href="dir_000016_000006.html" alt="" coords="152,91,110,128,106,125,155,86"/>
<area shape="rect" id="node5" href="dir_9d5018b9ddb63a582aa4c6b91bec2f8c.html" title="utils" alt="" coords="271,63,316,89"/> <area shape="rect" id="edge2-headlabel" href="dir_000016_000006.html" title="1" alt="" coords="113,123,120,138"/>
<area shape="rect" id="clust2" href="dir_3f4f28e99864f6e7d54ad0c93ce0a2a5.html" alt="" coords="27,52,327,173"/> <area shape="rect" id="node5" href="dir_23ef0af4381c568078c3c1a0b52a2897.html" title="refinement" alt="" coords="126,137,208,162"/>
<area shape="rect" id="clust1" href="dir_b0856f6b0d80ccb263b2f415c91f9e17.html" title="include" alt="" coords="16,16,337,184"/> <area shape="poly" id="edge1" href="dir_000016_000011.html" alt="" coords="168,86,169,122,164,121,166,91"/>
<area shape="rect" id="edge1-headlabel" href="dir_000016_000011.html" title="1" alt="" coords="172,111,179,126"/>
<area shape="rect" id="node6" href="dir_9da86e8abab39b749c6020360d8e4403.html" title="topology" alt="" coords="258,137,328,162"/>
<area shape="poly" id="edge4" href="dir_000016_000018.html" alt="" coords="187,86,261,128,256,130,187,91"/>
<area shape="rect" id="edge4-headlabel" href="dir_000016_000018.html" title="4" alt="" coords="257,112,264,127"/>
<area shape="rect" id="node7" href="dir_9d5018b9ddb63a582aa4c6b91bec2f8c.html" title="utils" alt="" coords="164,210,209,236"/>
<area shape="poly" id="edge3" href="dir_000016_000020.html" alt="" coords="182,86,205,107,222,136,225,152,223,169,208,199,204,196,218,168,220,153,218,138,201,111,182,91"/>
<area shape="rect" id="edge3-headlabel" href="dir_000016_000020.html" title="6" alt="" coords="211,193,218,208"/>
<area shape="rect" id="node3" href="dir_760124f38acb4ebb9f6d85a2d3ae192f.html" title="exceptions" alt="" coords="230,63,314,89"/>
<area shape="poly" id="edge6" href="dir_000006_000020.html" alt="" coords="100,160,159,200,154,202,100,166"/>
<area shape="rect" id="edge6-headlabel" href="dir_000006_000020.html" title="1" alt="" coords="155,185,162,200"/>
<area shape="poly" id="edge7" href="dir_000011_000020.html" alt="" coords="171,160,182,196,177,195,169,165"/>
<area shape="rect" id="edge7-headlabel" href="dir_000011_000020.html" title="1" alt="" coords="183,183,190,198"/>
<area shape="poly" id="edge9" href="dir_000018_000000.html" alt="" coords="287,162,207,273,203,269,282,163"/>
<area shape="rect" id="edge9-headlabel" href="dir_000018_000000.html" title="4" alt="" coords="210,266,217,281"/>
<area shape="poly" id="edge8" href="dir_000018_000020.html" alt="" coords="277,161,219,204,216,199,273,164"/>
<area shape="rect" id="edge8-headlabel" href="dir_000018_000020.html" title="1" alt="" coords="221,199,228,214"/>
<area shape="poly" id="edge10" href="dir_000020_000000.html" alt="" coords="188,234,189,269,184,267,185,238"/>
<area shape="rect" id="edge10-headlabel" href="dir_000020_000000.html" title="3" alt="" coords="192,258,199,273"/>
<area shape="rect" id="clust2" href="dir_3f4f28e99864f6e7d54ad0c93ce0a2a5.html" alt="" coords="27,52,339,320"/>
<area shape="rect" id="clust1" href="dir_b0856f6b0d80ccb263b2f415c91f9e17.html" title="include" alt="" coords="16,16,349,331"/>
</map> </map>

View File

@@ -1 +1 @@
b815693e1badcd6ad0f56a891383b798 a15c55619a3c29d262782e8125e054f8

View File

@@ -1,11 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 13.0.1 (20250615.1724) <!-- Generated by graphviz version 14.1.2 (20260124.0452)
--> -->
<!-- Title: src/include/stroid Pages: 1 --> <!-- Title: src/include/stroid Pages: 1 -->
<svg width="265pt" height="150pt" <svg width="274pt" height="260pt"
viewBox="0.00 0.00 265.00 150.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> viewBox="0.00 0.00 274.00 260.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<svg id="main" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve"> <svg id="main" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve">
@@ -17,74 +17,209 @@
]]></style> ]]></style>
<script type="application/ecmascript" xlink:href="svg.min.js"/> <script type="application/ecmascript" xlink:href="svg.min.js"/>
<svg id="graph" class="graph"> <svg id="graph" class="graph">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 145.75)"> <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 256.25)">
<title>src/include/stroid</title> <title>src/include/stroid</title>
<g id="clust1" class="cluster"> <g id="clust1" class="cluster">
<title>clusterdir_b0856f6b0d80ccb263b2f415c91f9e17</title> <title>clusterdir_b0856f6b0d80ccb263b2f415c91f9e17</title>
<g id="a_clust1"><a xlink:href="dir_b0856f6b0d80ccb263b2f415c91f9e17.html" target="_top" xlink:title="include"> <g id="a_clust1"><a xlink:href="dir_b0856f6b0d80ccb263b2f415c91f9e17.html" target="_top" xlink:title="include">
<polygon fill="#edf0f7" stroke="#7f7f7f" stroke-dasharray="5,2" points="8,-8 8,-133.75 249,-133.75 249,-8 8,-8"/> <polygon fill="#edf0f7" stroke="#7f7f7f" stroke-dasharray="5,2" points="8,-8 8,-244.25 258,-244.25 258,-8 8,-8"/>
<text xml:space="preserve" text-anchor="middle" x="128.5" y="-120.25" font-family="Helvetica,sans-Serif" font-size="10.00">include</text> <text xml:space="preserve" text-anchor="middle" x="133" y="-230.75" font-family="Helvetica,sans-Serif" font-size="10.00">include</text>
</a> </a>
</g> </g>
</g> </g>
<g id="clust2" class="cluster"> <g id="clust2" class="cluster">
<title>clusterdir_3f4f28e99864f6e7d54ad0c93ce0a2a5</title> <title>clusterdir_3f4f28e99864f6e7d54ad0c93ce0a2a5</title>
<g id="a_clust2"><a xlink:href="dir_3f4f28e99864f6e7d54ad0c93ce0a2a5.html" target="_top"> <g id="a_clust2"><a xlink:href="dir_3f4f28e99864f6e7d54ad0c93ce0a2a5.html" target="_top">
<polygon fill="#edf0f7" stroke="#404040" stroke-width="2" points="16,-16 16,-106.5 241,-106.5 241,-16 16,-16"/> <polygon fill="#edf0f7" stroke="#404040" stroke-width="2" points="16,-16 16,-217 250,-217 250,-16 16,-16"/>
</a> </a>
</g> </g>
</g> </g>
<!-- dir_3f4f28e99864f6e7d54ad0c93ce0a2a5 --> <!-- dir_3f4f28e99864f6e7d54ad0c93ce0a2a5 -->
<g id="node1" class="node"> <g id="node1" class="node">
<title>dir_3f4f28e99864f6e7d54ad0c93ce0a2a5</title> <title>dir_3f4f28e99864f6e7d54ad0c93ce0a2a5</title>
<text xml:space="preserve" text-anchor="middle" x="44" y="-85" font-family="Helvetica,sans-Serif" font-size="10.00">stroid</text> <text xml:space="preserve" text-anchor="middle" x="121" y="-195.5" font-family="Helvetica,sans-Serif" font-size="10.00">stroid</text>
</g> </g>
<!-- dir_dc36fd7496f87f6989d6d6a9445d600c --> <!-- dir_dc36fd7496f87f6989d6d6a9445d600c -->
<g id="node2" class="node"> <g id="node2" class="node">
<title>dir_dc36fd7496f87f6989d6d6a9445d600c</title> <title>dir_dc36fd7496f87f6989d6d6a9445d600c</title>
<g id="a_node2"><a xlink:href="dir_dc36fd7496f87f6989d6d6a9445d600c.html" target="_top" xlink:title="config"> <g id="a_node2"><a xlink:href="dir_dc36fd7496f87f6989d6d6a9445d600c.html" target="_top" xlink:title="config">
<polygon fill="#a2b4d6" stroke="#404040" points="176.12,-43.25 133.88,-43.25 133.88,-24 176.12,-24 176.12,-43.25"/> <polygon fill="#a2b4d6" stroke="#404040" points="157.12,-43.25 114.88,-43.25 114.88,-24 157.12,-24 157.12,-43.25"/>
<text xml:space="preserve" text-anchor="middle" x="155" y="-29.75" font-family="Helvetica,sans-Serif" font-size="10.00">config</text> <text xml:space="preserve" text-anchor="middle" x="136" y="-29.75" font-family="Helvetica,sans-Serif" font-size="10.00">config</text>
</a>
</g>
</g>
<!-- dir_3f4f28e99864f6e7d54ad0c93ce0a2a5&#45;&gt;dir_dc36fd7496f87f6989d6d6a9445d600c -->
<g id="edge5" class="edge">
<title>dir_3f4f28e99864f6e7d54ad0c93ce0a2a5&#45;&gt;dir_dc36fd7496f87f6989d6d6a9445d600c</title>
<g id="a_edge5"><a xlink:href="dir_000016_000000.html" target="_top">
<path fill="none" stroke="#63b8ff" d="M101.29,-193.55C72.01,-185.26 21.82,-166.08 35,-134.5 50.45,-97.5 87.02,-67.21 111.65,-50.03"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="113.46,-53.03 119.8,-44.54 109.55,-47.22 113.46,-53.03"/>
</a>
</g>
<g id="a_edge5&#45;headlabel"><a xlink:href="dir_000016_000000.html" target="_top" xlink:title="8">
<text xml:space="preserve" text-anchor="middle" x="113.32" y="-52.67" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">8</text>
</a> </a>
</g> </g>
</g> </g>
<!-- dir_31a6c70da1404d38d1b51e38b19548a1 --> <!-- dir_31a6c70da1404d38d1b51e38b19548a1 -->
<g id="node3" class="node"> <g id="node4" class="node">
<title>dir_31a6c70da1404d38d1b51e38b19548a1</title> <title>dir_31a6c70da1404d38d1b51e38b19548a1</title>
<g id="a_node3"><a xlink:href="dir_31a6c70da1404d38d1b51e38b19548a1.html" target="_top" xlink:title="IO"> <g id="a_node4"><a xlink:href="dir_31a6c70da1404d38d1b51e38b19548a1.html" target="_top" xlink:title="IO">
<polygon fill="#a2b4d6" stroke="#404040" points="110.4,-98.5 81.6,-98.5 81.6,-79.25 110.4,-79.25 110.4,-98.5"/> <polygon fill="#a2b4d6" stroke="#404040" points="72.4,-153.75 43.6,-153.75 43.6,-134.5 72.4,-134.5 72.4,-153.75"/>
<text xml:space="preserve" text-anchor="middle" x="96" y="-85" font-family="Helvetica,sans-Serif" font-size="10.00">IO</text> <text xml:space="preserve" text-anchor="middle" x="58" y="-140.25" font-family="Helvetica,sans-Serif" font-size="10.00">IO</text>
</a>
</g>
</g>
<!-- dir_3f4f28e99864f6e7d54ad0c93ce0a2a5&#45;&gt;dir_31a6c70da1404d38d1b51e38b19548a1 -->
<g id="edge2" class="edge">
<title>dir_3f4f28e99864f6e7d54ad0c93ce0a2a5&#45;&gt;dir_31a6c70da1404d38d1b51e38b19548a1</title>
<g id="a_edge2"><a xlink:href="dir_000016_000006.html" target="_top">
<path fill="none" stroke="#63b8ff" d="M110.88,-189.82C101.86,-182.19 88.4,-170.82 77.33,-161.46"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="79.78,-158.95 69.89,-155.17 75.26,-164.3 79.78,-158.95"/>
</a>
</g>
<g id="a_edge2&#45;headlabel"><a xlink:href="dir_000016_000006.html" target="_top" xlink:title="1">
<text xml:space="preserve" text-anchor="middle" x="83.2" y="-154.25" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">1</text>
</a>
</g>
</g>
<!-- dir_23ef0af4381c568078c3c1a0b52a2897 -->
<g id="node5" class="node">
<title>dir_23ef0af4381c568078c3c1a0b52a2897</title>
<g id="a_node5"><a xlink:href="dir_23ef0af4381c568078c3c1a0b52a2897.html" target="_top" xlink:title="refinement">
<polygon fill="#a2b4d6" stroke="#404040" points="151.88,-153.75 90.12,-153.75 90.12,-134.5 151.88,-134.5 151.88,-153.75"/>
<text xml:space="preserve" text-anchor="middle" x="121" y="-140.25" font-family="Helvetica,sans-Serif" font-size="10.00">refinement</text>
</a>
</g>
</g>
<!-- dir_3f4f28e99864f6e7d54ad0c93ce0a2a5&#45;&gt;dir_23ef0af4381c568078c3c1a0b52a2897 -->
<g id="edge1" class="edge">
<title>dir_3f4f28e99864f6e7d54ad0c93ce0a2a5&#45;&gt;dir_23ef0af4381c568078c3c1a0b52a2897</title>
<g id="a_edge1"><a xlink:href="dir_000016_000011.html" target="_top">
<path fill="none" stroke="#63b8ff" d="M121,-190.05C121,-183.45 121,-173.94 121,-165.36"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="124.5,-165.43 121,-155.43 117.5,-165.43 124.5,-165.43"/>
</a>
</g>
<g id="a_edge1&#45;headlabel"><a xlink:href="dir_000016_000011.html" target="_top" xlink:title="1">
<text xml:space="preserve" text-anchor="middle" x="127.34" y="-163.64" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">1</text>
</a> </a>
</g> </g>
</g> </g>
<!-- dir_9da86e8abab39b749c6020360d8e4403 --> <!-- dir_9da86e8abab39b749c6020360d8e4403 -->
<g id="node4" class="node"> <g id="node6" class="node">
<title>dir_9da86e8abab39b749c6020360d8e4403</title> <title>dir_9da86e8abab39b749c6020360d8e4403</title>
<g id="a_node4"><a xlink:href="dir_9da86e8abab39b749c6020360d8e4403.html" target="_top" xlink:title="topology"> <g id="a_node6"><a xlink:href="dir_9da86e8abab39b749c6020360d8e4403.html" target="_top" xlink:title="topology">
<polygon fill="#a2b4d6" stroke="#404040" points="181.38,-98.5 128.62,-98.5 128.62,-79.25 181.38,-79.25 181.38,-98.5"/> <polygon fill="#a2b4d6" stroke="#404040" points="242.38,-153.75 189.62,-153.75 189.62,-134.5 242.38,-134.5 242.38,-153.75"/>
<text xml:space="preserve" text-anchor="middle" x="155" y="-85" font-family="Helvetica,sans-Serif" font-size="10.00">topology</text> <text xml:space="preserve" text-anchor="middle" x="216" y="-140.25" font-family="Helvetica,sans-Serif" font-size="10.00">topology</text>
</a> </a>
</g> </g>
</g> </g>
<!-- dir_9da86e8abab39b749c6020360d8e4403&#45;&gt;dir_dc36fd7496f87f6989d6d6a9445d600c --> <!-- dir_3f4f28e99864f6e7d54ad0c93ce0a2a5&#45;&gt;dir_9da86e8abab39b749c6020360d8e4403 -->
<g id="edge1" class="edge"> <g id="edge4" class="edge">
<title>dir_9da86e8abab39b749c6020360d8e4403&#45;&gt;dir_dc36fd7496f87f6989d6d6a9445d600c</title> <title>dir_3f4f28e99864f6e7d54ad0c93ce0a2a5&#45;&gt;dir_9da86e8abab39b749c6020360d8e4403</title>
<g id="a_edge1"><a xlink:href="dir_000009_000000.html" target="_top"> <g id="a_edge4"><a xlink:href="dir_000016_000018.html" target="_top">
<path fill="none" stroke="#63b8ff" d="M155,-79.08C155,-72.57 155,-63.42 155,-55.12"/> <path fill="none" stroke="#63b8ff" d="M136.26,-189.82C150.68,-181.74 172.61,-169.45 189.82,-159.8"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="158.5,-55.12 155,-45.12 151.5,-55.12 158.5,-55.12"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="191.49,-162.88 198.5,-154.93 188.07,-156.77 191.49,-162.88"/>
</a> </a>
</g> </g>
<g id="a_edge1&#45;headlabel"><a xlink:href="dir_000009_000000.html" target="_top" xlink:title="3"> <g id="a_edge4&#45;headlabel"><a xlink:href="dir_000016_000018.html" target="_top" xlink:title="4">
<text xml:space="preserve" text-anchor="middle" x="161.34" y="-53.33" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">3</text> <text xml:space="preserve" text-anchor="middle" x="191.06" y="-162.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">4</text>
</a> </a>
</g> </g>
</g> </g>
<!-- dir_9d5018b9ddb63a582aa4c6b91bec2f8c --> <!-- dir_9d5018b9ddb63a582aa4c6b91bec2f8c -->
<g id="node5" class="node"> <g id="node7" class="node">
<title>dir_9d5018b9ddb63a582aa4c6b91bec2f8c</title> <title>dir_9d5018b9ddb63a582aa4c6b91bec2f8c</title>
<g id="a_node5"><a xlink:href="dir_9d5018b9ddb63a582aa4c6b91bec2f8c.html" target="_top" xlink:title="utils"> <g id="a_node7"><a xlink:href="dir_9d5018b9ddb63a582aa4c6b91bec2f8c.html" target="_top" xlink:title="utils">
<polygon fill="#a2b4d6" stroke="#404040" points="233,-98.5 199,-98.5 199,-79.25 233,-79.25 233,-98.5"/> <polygon fill="#a2b4d6" stroke="#404040" points="153,-98.5 119,-98.5 119,-79.25 153,-79.25 153,-98.5"/>
<text xml:space="preserve" text-anchor="middle" x="216" y="-85" font-family="Helvetica,sans-Serif" font-size="10.00">utils</text> <text xml:space="preserve" text-anchor="middle" x="136" y="-85" font-family="Helvetica,sans-Serif" font-size="10.00">utils</text>
</a>
</g>
</g>
<!-- dir_3f4f28e99864f6e7d54ad0c93ce0a2a5&#45;&gt;dir_9d5018b9ddb63a582aa4c6b91bec2f8c -->
<g id="edge3" class="edge">
<title>dir_3f4f28e99864f6e7d54ad0c93ce0a2a5&#45;&gt;dir_9d5018b9ddb63a582aa4c6b91bec2f8c</title>
<g id="a_edge3"><a xlink:href="dir_000016_000020.html" target="_top">
<path fill="none" stroke="#63b8ff" d="M132.26,-189.89C141.96,-181.82 155.27,-168.71 161,-153.75 166.91,-138.3 159.05,-120.82 150.62,-108.05"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="153.6,-106.2 144.88,-100.18 147.94,-110.32 153.6,-106.2"/>
</a>
</g>
<g id="a_edge3&#45;headlabel"><a xlink:href="dir_000016_000020.html" target="_top" xlink:title="6">
<text xml:space="preserve" text-anchor="middle" x="157.12" y="-102.33" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">6</text>
</a>
</g>
</g>
<!-- dir_760124f38acb4ebb9f6d85a2d3ae192f -->
<g id="node3" class="node">
<title>dir_760124f38acb4ebb9f6d85a2d3ae192f</title>
<g id="a_node3"><a xlink:href="dir_760124f38acb4ebb9f6d85a2d3ae192f.html" target="_top" xlink:title="exceptions">
<polygon fill="#a2b4d6" stroke="#404040" points="231.62,-209 168.38,-209 168.38,-189.75 231.62,-189.75 231.62,-209"/>
<text xml:space="preserve" text-anchor="middle" x="200" y="-195.5" font-family="Helvetica,sans-Serif" font-size="10.00">exceptions</text>
</a>
</g>
</g>
<!-- dir_31a6c70da1404d38d1b51e38b19548a1&#45;&gt;dir_9d5018b9ddb63a582aa4c6b91bec2f8c -->
<g id="edge6" class="edge">
<title>dir_31a6c70da1404d38d1b51e38b19548a1&#45;&gt;dir_9d5018b9ddb63a582aa4c6b91bec2f8c</title>
<g id="a_edge6"><a xlink:href="dir_000006_000020.html" target="_top">
<path fill="none" stroke="#63b8ff" d="M71.23,-134.09C82.77,-126.21 99.77,-114.61 113.45,-105.27"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="115.17,-108.33 121.45,-99.81 111.22,-102.55 115.17,-108.33"/>
</a>
</g>
<g id="a_edge6&#45;headlabel"><a xlink:href="dir_000006_000020.html" target="_top" xlink:title="1">
<text xml:space="preserve" text-anchor="middle" x="115.05" y="-107.98" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">1</text>
</a>
</g>
</g>
<!-- dir_23ef0af4381c568078c3c1a0b52a2897&#45;&gt;dir_9d5018b9ddb63a582aa4c6b91bec2f8c -->
<g id="edge7" class="edge">
<title>dir_23ef0af4381c568078c3c1a0b52a2897&#45;&gt;dir_9d5018b9ddb63a582aa4c6b91bec2f8c</title>
<g id="a_edge7"><a xlink:href="dir_000011_000020.html" target="_top">
<path fill="none" stroke="#63b8ff" d="M123.48,-134.33C125.35,-127.67 128.01,-118.24 130.39,-109.78"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="133.72,-110.89 133.06,-100.32 126.98,-108.99 133.72,-110.89"/>
</a>
</g>
<g id="a_edge7&#45;headlabel"><a xlink:href="dir_000011_000020.html" target="_top" xlink:title="1">
<text xml:space="preserve" text-anchor="middle" x="135.89" y="-109.79" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">1</text>
</a>
</g>
</g>
<!-- dir_9da86e8abab39b749c6020360d8e4403&#45;&gt;dir_dc36fd7496f87f6989d6d6a9445d600c -->
<g id="edge9" class="edge">
<title>dir_9da86e8abab39b749c6020360d8e4403&#45;&gt;dir_dc36fd7496f87f6989d6d6a9445d600c</title>
<g id="a_edge9"><a xlink:href="dir_000018_000000.html" target="_top">
<path fill="none" stroke="#63b8ff" d="M209.45,-134.25C196.39,-116.52 166.83,-76.44 149.46,-52.88"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="152.29,-50.82 143.54,-44.84 146.65,-54.97 152.29,-50.82"/>
</a>
</g>
<g id="a_edge9&#45;headlabel"><a xlink:href="dir_000018_000000.html" target="_top" xlink:title="4">
<text xml:space="preserve" text-anchor="middle" x="155.81" y="-46.93" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">4</text>
</a>
</g>
</g>
<!-- dir_9da86e8abab39b749c6020360d8e4403&#45;&gt;dir_9d5018b9ddb63a582aa4c6b91bec2f8c -->
<g id="edge8" class="edge">
<title>dir_9da86e8abab39b749c6020360d8e4403&#45;&gt;dir_9d5018b9ddb63a582aa4c6b91bec2f8c</title>
<g id="a_edge8"><a xlink:href="dir_000018_000020.html" target="_top">
<path fill="none" stroke="#63b8ff" d="M202.43,-134.09C190.59,-126.21 173.16,-114.61 159.13,-105.27"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="161.16,-102.42 150.9,-99.79 157.28,-108.25 161.16,-102.42"/>
</a>
</g>
<g id="a_edge8&#45;headlabel"><a xlink:href="dir_000018_000020.html" target="_top" xlink:title="1">
<text xml:space="preserve" text-anchor="middle" x="164.47" y="-97.33" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">1</text>
</a>
</g>
</g>
<!-- dir_9d5018b9ddb63a582aa4c6b91bec2f8c&#45;&gt;dir_dc36fd7496f87f6989d6d6a9445d600c -->
<g id="edge10" class="edge">
<title>dir_9d5018b9ddb63a582aa4c6b91bec2f8c&#45;&gt;dir_dc36fd7496f87f6989d6d6a9445d600c</title>
<g id="a_edge10"><a xlink:href="dir_000020_000000.html" target="_top">
<path fill="none" stroke="#63b8ff" d="M136,-79.08C136,-72.57 136,-63.42 136,-55.12"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="139.5,-55.12 136,-45.12 132.5,-55.12 139.5,-55.12"/>
</a>
</g>
<g id="a_edge10&#45;headlabel"><a xlink:href="dir_000020_000000.html" target="_top" xlink:title="3">
<text xml:space="preserve" text-anchor="middle" x="142.34" y="-53.33" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">3</text>
</a> </a>
</g> </g>
</g> </g>

Before

Width:  |  Height:  |  Size: 4.9 KiB

After

Width:  |  Height:  |  Size: 13 KiB

View File

@@ -1,79 +1,214 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 13.0.1 (20250615.1724) <!-- Generated by graphviz version 14.1.2 (20260124.0452)
--> -->
<!-- Title: src/include/stroid Pages: 1 --> <!-- Title: src/include/stroid Pages: 1 -->
<svg width="265pt" height="150pt" <svg width="274pt" height="260pt"
viewBox="0.00 0.00 265.00 150.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> viewBox="0.00 0.00 274.00 260.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 145.75)"> <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 256.25)">
<title>src/include/stroid</title> <title>src/include/stroid</title>
<g id="clust1" class="cluster"> <g id="clust1" class="cluster">
<title>clusterdir_b0856f6b0d80ccb263b2f415c91f9e17</title> <title>clusterdir_b0856f6b0d80ccb263b2f415c91f9e17</title>
<g id="a_clust1"><a xlink:href="dir_b0856f6b0d80ccb263b2f415c91f9e17.html" target="_top" xlink:title="include"> <g id="a_clust1"><a xlink:href="dir_b0856f6b0d80ccb263b2f415c91f9e17.html" target="_top" xlink:title="include">
<polygon fill="#edf0f7" stroke="#7f7f7f" stroke-dasharray="5,2" points="8,-8 8,-133.75 249,-133.75 249,-8 8,-8"/> <polygon fill="#edf0f7" stroke="#7f7f7f" stroke-dasharray="5,2" points="8,-8 8,-244.25 258,-244.25 258,-8 8,-8"/>
<text xml:space="preserve" text-anchor="middle" x="128.5" y="-120.25" font-family="Helvetica,sans-Serif" font-size="10.00">include</text> <text xml:space="preserve" text-anchor="middle" x="133" y="-230.75" font-family="Helvetica,sans-Serif" font-size="10.00">include</text>
</a> </a>
</g> </g>
</g> </g>
<g id="clust2" class="cluster"> <g id="clust2" class="cluster">
<title>clusterdir_3f4f28e99864f6e7d54ad0c93ce0a2a5</title> <title>clusterdir_3f4f28e99864f6e7d54ad0c93ce0a2a5</title>
<g id="a_clust2"><a xlink:href="dir_3f4f28e99864f6e7d54ad0c93ce0a2a5.html" target="_top"> <g id="a_clust2"><a xlink:href="dir_3f4f28e99864f6e7d54ad0c93ce0a2a5.html" target="_top">
<polygon fill="#edf0f7" stroke="#404040" stroke-width="2" points="16,-16 16,-106.5 241,-106.5 241,-16 16,-16"/> <polygon fill="#edf0f7" stroke="#404040" stroke-width="2" points="16,-16 16,-217 250,-217 250,-16 16,-16"/>
</a> </a>
</g> </g>
</g> </g>
<!-- dir_3f4f28e99864f6e7d54ad0c93ce0a2a5 --> <!-- dir_3f4f28e99864f6e7d54ad0c93ce0a2a5 -->
<g id="node1" class="node"> <g id="node1" class="node">
<title>dir_3f4f28e99864f6e7d54ad0c93ce0a2a5</title> <title>dir_3f4f28e99864f6e7d54ad0c93ce0a2a5</title>
<text xml:space="preserve" text-anchor="middle" x="44" y="-85" font-family="Helvetica,sans-Serif" font-size="10.00">stroid</text> <text xml:space="preserve" text-anchor="middle" x="121" y="-195.5" font-family="Helvetica,sans-Serif" font-size="10.00">stroid</text>
</g> </g>
<!-- dir_dc36fd7496f87f6989d6d6a9445d600c --> <!-- dir_dc36fd7496f87f6989d6d6a9445d600c -->
<g id="node2" class="node"> <g id="node2" class="node">
<title>dir_dc36fd7496f87f6989d6d6a9445d600c</title> <title>dir_dc36fd7496f87f6989d6d6a9445d600c</title>
<g id="a_node2"><a xlink:href="dir_dc36fd7496f87f6989d6d6a9445d600c.html" target="_top" xlink:title="config"> <g id="a_node2"><a xlink:href="dir_dc36fd7496f87f6989d6d6a9445d600c.html" target="_top" xlink:title="config">
<polygon fill="#a2b4d6" stroke="#404040" points="176.12,-43.25 133.88,-43.25 133.88,-24 176.12,-24 176.12,-43.25"/> <polygon fill="#a2b4d6" stroke="#404040" points="157.12,-43.25 114.88,-43.25 114.88,-24 157.12,-24 157.12,-43.25"/>
<text xml:space="preserve" text-anchor="middle" x="155" y="-29.75" font-family="Helvetica,sans-Serif" font-size="10.00">config</text> <text xml:space="preserve" text-anchor="middle" x="136" y="-29.75" font-family="Helvetica,sans-Serif" font-size="10.00">config</text>
</a>
</g>
</g>
<!-- dir_3f4f28e99864f6e7d54ad0c93ce0a2a5&#45;&gt;dir_dc36fd7496f87f6989d6d6a9445d600c -->
<g id="edge5" class="edge">
<title>dir_3f4f28e99864f6e7d54ad0c93ce0a2a5&#45;&gt;dir_dc36fd7496f87f6989d6d6a9445d600c</title>
<g id="a_edge5"><a xlink:href="dir_000016_000000.html" target="_top">
<path fill="none" stroke="#63b8ff" d="M101.29,-193.55C72.01,-185.26 21.82,-166.08 35,-134.5 50.45,-97.5 87.02,-67.21 111.65,-50.03"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="113.46,-53.03 119.8,-44.54 109.55,-47.22 113.46,-53.03"/>
</a>
</g>
<g id="a_edge5&#45;headlabel"><a xlink:href="dir_000016_000000.html" target="_top" xlink:title="8">
<text xml:space="preserve" text-anchor="middle" x="113.32" y="-52.67" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">8</text>
</a> </a>
</g> </g>
</g> </g>
<!-- dir_31a6c70da1404d38d1b51e38b19548a1 --> <!-- dir_31a6c70da1404d38d1b51e38b19548a1 -->
<g id="node3" class="node"> <g id="node4" class="node">
<title>dir_31a6c70da1404d38d1b51e38b19548a1</title> <title>dir_31a6c70da1404d38d1b51e38b19548a1</title>
<g id="a_node3"><a xlink:href="dir_31a6c70da1404d38d1b51e38b19548a1.html" target="_top" xlink:title="IO"> <g id="a_node4"><a xlink:href="dir_31a6c70da1404d38d1b51e38b19548a1.html" target="_top" xlink:title="IO">
<polygon fill="#a2b4d6" stroke="#404040" points="110.4,-98.5 81.6,-98.5 81.6,-79.25 110.4,-79.25 110.4,-98.5"/> <polygon fill="#a2b4d6" stroke="#404040" points="72.4,-153.75 43.6,-153.75 43.6,-134.5 72.4,-134.5 72.4,-153.75"/>
<text xml:space="preserve" text-anchor="middle" x="96" y="-85" font-family="Helvetica,sans-Serif" font-size="10.00">IO</text> <text xml:space="preserve" text-anchor="middle" x="58" y="-140.25" font-family="Helvetica,sans-Serif" font-size="10.00">IO</text>
</a>
</g>
</g>
<!-- dir_3f4f28e99864f6e7d54ad0c93ce0a2a5&#45;&gt;dir_31a6c70da1404d38d1b51e38b19548a1 -->
<g id="edge2" class="edge">
<title>dir_3f4f28e99864f6e7d54ad0c93ce0a2a5&#45;&gt;dir_31a6c70da1404d38d1b51e38b19548a1</title>
<g id="a_edge2"><a xlink:href="dir_000016_000006.html" target="_top">
<path fill="none" stroke="#63b8ff" d="M110.88,-189.82C101.86,-182.19 88.4,-170.82 77.33,-161.46"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="79.78,-158.95 69.89,-155.17 75.26,-164.3 79.78,-158.95"/>
</a>
</g>
<g id="a_edge2&#45;headlabel"><a xlink:href="dir_000016_000006.html" target="_top" xlink:title="1">
<text xml:space="preserve" text-anchor="middle" x="83.2" y="-154.25" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">1</text>
</a>
</g>
</g>
<!-- dir_23ef0af4381c568078c3c1a0b52a2897 -->
<g id="node5" class="node">
<title>dir_23ef0af4381c568078c3c1a0b52a2897</title>
<g id="a_node5"><a xlink:href="dir_23ef0af4381c568078c3c1a0b52a2897.html" target="_top" xlink:title="refinement">
<polygon fill="#a2b4d6" stroke="#404040" points="151.88,-153.75 90.12,-153.75 90.12,-134.5 151.88,-134.5 151.88,-153.75"/>
<text xml:space="preserve" text-anchor="middle" x="121" y="-140.25" font-family="Helvetica,sans-Serif" font-size="10.00">refinement</text>
</a>
</g>
</g>
<!-- dir_3f4f28e99864f6e7d54ad0c93ce0a2a5&#45;&gt;dir_23ef0af4381c568078c3c1a0b52a2897 -->
<g id="edge1" class="edge">
<title>dir_3f4f28e99864f6e7d54ad0c93ce0a2a5&#45;&gt;dir_23ef0af4381c568078c3c1a0b52a2897</title>
<g id="a_edge1"><a xlink:href="dir_000016_000011.html" target="_top">
<path fill="none" stroke="#63b8ff" d="M121,-190.05C121,-183.45 121,-173.94 121,-165.36"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="124.5,-165.43 121,-155.43 117.5,-165.43 124.5,-165.43"/>
</a>
</g>
<g id="a_edge1&#45;headlabel"><a xlink:href="dir_000016_000011.html" target="_top" xlink:title="1">
<text xml:space="preserve" text-anchor="middle" x="127.34" y="-163.64" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">1</text>
</a> </a>
</g> </g>
</g> </g>
<!-- dir_9da86e8abab39b749c6020360d8e4403 --> <!-- dir_9da86e8abab39b749c6020360d8e4403 -->
<g id="node4" class="node"> <g id="node6" class="node">
<title>dir_9da86e8abab39b749c6020360d8e4403</title> <title>dir_9da86e8abab39b749c6020360d8e4403</title>
<g id="a_node4"><a xlink:href="dir_9da86e8abab39b749c6020360d8e4403.html" target="_top" xlink:title="topology"> <g id="a_node6"><a xlink:href="dir_9da86e8abab39b749c6020360d8e4403.html" target="_top" xlink:title="topology">
<polygon fill="#a2b4d6" stroke="#404040" points="181.38,-98.5 128.62,-98.5 128.62,-79.25 181.38,-79.25 181.38,-98.5"/> <polygon fill="#a2b4d6" stroke="#404040" points="242.38,-153.75 189.62,-153.75 189.62,-134.5 242.38,-134.5 242.38,-153.75"/>
<text xml:space="preserve" text-anchor="middle" x="155" y="-85" font-family="Helvetica,sans-Serif" font-size="10.00">topology</text> <text xml:space="preserve" text-anchor="middle" x="216" y="-140.25" font-family="Helvetica,sans-Serif" font-size="10.00">topology</text>
</a> </a>
</g> </g>
</g> </g>
<!-- dir_9da86e8abab39b749c6020360d8e4403&#45;&gt;dir_dc36fd7496f87f6989d6d6a9445d600c --> <!-- dir_3f4f28e99864f6e7d54ad0c93ce0a2a5&#45;&gt;dir_9da86e8abab39b749c6020360d8e4403 -->
<g id="edge1" class="edge"> <g id="edge4" class="edge">
<title>dir_9da86e8abab39b749c6020360d8e4403&#45;&gt;dir_dc36fd7496f87f6989d6d6a9445d600c</title> <title>dir_3f4f28e99864f6e7d54ad0c93ce0a2a5&#45;&gt;dir_9da86e8abab39b749c6020360d8e4403</title>
<g id="a_edge1"><a xlink:href="dir_000009_000000.html" target="_top"> <g id="a_edge4"><a xlink:href="dir_000016_000018.html" target="_top">
<path fill="none" stroke="#63b8ff" d="M155,-79.08C155,-72.57 155,-63.42 155,-55.12"/> <path fill="none" stroke="#63b8ff" d="M136.26,-189.82C150.68,-181.74 172.61,-169.45 189.82,-159.8"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="158.5,-55.12 155,-45.12 151.5,-55.12 158.5,-55.12"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="191.49,-162.88 198.5,-154.93 188.07,-156.77 191.49,-162.88"/>
</a> </a>
</g> </g>
<g id="a_edge1&#45;headlabel"><a xlink:href="dir_000009_000000.html" target="_top" xlink:title="3"> <g id="a_edge4&#45;headlabel"><a xlink:href="dir_000016_000018.html" target="_top" xlink:title="4">
<text xml:space="preserve" text-anchor="middle" x="161.34" y="-53.33" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">3</text> <text xml:space="preserve" text-anchor="middle" x="191.06" y="-162.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">4</text>
</a> </a>
</g> </g>
</g> </g>
<!-- dir_9d5018b9ddb63a582aa4c6b91bec2f8c --> <!-- dir_9d5018b9ddb63a582aa4c6b91bec2f8c -->
<g id="node5" class="node"> <g id="node7" class="node">
<title>dir_9d5018b9ddb63a582aa4c6b91bec2f8c</title> <title>dir_9d5018b9ddb63a582aa4c6b91bec2f8c</title>
<g id="a_node5"><a xlink:href="dir_9d5018b9ddb63a582aa4c6b91bec2f8c.html" target="_top" xlink:title="utils"> <g id="a_node7"><a xlink:href="dir_9d5018b9ddb63a582aa4c6b91bec2f8c.html" target="_top" xlink:title="utils">
<polygon fill="#a2b4d6" stroke="#404040" points="233,-98.5 199,-98.5 199,-79.25 233,-79.25 233,-98.5"/> <polygon fill="#a2b4d6" stroke="#404040" points="153,-98.5 119,-98.5 119,-79.25 153,-79.25 153,-98.5"/>
<text xml:space="preserve" text-anchor="middle" x="216" y="-85" font-family="Helvetica,sans-Serif" font-size="10.00">utils</text> <text xml:space="preserve" text-anchor="middle" x="136" y="-85" font-family="Helvetica,sans-Serif" font-size="10.00">utils</text>
</a>
</g>
</g>
<!-- dir_3f4f28e99864f6e7d54ad0c93ce0a2a5&#45;&gt;dir_9d5018b9ddb63a582aa4c6b91bec2f8c -->
<g id="edge3" class="edge">
<title>dir_3f4f28e99864f6e7d54ad0c93ce0a2a5&#45;&gt;dir_9d5018b9ddb63a582aa4c6b91bec2f8c</title>
<g id="a_edge3"><a xlink:href="dir_000016_000020.html" target="_top">
<path fill="none" stroke="#63b8ff" d="M132.26,-189.89C141.96,-181.82 155.27,-168.71 161,-153.75 166.91,-138.3 159.05,-120.82 150.62,-108.05"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="153.6,-106.2 144.88,-100.18 147.94,-110.32 153.6,-106.2"/>
</a>
</g>
<g id="a_edge3&#45;headlabel"><a xlink:href="dir_000016_000020.html" target="_top" xlink:title="6">
<text xml:space="preserve" text-anchor="middle" x="157.12" y="-102.33" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">6</text>
</a>
</g>
</g>
<!-- dir_760124f38acb4ebb9f6d85a2d3ae192f -->
<g id="node3" class="node">
<title>dir_760124f38acb4ebb9f6d85a2d3ae192f</title>
<g id="a_node3"><a xlink:href="dir_760124f38acb4ebb9f6d85a2d3ae192f.html" target="_top" xlink:title="exceptions">
<polygon fill="#a2b4d6" stroke="#404040" points="231.62,-209 168.38,-209 168.38,-189.75 231.62,-189.75 231.62,-209"/>
<text xml:space="preserve" text-anchor="middle" x="200" y="-195.5" font-family="Helvetica,sans-Serif" font-size="10.00">exceptions</text>
</a>
</g>
</g>
<!-- dir_31a6c70da1404d38d1b51e38b19548a1&#45;&gt;dir_9d5018b9ddb63a582aa4c6b91bec2f8c -->
<g id="edge6" class="edge">
<title>dir_31a6c70da1404d38d1b51e38b19548a1&#45;&gt;dir_9d5018b9ddb63a582aa4c6b91bec2f8c</title>
<g id="a_edge6"><a xlink:href="dir_000006_000020.html" target="_top">
<path fill="none" stroke="#63b8ff" d="M71.23,-134.09C82.77,-126.21 99.77,-114.61 113.45,-105.27"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="115.17,-108.33 121.45,-99.81 111.22,-102.55 115.17,-108.33"/>
</a>
</g>
<g id="a_edge6&#45;headlabel"><a xlink:href="dir_000006_000020.html" target="_top" xlink:title="1">
<text xml:space="preserve" text-anchor="middle" x="115.05" y="-107.98" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">1</text>
</a>
</g>
</g>
<!-- dir_23ef0af4381c568078c3c1a0b52a2897&#45;&gt;dir_9d5018b9ddb63a582aa4c6b91bec2f8c -->
<g id="edge7" class="edge">
<title>dir_23ef0af4381c568078c3c1a0b52a2897&#45;&gt;dir_9d5018b9ddb63a582aa4c6b91bec2f8c</title>
<g id="a_edge7"><a xlink:href="dir_000011_000020.html" target="_top">
<path fill="none" stroke="#63b8ff" d="M123.48,-134.33C125.35,-127.67 128.01,-118.24 130.39,-109.78"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="133.72,-110.89 133.06,-100.32 126.98,-108.99 133.72,-110.89"/>
</a>
</g>
<g id="a_edge7&#45;headlabel"><a xlink:href="dir_000011_000020.html" target="_top" xlink:title="1">
<text xml:space="preserve" text-anchor="middle" x="135.89" y="-109.79" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">1</text>
</a>
</g>
</g>
<!-- dir_9da86e8abab39b749c6020360d8e4403&#45;&gt;dir_dc36fd7496f87f6989d6d6a9445d600c -->
<g id="edge9" class="edge">
<title>dir_9da86e8abab39b749c6020360d8e4403&#45;&gt;dir_dc36fd7496f87f6989d6d6a9445d600c</title>
<g id="a_edge9"><a xlink:href="dir_000018_000000.html" target="_top">
<path fill="none" stroke="#63b8ff" d="M209.45,-134.25C196.39,-116.52 166.83,-76.44 149.46,-52.88"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="152.29,-50.82 143.54,-44.84 146.65,-54.97 152.29,-50.82"/>
</a>
</g>
<g id="a_edge9&#45;headlabel"><a xlink:href="dir_000018_000000.html" target="_top" xlink:title="4">
<text xml:space="preserve" text-anchor="middle" x="155.81" y="-46.93" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">4</text>
</a>
</g>
</g>
<!-- dir_9da86e8abab39b749c6020360d8e4403&#45;&gt;dir_9d5018b9ddb63a582aa4c6b91bec2f8c -->
<g id="edge8" class="edge">
<title>dir_9da86e8abab39b749c6020360d8e4403&#45;&gt;dir_9d5018b9ddb63a582aa4c6b91bec2f8c</title>
<g id="a_edge8"><a xlink:href="dir_000018_000020.html" target="_top">
<path fill="none" stroke="#63b8ff" d="M202.43,-134.09C190.59,-126.21 173.16,-114.61 159.13,-105.27"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="161.16,-102.42 150.9,-99.79 157.28,-108.25 161.16,-102.42"/>
</a>
</g>
<g id="a_edge8&#45;headlabel"><a xlink:href="dir_000018_000020.html" target="_top" xlink:title="1">
<text xml:space="preserve" text-anchor="middle" x="164.47" y="-97.33" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">1</text>
</a>
</g>
</g>
<!-- dir_9d5018b9ddb63a582aa4c6b91bec2f8c&#45;&gt;dir_dc36fd7496f87f6989d6d6a9445d600c -->
<g id="edge10" class="edge">
<title>dir_9d5018b9ddb63a582aa4c6b91bec2f8c&#45;&gt;dir_dc36fd7496f87f6989d6d6a9445d600c</title>
<g id="a_edge10"><a xlink:href="dir_000020_000000.html" target="_top">
<path fill="none" stroke="#63b8ff" d="M136,-79.08C136,-72.57 136,-63.42 136,-55.12"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="139.5,-55.12 136,-45.12 132.5,-55.12 139.5,-55.12"/>
</a>
</g>
<g id="a_edge10&#45;headlabel"><a xlink:href="dir_000020_000000.html" target="_top" xlink:title="3">
<text xml:space="preserve" text-anchor="middle" x="142.34" y="-53.33" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">3</text>
</a> </a>
</g> </g>
</g> </g>

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View File

@@ -31,7 +31,7 @@
<tr id="projectrow"> <tr id="projectrow">
<td id="projectlogo"><img alt="Logo" src="Logo.png"/></td> <td id="projectlogo"><img alt="Logo" src="Logo.png"/></td>
<td id="projectalign"> <td id="projectalign">
<div id="projectname">stroid<span id="projectnumber">&#160;v0.2.0</span> <div id="projectname">stroid<span id="projectnumber">&#160;v0.6.0</span>
</div> </div>
<div id="projectbrief">Multi-block curvilinear mesh generation</div> <div id="projectbrief">Multi-block curvilinear mesh generation</div>
</td> </td>

View File

@@ -31,7 +31,7 @@
<tr id="projectrow"> <tr id="projectrow">
<td id="projectlogo"><img alt="Logo" src="Logo.png"/></td> <td id="projectlogo"><img alt="Logo" src="Logo.png"/></td>
<td id="projectalign"> <td id="projectalign">
<div id="projectname">stroid<span id="projectnumber">&#160;v0.2.0</span> <div id="projectname">stroid<span id="projectnumber">&#160;v0.6.0</span>
</div> </div>
<div id="projectbrief">Multi-block curvilinear mesh generation</div> <div id="projectbrief">Multi-block curvilinear mesh generation</div>
</td> </td>
@@ -107,7 +107,7 @@ $(function(){initNavTree('dir_68267d1309a1af8e8297ef4c3efbcdba.html',''); initRe
<div class="dynheader"> <div class="dynheader">
Directory dependency graph for src:</div> Directory dependency graph for src:</div>
<div class="dyncontent"> <div class="dyncontent">
<div class="center"><iframe scrolling="no" frameborder="0" src="dir_68267d1309a1af8e8297ef4c3efbcdba_dep.svg" width="155" height="154"><p><b>This browser is not able to show SVG: try Firefox, Chrome, Safari, or Opera instead.</b></p></iframe></div> <div class="center"><iframe scrolling="no" frameborder="0" src="dir_68267d1309a1af8e8297ef4c3efbcdba_dep.svg" width="240" height="154"><p><b>This browser is not able to show SVG: try Firefox, Chrome, Safari, or Opera instead.</b></p></iframe></div>
</div> </div>
<table class="memberdecls"> <table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="subdirs" name="subdirs"></a> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="subdirs" name="subdirs"></a>
@@ -116,6 +116,8 @@ Directories</h2></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><span class="iconfclosed"></span>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="dir_c85d3e3c5052e9ad9ce18c6863244a25.html">lib</a></td></tr> <tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><span class="iconfclosed"></span>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="dir_c85d3e3c5052e9ad9ce18c6863244a25.html">lib</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><span class="iconfclosed"></span>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="dir_5c0d64f70903e893b1efe571a4b8de29.html">python</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table> </table>
</div><!-- contents --> </div><!-- contents -->
</div><!-- doc-content --> </div><!-- doc-content -->

View File

@@ -1,5 +1,6 @@
var dir_68267d1309a1af8e8297ef4c3efbcdba = var dir_68267d1309a1af8e8297ef4c3efbcdba =
[ [
[ "include", "dir_b0856f6b0d80ccb263b2f415c91f9e17.html", "dir_b0856f6b0d80ccb263b2f415c91f9e17" ], [ "include", "dir_b0856f6b0d80ccb263b2f415c91f9e17.html", "dir_b0856f6b0d80ccb263b2f415c91f9e17" ],
[ "lib", "dir_c85d3e3c5052e9ad9ce18c6863244a25.html", "dir_c85d3e3c5052e9ad9ce18c6863244a25" ] [ "lib", "dir_c85d3e3c5052e9ad9ce18c6863244a25.html", "dir_c85d3e3c5052e9ad9ce18c6863244a25" ],
[ "python", "dir_5c0d64f70903e893b1efe571a4b8de29.html", "dir_5c0d64f70903e893b1efe571a4b8de29" ]
]; ];

View File

@@ -1,7 +1,10 @@
<map id="src" name="src"> <map id="src" name="src">
<area shape="rect" id="node2" href="dir_b0856f6b0d80ccb263b2f415c91f9e17.html" title="include" alt="" coords="66,100,128,126"/> <area shape="rect" id="node2" href="dir_b0856f6b0d80ccb263b2f415c91f9e17.html" title="include" alt="" coords="114,100,176,126"/>
<area shape="rect" id="node3" href="dir_c85d3e3c5052e9ad9ce18c6863244a25.html" title="lib" alt="" coords="90,27,129,52"/> <area shape="rect" id="node3" href="dir_c85d3e3c5052e9ad9ce18c6863244a25.html" title="lib" alt="" coords="90,27,129,52"/>
<area shape="poly" id="edge1" href="dir_000005_000002.html" alt="" coords="110,53,105,85,99,84,105,52"/> <area shape="poly" id="edge1" href="dir_000009_000005.html" alt="" coords="116,50,135,87,130,86,114,55"/>
<area shape="rect" id="edge1-headlabel" href="dir_000005_000002.html" title="7" alt="" coords="107,76,114,91"/> <area shape="rect" id="edge1-headlabel" href="dir_000009_000005.html" title="19" alt="" coords="132,72,146,87"/>
<area shape="rect" id="clust1" href="dir_68267d1309a1af8e8297ef4c3efbcdba.html" alt="" coords="16,16,139,137"/> <area shape="rect" id="node4" href="dir_5c0d64f70903e893b1efe571a4b8de29.html" title="python" alt="" coords="152,27,213,52"/>
<area shape="poly" id="edge2" href="dir_000010_000005.html" alt="" coords="179,51,161,88,157,85,174,54"/>
<area shape="rect" id="edge2-headlabel" href="dir_000010_000005.html" title="9" alt="" coords="164,80,171,95"/>
<area shape="rect" id="clust1" href="dir_68267d1309a1af8e8297ef4c3efbcdba.html" alt="" coords="16,16,224,137"/>
</map> </map>

View File

@@ -1 +1 @@
32f7a5be2d2ff8dc39a2a4b9db9092a6 02e19dbaf02362b7e506fbcaddd38b33

View File

@@ -1,11 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 13.0.1 (20250615.1724) <!-- Generated by graphviz version 14.1.2 (20260124.0452)
--> -->
<!-- Title: src Pages: 1 --> <!-- Title: src Pages: 1 -->
<svg width="116pt" height="115pt" <svg width="180pt" height="115pt"
viewBox="0.00 0.00 116.00 115.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> viewBox="0.00 0.00 180.00 115.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<svg id="main" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve"> <svg id="main" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve">
@@ -22,7 +22,7 @@
<g id="clust1" class="cluster"> <g id="clust1" class="cluster">
<title>clusterdir_68267d1309a1af8e8297ef4c3efbcdba</title> <title>clusterdir_68267d1309a1af8e8297ef4c3efbcdba</title>
<g id="a_clust1"><a xlink:href="dir_68267d1309a1af8e8297ef4c3efbcdba.html" target="_top"> <g id="a_clust1"><a xlink:href="dir_68267d1309a1af8e8297ef4c3efbcdba.html" target="_top">
<polygon fill="#edf0f7" stroke="#404040" stroke-width="2" points="8,-8 8,-98.5 100,-98.5 100,-8 8,-8"/> <polygon fill="#edf0f7" stroke="#404040" stroke-width="2" points="8,-8 8,-98.5 164,-98.5 164,-8 8,-8"/>
</a> </a>
</g> </g>
</g> </g>
@@ -35,8 +35,8 @@
<g id="node2" class="node"> <g id="node2" class="node">
<title>dir_b0856f6b0d80ccb263b2f415c91f9e17</title> <title>dir_b0856f6b0d80ccb263b2f415c91f9e17</title>
<g id="a_node2"><a xlink:href="dir_b0856f6b0d80ccb263b2f415c91f9e17.html" target="_top" xlink:title="include"> <g id="a_node2"><a xlink:href="dir_b0856f6b0d80ccb263b2f415c91f9e17.html" target="_top" xlink:title="include">
<polygon fill="#a2b4d6" stroke="#404040" points="92.38,-35.25 45.62,-35.25 45.62,-16 92.38,-16 92.38,-35.25"/> <polygon fill="#a2b4d6" stroke="#404040" points="128.38,-35.25 81.62,-35.25 81.62,-16 128.38,-16 128.38,-35.25"/>
<text xml:space="preserve" text-anchor="middle" x="69" y="-21.75" font-family="Helvetica,sans-Serif" font-size="10.00">include</text> <text xml:space="preserve" text-anchor="middle" x="105" y="-21.75" font-family="Helvetica,sans-Serif" font-size="10.00">include</text>
</a> </a>
</g> </g>
</g> </g>
@@ -52,13 +52,35 @@
<!-- dir_c85d3e3c5052e9ad9ce18c6863244a25&#45;&gt;dir_b0856f6b0d80ccb263b2f415c91f9e17 --> <!-- dir_c85d3e3c5052e9ad9ce18c6863244a25&#45;&gt;dir_b0856f6b0d80ccb263b2f415c91f9e17 -->
<g id="edge1" class="edge"> <g id="edge1" class="edge">
<title>dir_c85d3e3c5052e9ad9ce18c6863244a25&#45;&gt;dir_b0856f6b0d80ccb263b2f415c91f9e17</title> <title>dir_c85d3e3c5052e9ad9ce18c6863244a25&#45;&gt;dir_b0856f6b0d80ccb263b2f415c91f9e17</title>
<g id="a_edge1"><a xlink:href="dir_000005_000002.html" target="_top"> <g id="a_edge1"><a xlink:href="dir_000009_000005.html" target="_top">
<path fill="none" stroke="#63b8ff" d="M76.51,-71.08C75.4,-64.49 73.83,-55.21 72.41,-46.82"/> <path fill="none" stroke="#63b8ff" d="M82.46,-71.08C85.95,-64.19 90.95,-54.34 95.35,-45.66"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="75.89,-46.38 70.77,-37.1 68.99,-47.55 75.89,-46.38"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="98.36,-47.46 99.76,-36.96 92.12,-44.3 98.36,-47.46"/>
</a> </a>
</g> </g>
<g id="a_edge1&#45;headlabel"><a xlink:href="dir_000005_000002.html" target="_top" xlink:title="7"> <g id="a_edge1&#45;headlabel"><a xlink:href="dir_000009_000005.html" target="_top" xlink:title="19">
<text xml:space="preserve" text-anchor="middle" x="79.03" y="-44.08" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">7</text> <text xml:space="preserve" text-anchor="middle" x="99.95" y="-46.73" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">19</text>
</a>
</g>
</g>
<!-- dir_5c0d64f70903e893b1efe571a4b8de29 -->
<g id="node4" class="node">
<title>dir_5c0d64f70903e893b1efe571a4b8de29</title>
<g id="a_node4"><a xlink:href="dir_5c0d64f70903e893b1efe571a4b8de29.html" target="_top" xlink:title="python">
<polygon fill="#a2b4d6" stroke="#404040" points="155.62,-90.5 110.38,-90.5 110.38,-71.25 155.62,-71.25 155.62,-90.5"/>
<text xml:space="preserve" text-anchor="middle" x="133" y="-77" font-family="Helvetica,sans-Serif" font-size="10.00">python</text>
</a>
</g>
</g>
<!-- dir_5c0d64f70903e893b1efe571a4b8de29&#45;&gt;dir_b0856f6b0d80ccb263b2f415c91f9e17 -->
<g id="edge2" class="edge">
<title>dir_5c0d64f70903e893b1efe571a4b8de29&#45;&gt;dir_b0856f6b0d80ccb263b2f415c91f9e17</title>
<g id="a_edge2"><a xlink:href="dir_000010_000005.html" target="_top">
<path fill="none" stroke="#63b8ff" d="M128.38,-71.08C124.75,-64.19 119.57,-54.34 115.01,-45.66"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="118.18,-44.17 110.43,-36.95 111.98,-47.43 118.18,-44.17"/>
</a>
</g>
<g id="a_edge2&#45;headlabel"><a xlink:href="dir_000010_000005.html" target="_top" xlink:title="9">
<text xml:space="preserve" text-anchor="middle" x="121.66" y="-40.82" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">9</text>
</a> </a>
</g> </g>
</g> </g>

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 4.7 KiB

View File

@@ -1,17 +1,17 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 13.0.1 (20250615.1724) <!-- Generated by graphviz version 14.1.2 (20260124.0452)
--> -->
<!-- Title: src Pages: 1 --> <!-- Title: src Pages: 1 -->
<svg width="116pt" height="115pt" <svg width="180pt" height="115pt"
viewBox="0.00 0.00 116.00 115.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> viewBox="0.00 0.00 180.00 115.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 110.5)"> <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 110.5)">
<title>src</title> <title>src</title>
<g id="clust1" class="cluster"> <g id="clust1" class="cluster">
<title>clusterdir_68267d1309a1af8e8297ef4c3efbcdba</title> <title>clusterdir_68267d1309a1af8e8297ef4c3efbcdba</title>
<g id="a_clust1"><a xlink:href="dir_68267d1309a1af8e8297ef4c3efbcdba.html" target="_top"> <g id="a_clust1"><a xlink:href="dir_68267d1309a1af8e8297ef4c3efbcdba.html" target="_top">
<polygon fill="#edf0f7" stroke="#404040" stroke-width="2" points="8,-8 8,-98.5 100,-98.5 100,-8 8,-8"/> <polygon fill="#edf0f7" stroke="#404040" stroke-width="2" points="8,-8 8,-98.5 164,-98.5 164,-8 8,-8"/>
</a> </a>
</g> </g>
</g> </g>
@@ -24,8 +24,8 @@
<g id="node2" class="node"> <g id="node2" class="node">
<title>dir_b0856f6b0d80ccb263b2f415c91f9e17</title> <title>dir_b0856f6b0d80ccb263b2f415c91f9e17</title>
<g id="a_node2"><a xlink:href="dir_b0856f6b0d80ccb263b2f415c91f9e17.html" target="_top" xlink:title="include"> <g id="a_node2"><a xlink:href="dir_b0856f6b0d80ccb263b2f415c91f9e17.html" target="_top" xlink:title="include">
<polygon fill="#a2b4d6" stroke="#404040" points="92.38,-35.25 45.62,-35.25 45.62,-16 92.38,-16 92.38,-35.25"/> <polygon fill="#a2b4d6" stroke="#404040" points="128.38,-35.25 81.62,-35.25 81.62,-16 128.38,-16 128.38,-35.25"/>
<text xml:space="preserve" text-anchor="middle" x="69" y="-21.75" font-family="Helvetica,sans-Serif" font-size="10.00">include</text> <text xml:space="preserve" text-anchor="middle" x="105" y="-21.75" font-family="Helvetica,sans-Serif" font-size="10.00">include</text>
</a> </a>
</g> </g>
</g> </g>
@@ -41,13 +41,35 @@
<!-- dir_c85d3e3c5052e9ad9ce18c6863244a25&#45;&gt;dir_b0856f6b0d80ccb263b2f415c91f9e17 --> <!-- dir_c85d3e3c5052e9ad9ce18c6863244a25&#45;&gt;dir_b0856f6b0d80ccb263b2f415c91f9e17 -->
<g id="edge1" class="edge"> <g id="edge1" class="edge">
<title>dir_c85d3e3c5052e9ad9ce18c6863244a25&#45;&gt;dir_b0856f6b0d80ccb263b2f415c91f9e17</title> <title>dir_c85d3e3c5052e9ad9ce18c6863244a25&#45;&gt;dir_b0856f6b0d80ccb263b2f415c91f9e17</title>
<g id="a_edge1"><a xlink:href="dir_000005_000002.html" target="_top"> <g id="a_edge1"><a xlink:href="dir_000009_000005.html" target="_top">
<path fill="none" stroke="#63b8ff" d="M76.51,-71.08C75.4,-64.49 73.83,-55.21 72.41,-46.82"/> <path fill="none" stroke="#63b8ff" d="M82.46,-71.08C85.95,-64.19 90.95,-54.34 95.35,-45.66"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="75.89,-46.38 70.77,-37.1 68.99,-47.55 75.89,-46.38"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="98.36,-47.46 99.76,-36.96 92.12,-44.3 98.36,-47.46"/>
</a> </a>
</g> </g>
<g id="a_edge1&#45;headlabel"><a xlink:href="dir_000005_000002.html" target="_top" xlink:title="7"> <g id="a_edge1&#45;headlabel"><a xlink:href="dir_000009_000005.html" target="_top" xlink:title="19">
<text xml:space="preserve" text-anchor="middle" x="79.03" y="-44.08" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">7</text> <text xml:space="preserve" text-anchor="middle" x="99.95" y="-46.73" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">19</text>
</a>
</g>
</g>
<!-- dir_5c0d64f70903e893b1efe571a4b8de29 -->
<g id="node4" class="node">
<title>dir_5c0d64f70903e893b1efe571a4b8de29</title>
<g id="a_node4"><a xlink:href="dir_5c0d64f70903e893b1efe571a4b8de29.html" target="_top" xlink:title="python">
<polygon fill="#a2b4d6" stroke="#404040" points="155.62,-90.5 110.38,-90.5 110.38,-71.25 155.62,-71.25 155.62,-90.5"/>
<text xml:space="preserve" text-anchor="middle" x="133" y="-77" font-family="Helvetica,sans-Serif" font-size="10.00">python</text>
</a>
</g>
</g>
<!-- dir_5c0d64f70903e893b1efe571a4b8de29&#45;&gt;dir_b0856f6b0d80ccb263b2f415c91f9e17 -->
<g id="edge2" class="edge">
<title>dir_5c0d64f70903e893b1efe571a4b8de29&#45;&gt;dir_b0856f6b0d80ccb263b2f415c91f9e17</title>
<g id="a_edge2"><a xlink:href="dir_000010_000005.html" target="_top">
<path fill="none" stroke="#63b8ff" d="M128.38,-71.08C124.75,-64.19 119.57,-54.34 115.01,-45.66"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="118.18,-44.17 110.43,-36.95 111.98,-47.43 118.18,-44.17"/>
</a>
</g>
<g id="a_edge2&#45;headlabel"><a xlink:href="dir_000010_000005.html" target="_top" xlink:title="9">
<text xml:space="preserve" text-anchor="middle" x="121.66" y="-40.82" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">9</text>
</a> </a>
</g> </g>
</g> </g>

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

@@ -31,7 +31,7 @@
<tr id="projectrow"> <tr id="projectrow">
<td id="projectlogo"><img alt="Logo" src="Logo.png"/></td> <td id="projectlogo"><img alt="Logo" src="Logo.png"/></td>
<td id="projectalign"> <td id="projectalign">
<div id="projectname">stroid<span id="projectnumber">&#160;v0.2.0</span> <div id="projectname">stroid<span id="projectnumber">&#160;v0.6.0</span>
</div> </div>
<div id="projectbrief">Multi-block curvilinear mesh generation</div> <div id="projectbrief">Multi-block curvilinear mesh generation</div>
</td> </td>

View File

@@ -1,7 +1,7 @@
<map id="src/lib/IO" name="src/lib/IO"> <map id="src/lib/IO" name="src/lib/IO">
<area shape="rect" id="node1" href="dir_82887d4f338e92537fa9d809bec8c614.html" title="IO" alt="" coords="26,52,65,78"/> <area shape="rect" id="node1" href="dir_82887d4f338e92537fa9d809bec8c614.html" title="IO" alt="" coords="26,52,65,78"/>
<area shape="rect" id="node2" href="dir_b0856f6b0d80ccb263b2f415c91f9e17.html" title="include" alt="" coords="14,126,76,152"/> <area shape="rect" id="node2" href="dir_b0856f6b0d80ccb263b2f415c91f9e17.html" title="include" alt="" coords="14,126,76,152"/>
<area shape="poly" id="edge1" href="dir_000004_000002.html" alt="" coords="48,78,48,110,43,110,43,78"/> <area shape="poly" id="edge1" href="dir_000007_000005.html" alt="" coords="47,76,48,111,43,110,44,80"/>
<area shape="rect" id="edge1-headlabel" href="dir_000004_000002.html" title="2" alt="" coords="50,100,57,115"/> <area shape="rect" id="edge1-headlabel" href="dir_000007_000005.html" title="3" alt="" coords="50,100,57,115"/>
<area shape="rect" id="clust1" href="dir_c85d3e3c5052e9ad9ce18c6863244a25.html" title="lib" alt="" coords="16,16,75,89"/> <area shape="rect" id="clust1" href="dir_c85d3e3c5052e9ad9ce18c6863244a25.html" title="lib" alt="" coords="16,16,75,89"/>
</map> </map>

View File

@@ -1 +1 @@
3231d3feafcfb48db197b1ba201573ce 3cccde186a0e6a6a7d1300a70f60b9a3

View File

@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 13.0.1 (20250615.1724) <!-- Generated by graphviz version 14.1.2 (20260124.0452)
--> -->
<!-- Title: src/lib/IO Pages: 1 --> <!-- Title: src/lib/IO Pages: 1 -->
<svg width="68pt" height="118pt" <svg width="68pt" height="118pt"
@@ -48,13 +48,13 @@
<!-- dir_82887d4f338e92537fa9d809bec8c614&#45;&gt;dir_b0856f6b0d80ccb263b2f415c91f9e17 --> <!-- dir_82887d4f338e92537fa9d809bec8c614&#45;&gt;dir_b0856f6b0d80ccb263b2f415c91f9e17 -->
<g id="edge1" class="edge"> <g id="edge1" class="edge">
<title>dir_82887d4f338e92537fa9d809bec8c614&#45;&gt;dir_b0856f6b0d80ccb263b2f415c91f9e17</title> <title>dir_82887d4f338e92537fa9d809bec8c614&#45;&gt;dir_b0856f6b0d80ccb263b2f415c91f9e17</title>
<g id="a_edge1"><a xlink:href="dir_000004_000002.html" target="_top"> <g id="a_edge1"><a xlink:href="dir_000007_000005.html" target="_top">
<path fill="none" stroke="#63b8ff" d="M30,-55.08C30,-48.57 30,-39.42 30,-31.12"/> <path fill="none" stroke="#63b8ff" d="M30,-55.08C30,-48.57 30,-39.42 30,-31.12"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="33.5,-31.12 30,-21.12 26.5,-31.12 33.5,-31.12"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="33.5,-31.12 30,-21.12 26.5,-31.12 33.5,-31.12"/>
</a> </a>
</g> </g>
<g id="a_edge1&#45;headlabel"><a xlink:href="dir_000004_000002.html" target="_top" xlink:title="2"> <g id="a_edge1&#45;headlabel"><a xlink:href="dir_000007_000005.html" target="_top" xlink:title="3">
<text xml:space="preserve" text-anchor="middle" x="36.34" y="-29.33" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">2</text> <text xml:space="preserve" text-anchor="middle" x="36.34" y="-29.33" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">3</text>
</a> </a>
</g> </g>
</g> </g>

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 13.0.1 (20250615.1724) <!-- Generated by graphviz version 14.1.2 (20260124.0452)
--> -->
<!-- Title: src/lib/IO Pages: 1 --> <!-- Title: src/lib/IO Pages: 1 -->
<svg width="68pt" height="118pt" <svg width="68pt" height="118pt"
@@ -37,13 +37,13 @@
<!-- dir_82887d4f338e92537fa9d809bec8c614&#45;&gt;dir_b0856f6b0d80ccb263b2f415c91f9e17 --> <!-- dir_82887d4f338e92537fa9d809bec8c614&#45;&gt;dir_b0856f6b0d80ccb263b2f415c91f9e17 -->
<g id="edge1" class="edge"> <g id="edge1" class="edge">
<title>dir_82887d4f338e92537fa9d809bec8c614&#45;&gt;dir_b0856f6b0d80ccb263b2f415c91f9e17</title> <title>dir_82887d4f338e92537fa9d809bec8c614&#45;&gt;dir_b0856f6b0d80ccb263b2f415c91f9e17</title>
<g id="a_edge1"><a xlink:href="dir_000004_000002.html" target="_top"> <g id="a_edge1"><a xlink:href="dir_000007_000005.html" target="_top">
<path fill="none" stroke="#63b8ff" d="M30,-55.08C30,-48.57 30,-39.42 30,-31.12"/> <path fill="none" stroke="#63b8ff" d="M30,-55.08C30,-48.57 30,-39.42 30,-31.12"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="33.5,-31.12 30,-21.12 26.5,-31.12 33.5,-31.12"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="33.5,-31.12 30,-21.12 26.5,-31.12 33.5,-31.12"/>
</a> </a>
</g> </g>
<g id="a_edge1&#45;headlabel"><a xlink:href="dir_000004_000002.html" target="_top" xlink:title="2"> <g id="a_edge1&#45;headlabel"><a xlink:href="dir_000007_000005.html" target="_top" xlink:title="3">
<text xml:space="preserve" text-anchor="middle" x="36.34" y="-29.33" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">2</text> <text xml:space="preserve" text-anchor="middle" x="36.34" y="-29.33" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">3</text>
</a> </a>
</g> </g>
</g> </g>

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@@ -31,7 +31,7 @@
<tr id="projectrow"> <tr id="projectrow">
<td id="projectlogo"><img alt="Logo" src="Logo.png"/></td> <td id="projectlogo"><img alt="Logo" src="Logo.png"/></td>
<td id="projectalign"> <td id="projectalign">
<div id="projectname">stroid<span id="projectnumber">&#160;v0.2.0</span> <div id="projectname">stroid<span id="projectnumber">&#160;v0.6.0</span>
</div> </div>
<div id="projectbrief">Multi-block curvilinear mesh generation</div> <div id="projectbrief">Multi-block curvilinear mesh generation</div>
</td> </td>
@@ -112,6 +112,8 @@ Directory dependency graph for utils:</div>
<table class="memberdecls"> <table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="files" name="files"></a> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="files" name="files"></a>
Files</h2></td></tr> Files</h2></td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><span class="icondoc"></span>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="mesh__stats_8cpp.html">mesh_stats.cpp</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><span class="icondoc"></span>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="mesh__utils_8cpp.html">mesh_utils.cpp</a></td></tr> <tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><span class="icondoc"></span>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="mesh__utils_8cpp.html">mesh_utils.cpp</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table> </table>

View File

@@ -1,4 +1,5 @@
var dir_87d18a4dc5174905bfd7d2dc734defe6 = var dir_87d18a4dc5174905bfd7d2dc734defe6 =
[ [
[ "mesh_stats.cpp", "mesh__stats_8cpp.html", "mesh__stats_8cpp" ],
[ "mesh_utils.cpp", "mesh__utils_8cpp.html", "mesh__utils_8cpp" ] [ "mesh_utils.cpp", "mesh__utils_8cpp.html", "mesh__utils_8cpp" ]
]; ];

View File

@@ -1,7 +1,7 @@
<map id="src/lib/utils" name="src/lib/utils"> <map id="src/lib/utils" name="src/lib/utils">
<area shape="rect" id="node1" href="dir_87d18a4dc5174905bfd7d2dc734defe6.html" title="utils" alt="" coords="27,52,72,78"/> <area shape="rect" id="node1" href="dir_87d18a4dc5174905bfd7d2dc734defe6.html" title="utils" alt="" coords="27,52,72,78"/>
<area shape="rect" id="node2" href="dir_b0856f6b0d80ccb263b2f415c91f9e17.html" title="include" alt="" coords="18,126,80,152"/> <area shape="rect" id="node2" href="dir_b0856f6b0d80ccb263b2f415c91f9e17.html" title="include" alt="" coords="18,126,80,152"/>
<area shape="poly" id="edge1" href="dir_000012_000002.html" alt="" coords="52,78,52,110,47,110,47,78"/> <area shape="poly" id="edge1" href="dir_000021_000005.html" alt="" coords="51,76,52,111,47,110,48,80"/>
<area shape="rect" id="edge1-headlabel" href="dir_000012_000002.html" title="1" alt="" coords="54,100,61,115"/> <area shape="rect" id="edge1-headlabel" href="dir_000021_000005.html" title="3" alt="" coords="54,100,61,115"/>
<area shape="rect" id="clust1" href="dir_c85d3e3c5052e9ad9ce18c6863244a25.html" title="lib" alt="" coords="16,16,83,89"/> <area shape="rect" id="clust1" href="dir_c85d3e3c5052e9ad9ce18c6863244a25.html" title="lib" alt="" coords="16,16,83,89"/>
</map> </map>

View File

@@ -1 +1 @@
62ece51f3bfca5aa9f7321dddbaaeed5 35dcfbf6324b586a55502eb25156f8c8

View File

@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 13.0.1 (20250615.1724) <!-- Generated by graphviz version 14.1.2 (20260124.0452)
--> -->
<!-- Title: src/lib/utils Pages: 1 --> <!-- Title: src/lib/utils Pages: 1 -->
<svg width="74pt" height="118pt" <svg width="74pt" height="118pt"
@@ -48,13 +48,13 @@
<!-- dir_87d18a4dc5174905bfd7d2dc734defe6&#45;&gt;dir_b0856f6b0d80ccb263b2f415c91f9e17 --> <!-- dir_87d18a4dc5174905bfd7d2dc734defe6&#45;&gt;dir_b0856f6b0d80ccb263b2f415c91f9e17 -->
<g id="edge1" class="edge"> <g id="edge1" class="edge">
<title>dir_87d18a4dc5174905bfd7d2dc734defe6&#45;&gt;dir_b0856f6b0d80ccb263b2f415c91f9e17</title> <title>dir_87d18a4dc5174905bfd7d2dc734defe6&#45;&gt;dir_b0856f6b0d80ccb263b2f415c91f9e17</title>
<g id="a_edge1"><a xlink:href="dir_000012_000002.html" target="_top"> <g id="a_edge1"><a xlink:href="dir_000021_000005.html" target="_top">
<path fill="none" stroke="#63b8ff" d="M33,-55.08C33,-48.57 33,-39.42 33,-31.12"/> <path fill="none" stroke="#63b8ff" d="M33,-55.08C33,-48.57 33,-39.42 33,-31.12"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="36.5,-31.12 33,-21.12 29.5,-31.12 36.5,-31.12"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="36.5,-31.12 33,-21.12 29.5,-31.12 36.5,-31.12"/>
</a> </a>
</g> </g>
<g id="a_edge1&#45;headlabel"><a xlink:href="dir_000012_000002.html" target="_top" xlink:title="1"> <g id="a_edge1&#45;headlabel"><a xlink:href="dir_000021_000005.html" target="_top" xlink:title="3">
<text xml:space="preserve" text-anchor="middle" x="39.34" y="-29.33" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">1</text> <text xml:space="preserve" text-anchor="middle" x="39.34" y="-29.33" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">3</text>
</a> </a>
</g> </g>
</g> </g>

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 13.0.1 (20250615.1724) <!-- Generated by graphviz version 14.1.2 (20260124.0452)
--> -->
<!-- Title: src/lib/utils Pages: 1 --> <!-- Title: src/lib/utils Pages: 1 -->
<svg width="74pt" height="118pt" <svg width="74pt" height="118pt"
@@ -37,13 +37,13 @@
<!-- dir_87d18a4dc5174905bfd7d2dc734defe6&#45;&gt;dir_b0856f6b0d80ccb263b2f415c91f9e17 --> <!-- dir_87d18a4dc5174905bfd7d2dc734defe6&#45;&gt;dir_b0856f6b0d80ccb263b2f415c91f9e17 -->
<g id="edge1" class="edge"> <g id="edge1" class="edge">
<title>dir_87d18a4dc5174905bfd7d2dc734defe6&#45;&gt;dir_b0856f6b0d80ccb263b2f415c91f9e17</title> <title>dir_87d18a4dc5174905bfd7d2dc734defe6&#45;&gt;dir_b0856f6b0d80ccb263b2f415c91f9e17</title>
<g id="a_edge1"><a xlink:href="dir_000012_000002.html" target="_top"> <g id="a_edge1"><a xlink:href="dir_000021_000005.html" target="_top">
<path fill="none" stroke="#63b8ff" d="M33,-55.08C33,-48.57 33,-39.42 33,-31.12"/> <path fill="none" stroke="#63b8ff" d="M33,-55.08C33,-48.57 33,-39.42 33,-31.12"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="36.5,-31.12 33,-21.12 29.5,-31.12 36.5,-31.12"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="36.5,-31.12 33,-21.12 29.5,-31.12 36.5,-31.12"/>
</a> </a>
</g> </g>
<g id="a_edge1&#45;headlabel"><a xlink:href="dir_000012_000002.html" target="_top" xlink:title="1"> <g id="a_edge1&#45;headlabel"><a xlink:href="dir_000021_000005.html" target="_top" xlink:title="3">
<text xml:space="preserve" text-anchor="middle" x="39.34" y="-29.33" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">1</text> <text xml:space="preserve" text-anchor="middle" x="39.34" y="-29.33" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">3</text>
</a> </a>
</g> </g>
</g> </g>

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@@ -31,7 +31,7 @@
<tr id="projectrow"> <tr id="projectrow">
<td id="projectlogo"><img alt="Logo" src="Logo.png"/></td> <td id="projectlogo"><img alt="Logo" src="Logo.png"/></td>
<td id="projectalign"> <td id="projectalign">
<div id="projectname">stroid<span id="projectnumber">&#160;v0.2.0</span> <div id="projectname">stroid<span id="projectnumber">&#160;v0.6.0</span>
</div> </div>
<div id="projectbrief">Multi-block curvilinear mesh generation</div> <div id="projectbrief">Multi-block curvilinear mesh generation</div>
</td> </td>
@@ -116,6 +116,8 @@ Files</h2></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><span class="icondoc"></span>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="mapping_8cpp.html">mapping.cpp</a></td></tr> <tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><span class="icondoc"></span>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="mapping_8cpp.html">mapping.cpp</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><span class="icondoc"></span>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="optimize_8cpp.html">optimize.cpp</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><span class="icondoc"></span>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="topology_8cpp.html">topology.cpp</a></td></tr> <tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><span class="icondoc"></span>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="topology_8cpp.html">topology.cpp</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table> </table>

View File

@@ -2,5 +2,6 @@ var dir_936721fd6a792737eaef7358bcd49428 =
[ [
[ "curvilinear.cpp", "curvilinear_8cpp.html", "curvilinear_8cpp" ], [ "curvilinear.cpp", "curvilinear_8cpp.html", "curvilinear_8cpp" ],
[ "mapping.cpp", "mapping_8cpp.html", "mapping_8cpp" ], [ "mapping.cpp", "mapping_8cpp.html", "mapping_8cpp" ],
[ "optimize.cpp", "optimize_8cpp.html", "optimize_8cpp" ],
[ "topology.cpp", "topology_8cpp.html", "topology_8cpp" ] [ "topology.cpp", "topology_8cpp.html", "topology_8cpp" ]
]; ];

View File

@@ -1,7 +1,7 @@
<map id="src/lib/topology" name="src/lib/topology"> <map id="src/lib/topology" name="src/lib/topology">
<area shape="rect" id="node1" href="dir_936721fd6a792737eaef7358bcd49428.html" title="topology" alt="" coords="26,52,96,78"/> <area shape="rect" id="node1" href="dir_936721fd6a792737eaef7358bcd49428.html" title="topology" alt="" coords="26,52,96,78"/>
<area shape="rect" id="node2" href="dir_b0856f6b0d80ccb263b2f415c91f9e17.html" title="include" alt="" coords="30,126,92,152"/> <area shape="rect" id="node2" href="dir_b0856f6b0d80ccb263b2f415c91f9e17.html" title="include" alt="" coords="30,126,92,152"/>
<area shape="poly" id="edge1" href="dir_000010_000002.html" alt="" coords="64,78,64,110,59,110,59,78"/> <area shape="poly" id="edge1" href="dir_000019_000005.html" alt="" coords="63,76,64,111,59,110,60,80"/>
<area shape="rect" id="edge1-headlabel" href="dir_000010_000002.html" title="4" alt="" coords="66,100,73,115"/> <area shape="rect" id="edge1-headlabel" href="dir_000019_000005.html" title="6" alt="" coords="66,100,73,115"/>
<area shape="rect" id="clust1" href="dir_c85d3e3c5052e9ad9ce18c6863244a25.html" title="lib" alt="" coords="16,16,107,89"/> <area shape="rect" id="clust1" href="dir_c85d3e3c5052e9ad9ce18c6863244a25.html" title="lib" alt="" coords="16,16,107,89"/>
</map> </map>

View File

@@ -1 +1 @@
a6827e6f70050682b6d24a1b9d480500 d1afbfcf5c8f195778cd568bcc291c8f

View File

@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 13.0.1 (20250615.1724) <!-- Generated by graphviz version 14.1.2 (20260124.0452)
--> -->
<!-- Title: src/lib/topology Pages: 1 --> <!-- Title: src/lib/topology Pages: 1 -->
<svg width="92pt" height="118pt" <svg width="92pt" height="118pt"
@@ -48,13 +48,13 @@
<!-- dir_936721fd6a792737eaef7358bcd49428&#45;&gt;dir_b0856f6b0d80ccb263b2f415c91f9e17 --> <!-- dir_936721fd6a792737eaef7358bcd49428&#45;&gt;dir_b0856f6b0d80ccb263b2f415c91f9e17 -->
<g id="edge1" class="edge"> <g id="edge1" class="edge">
<title>dir_936721fd6a792737eaef7358bcd49428&#45;&gt;dir_b0856f6b0d80ccb263b2f415c91f9e17</title> <title>dir_936721fd6a792737eaef7358bcd49428&#45;&gt;dir_b0856f6b0d80ccb263b2f415c91f9e17</title>
<g id="a_edge1"><a xlink:href="dir_000010_000002.html" target="_top"> <g id="a_edge1"><a xlink:href="dir_000019_000005.html" target="_top">
<path fill="none" stroke="#63b8ff" d="M42,-55.08C42,-48.57 42,-39.42 42,-31.12"/> <path fill="none" stroke="#63b8ff" d="M42,-55.08C42,-48.57 42,-39.42 42,-31.12"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="45.5,-31.12 42,-21.12 38.5,-31.12 45.5,-31.12"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="45.5,-31.12 42,-21.12 38.5,-31.12 45.5,-31.12"/>
</a> </a>
</g> </g>
<g id="a_edge1&#45;headlabel"><a xlink:href="dir_000010_000002.html" target="_top" xlink:title="4"> <g id="a_edge1&#45;headlabel"><a xlink:href="dir_000019_000005.html" target="_top" xlink:title="6">
<text xml:space="preserve" text-anchor="middle" x="48.34" y="-29.33" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">4</text> <text xml:space="preserve" text-anchor="middle" x="48.34" y="-29.33" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">6</text>
</a> </a>
</g> </g>
</g> </g>

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 13.0.1 (20250615.1724) <!-- Generated by graphviz version 14.1.2 (20260124.0452)
--> -->
<!-- Title: src/lib/topology Pages: 1 --> <!-- Title: src/lib/topology Pages: 1 -->
<svg width="92pt" height="118pt" <svg width="92pt" height="118pt"
@@ -37,13 +37,13 @@
<!-- dir_936721fd6a792737eaef7358bcd49428&#45;&gt;dir_b0856f6b0d80ccb263b2f415c91f9e17 --> <!-- dir_936721fd6a792737eaef7358bcd49428&#45;&gt;dir_b0856f6b0d80ccb263b2f415c91f9e17 -->
<g id="edge1" class="edge"> <g id="edge1" class="edge">
<title>dir_936721fd6a792737eaef7358bcd49428&#45;&gt;dir_b0856f6b0d80ccb263b2f415c91f9e17</title> <title>dir_936721fd6a792737eaef7358bcd49428&#45;&gt;dir_b0856f6b0d80ccb263b2f415c91f9e17</title>
<g id="a_edge1"><a xlink:href="dir_000010_000002.html" target="_top"> <g id="a_edge1"><a xlink:href="dir_000019_000005.html" target="_top">
<path fill="none" stroke="#63b8ff" d="M42,-55.08C42,-48.57 42,-39.42 42,-31.12"/> <path fill="none" stroke="#63b8ff" d="M42,-55.08C42,-48.57 42,-39.42 42,-31.12"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="45.5,-31.12 42,-21.12 38.5,-31.12 45.5,-31.12"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="45.5,-31.12 42,-21.12 38.5,-31.12 45.5,-31.12"/>
</a> </a>
</g> </g>
<g id="a_edge1&#45;headlabel"><a xlink:href="dir_000010_000002.html" target="_top" xlink:title="4"> <g id="a_edge1&#45;headlabel"><a xlink:href="dir_000019_000005.html" target="_top" xlink:title="6">
<text xml:space="preserve" text-anchor="middle" x="48.34" y="-29.33" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">4</text> <text xml:space="preserve" text-anchor="middle" x="48.34" y="-29.33" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">6</text>
</a> </a>
</g> </g>
</g> </g>

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@@ -31,7 +31,7 @@
<tr id="projectrow"> <tr id="projectrow">
<td id="projectlogo"><img alt="Logo" src="Logo.png"/></td> <td id="projectlogo"><img alt="Logo" src="Logo.png"/></td>
<td id="projectalign"> <td id="projectalign">
<div id="projectname">stroid<span id="projectnumber">&#160;v0.2.0</span> <div id="projectname">stroid<span id="projectnumber">&#160;v0.6.0</span>
</div> </div>
<div id="projectbrief">Multi-block curvilinear mesh generation</div> <div id="projectbrief">Multi-block curvilinear mesh generation</div>
</td> </td>
@@ -107,13 +107,17 @@ $(function(){initNavTree('dir_9d5018b9ddb63a582aa4c6b91bec2f8c.html',''); initRe
<div class="dynheader"> <div class="dynheader">
Directory dependency graph for utils:</div> Directory dependency graph for utils:</div>
<div class="dyncontent"> <div class="dyncontent">
<div class="center"><iframe scrolling="no" frameborder="0" src="dir_9d5018b9ddb63a582aa4c6b91bec2f8c_dep.svg" width="99" height="106"><p><b>This browser is not able to show SVG: try Firefox, Chrome, Safari, or Opera instead.</b></p></iframe></div> <div class="center"><iframe scrolling="no" frameborder="0" src="dir_9d5018b9ddb63a582aa4c6b91bec2f8c_dep.svg" width="110" height="179"><p><b>This browser is not able to show SVG: try Firefox, Chrome, Safari, or Opera instead.</b></p></iframe></div>
</div> </div>
<table class="memberdecls"> <table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="files" name="files"></a> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="files" name="files"></a>
Files</h2></td></tr> Files</h2></td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><span class="icondoc"></span>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="mesh__stats_8h.html">mesh_stats.h</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><span class="icondoc"></span>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="mesh__utils_8h.html">mesh_utils.h</a></td></tr> <tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><span class="icondoc"></span>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="mesh__utils_8h.html">mesh_utils.h</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><span class="icondoc"></span>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="types_8h.html">types.h</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table> </table>
</div><!-- contents --> </div><!-- contents -->
</div><!-- doc-content --> </div><!-- doc-content -->

View File

@@ -1,4 +1,6 @@
var dir_9d5018b9ddb63a582aa4c6b91bec2f8c = var dir_9d5018b9ddb63a582aa4c6b91bec2f8c =
[ [
[ "mesh_utils.h", "mesh__utils_8h.html", "mesh__utils_8h" ] [ "mesh_stats.h", "mesh__stats_8h.html", "mesh__stats_8h" ],
[ "mesh_utils.h", "mesh__utils_8h.html", "mesh__utils_8h" ],
[ "types.h", "types_8h.html", "types_8h" ]
]; ];

View File

@@ -1,4 +1,7 @@
<map id="src/include/stroid/utils" name="src/include/stroid/utils"> <map id="src/include/stroid/utils" name="src/include/stroid/utils">
<area shape="rect" id="node1" href="dir_9d5018b9ddb63a582aa4c6b91bec2f8c.html" title="utils" alt="" coords="27,52,72,78"/> <area shape="rect" id="node1" href="dir_dc36fd7496f87f6989d6d6a9445d600c.html" title="config" alt="" coords="26,126,83,152"/>
<area shape="rect" id="clust1" href="dir_3f4f28e99864f6e7d54ad0c93ce0a2a5.html" title="stroid" alt="" coords="16,16,83,89"/> <area shape="rect" id="node2" href="dir_9d5018b9ddb63a582aa4c6b91bec2f8c.html" title="utils" alt="" coords="32,52,77,78"/>
<area shape="poly" id="edge1" href="dir_000020_000000.html" alt="" coords="56,76,57,111,52,110,53,81"/>
<area shape="rect" id="edge1-headlabel" href="dir_000020_000000.html" title="3" alt="" coords="60,100,67,115"/>
<area shape="rect" id="clust1" href="dir_3f4f28e99864f6e7d54ad0c93ce0a2a5.html" title="stroid" alt="" coords="16,16,93,162"/>
</map> </map>

View File

@@ -1 +1 @@
df55410125b942793bb664278575ee94 5844954aa4f7a89b3299a9003b4cf928

View File

@@ -1,11 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 13.0.1 (20250615.1724) <!-- Generated by graphviz version 14.1.2 (20260124.0452)
--> -->
<!-- Title: src/include/stroid/utils Pages: 1 --> <!-- Title: src/include/stroid/utils Pages: 1 -->
<svg width="74pt" height="79pt" <svg width="82pt" height="134pt"
viewBox="0.00 0.00 74.00 79.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> viewBox="0.00 0.00 82.00 134.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<svg id="main" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve"> <svg id="main" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve">
@@ -17,22 +17,44 @@
]]></style> ]]></style>
<script type="application/ecmascript" xlink:href="svg.min.js"/> <script type="application/ecmascript" xlink:href="svg.min.js"/>
<svg id="graph" class="graph"> <svg id="graph" class="graph">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 74.5)"> <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 129.75)">
<title>src/include/stroid/utils</title> <title>src/include/stroid/utils</title>
<g id="clust1" class="cluster"> <g id="clust1" class="cluster">
<title>clusterdir_3f4f28e99864f6e7d54ad0c93ce0a2a5</title> <title>clusterdir_3f4f28e99864f6e7d54ad0c93ce0a2a5</title>
<g id="a_clust1"><a xlink:href="dir_3f4f28e99864f6e7d54ad0c93ce0a2a5.html" target="_top" xlink:title="stroid"> <g id="a_clust1"><a xlink:href="dir_3f4f28e99864f6e7d54ad0c93ce0a2a5.html" target="_top" xlink:title="stroid">
<polygon fill="#edf0f7" stroke="#7f7f7f" stroke-dasharray="5,2" points="8,-8 8,-62.5 58,-62.5 58,-8 8,-8"/> <polygon fill="#edf0f7" stroke="#7f7f7f" stroke-dasharray="5,2" points="8,-8 8,-117.75 66,-117.75 66,-8 8,-8"/>
<text xml:space="preserve" text-anchor="middle" x="33" y="-49" font-family="Helvetica,sans-Serif" font-size="10.00">stroid</text> <text xml:space="preserve" text-anchor="middle" x="37" y="-104.25" font-family="Helvetica,sans-Serif" font-size="10.00">stroid</text>
</a>
</g>
</g>
<!-- dir_dc36fd7496f87f6989d6d6a9445d600c -->
<g id="node1" class="node">
<title>dir_dc36fd7496f87f6989d6d6a9445d600c</title>
<g id="a_node1"><a xlink:href="dir_dc36fd7496f87f6989d6d6a9445d600c.html" target="_top" xlink:title="config">
<polygon fill="#a2b4d6" stroke="#404040" points="58.12,-35.25 15.88,-35.25 15.88,-16 58.12,-16 58.12,-35.25"/>
<text xml:space="preserve" text-anchor="middle" x="37" y="-21.75" font-family="Helvetica,sans-Serif" font-size="10.00">config</text>
</a> </a>
</g> </g>
</g> </g>
<!-- dir_9d5018b9ddb63a582aa4c6b91bec2f8c --> <!-- dir_9d5018b9ddb63a582aa4c6b91bec2f8c -->
<g id="node1" class="node"> <g id="node2" class="node">
<title>dir_9d5018b9ddb63a582aa4c6b91bec2f8c</title> <title>dir_9d5018b9ddb63a582aa4c6b91bec2f8c</title>
<g id="a_node1"><a xlink:href="dir_9d5018b9ddb63a582aa4c6b91bec2f8c.html" target="_top" xlink:title="utils"> <g id="a_node2"><a xlink:href="dir_9d5018b9ddb63a582aa4c6b91bec2f8c.html" target="_top" xlink:title="utils">
<polygon fill="#edf0f7" stroke="#404040" stroke-width="2" points="50,-35.25 16,-35.25 16,-16 50,-16 50,-35.25"/> <polygon fill="#edf0f7" stroke="#404040" stroke-width="2" points="54,-90.5 20,-90.5 20,-71.25 54,-71.25 54,-90.5"/>
<text xml:space="preserve" text-anchor="middle" x="33" y="-21.75" font-family="Helvetica,sans-Serif" font-size="10.00">utils</text> <text xml:space="preserve" text-anchor="middle" x="37" y="-77" font-family="Helvetica,sans-Serif" font-size="10.00">utils</text>
</a>
</g>
</g>
<!-- dir_9d5018b9ddb63a582aa4c6b91bec2f8c&#45;&gt;dir_dc36fd7496f87f6989d6d6a9445d600c -->
<g id="edge1" class="edge">
<title>dir_9d5018b9ddb63a582aa4c6b91bec2f8c&#45;&gt;dir_dc36fd7496f87f6989d6d6a9445d600c</title>
<g id="a_edge1"><a xlink:href="dir_000020_000000.html" target="_top">
<path fill="none" stroke="#63b8ff" d="M37,-71.08C37,-64.57 37,-55.42 37,-47.12"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="40.5,-47.12 37,-37.12 33.5,-47.12 40.5,-47.12"/>
</a>
</g>
<g id="a_edge1&#45;headlabel"><a xlink:href="dir_000020_000000.html" target="_top" xlink:title="3">
<text xml:space="preserve" text-anchor="middle" x="43.34" y="-45.33" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">3</text>
</a> </a>
</g> </g>
</g> </g>

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@@ -1,27 +1,49 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 13.0.1 (20250615.1724) <!-- Generated by graphviz version 14.1.2 (20260124.0452)
--> -->
<!-- Title: src/include/stroid/utils Pages: 1 --> <!-- Title: src/include/stroid/utils Pages: 1 -->
<svg width="74pt" height="79pt" <svg width="82pt" height="134pt"
viewBox="0.00 0.00 74.00 79.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> viewBox="0.00 0.00 82.00 134.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 74.5)"> <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 129.75)">
<title>src/include/stroid/utils</title> <title>src/include/stroid/utils</title>
<g id="clust1" class="cluster"> <g id="clust1" class="cluster">
<title>clusterdir_3f4f28e99864f6e7d54ad0c93ce0a2a5</title> <title>clusterdir_3f4f28e99864f6e7d54ad0c93ce0a2a5</title>
<g id="a_clust1"><a xlink:href="dir_3f4f28e99864f6e7d54ad0c93ce0a2a5.html" target="_top" xlink:title="stroid"> <g id="a_clust1"><a xlink:href="dir_3f4f28e99864f6e7d54ad0c93ce0a2a5.html" target="_top" xlink:title="stroid">
<polygon fill="#edf0f7" stroke="#7f7f7f" stroke-dasharray="5,2" points="8,-8 8,-62.5 58,-62.5 58,-8 8,-8"/> <polygon fill="#edf0f7" stroke="#7f7f7f" stroke-dasharray="5,2" points="8,-8 8,-117.75 66,-117.75 66,-8 8,-8"/>
<text xml:space="preserve" text-anchor="middle" x="33" y="-49" font-family="Helvetica,sans-Serif" font-size="10.00">stroid</text> <text xml:space="preserve" text-anchor="middle" x="37" y="-104.25" font-family="Helvetica,sans-Serif" font-size="10.00">stroid</text>
</a>
</g>
</g>
<!-- dir_dc36fd7496f87f6989d6d6a9445d600c -->
<g id="node1" class="node">
<title>dir_dc36fd7496f87f6989d6d6a9445d600c</title>
<g id="a_node1"><a xlink:href="dir_dc36fd7496f87f6989d6d6a9445d600c.html" target="_top" xlink:title="config">
<polygon fill="#a2b4d6" stroke="#404040" points="58.12,-35.25 15.88,-35.25 15.88,-16 58.12,-16 58.12,-35.25"/>
<text xml:space="preserve" text-anchor="middle" x="37" y="-21.75" font-family="Helvetica,sans-Serif" font-size="10.00">config</text>
</a> </a>
</g> </g>
</g> </g>
<!-- dir_9d5018b9ddb63a582aa4c6b91bec2f8c --> <!-- dir_9d5018b9ddb63a582aa4c6b91bec2f8c -->
<g id="node1" class="node"> <g id="node2" class="node">
<title>dir_9d5018b9ddb63a582aa4c6b91bec2f8c</title> <title>dir_9d5018b9ddb63a582aa4c6b91bec2f8c</title>
<g id="a_node1"><a xlink:href="dir_9d5018b9ddb63a582aa4c6b91bec2f8c.html" target="_top" xlink:title="utils"> <g id="a_node2"><a xlink:href="dir_9d5018b9ddb63a582aa4c6b91bec2f8c.html" target="_top" xlink:title="utils">
<polygon fill="#edf0f7" stroke="#404040" stroke-width="2" points="50,-35.25 16,-35.25 16,-16 50,-16 50,-35.25"/> <polygon fill="#edf0f7" stroke="#404040" stroke-width="2" points="54,-90.5 20,-90.5 20,-71.25 54,-71.25 54,-90.5"/>
<text xml:space="preserve" text-anchor="middle" x="33" y="-21.75" font-family="Helvetica,sans-Serif" font-size="10.00">utils</text> <text xml:space="preserve" text-anchor="middle" x="37" y="-77" font-family="Helvetica,sans-Serif" font-size="10.00">utils</text>
</a>
</g>
</g>
<!-- dir_9d5018b9ddb63a582aa4c6b91bec2f8c&#45;&gt;dir_dc36fd7496f87f6989d6d6a9445d600c -->
<g id="edge1" class="edge">
<title>dir_9d5018b9ddb63a582aa4c6b91bec2f8c&#45;&gt;dir_dc36fd7496f87f6989d6d6a9445d600c</title>
<g id="a_edge1"><a xlink:href="dir_000020_000000.html" target="_top">
<path fill="none" stroke="#63b8ff" d="M37,-71.08C37,-64.57 37,-55.42 37,-47.12"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="40.5,-47.12 37,-37.12 33.5,-47.12 40.5,-47.12"/>
</a>
</g>
<g id="a_edge1&#45;headlabel"><a xlink:href="dir_000020_000000.html" target="_top" xlink:title="3">
<text xml:space="preserve" text-anchor="middle" x="43.34" y="-45.33" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">3</text>
</a> </a>
</g> </g>
</g> </g>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@@ -31,7 +31,7 @@
<tr id="projectrow"> <tr id="projectrow">
<td id="projectlogo"><img alt="Logo" src="Logo.png"/></td> <td id="projectlogo"><img alt="Logo" src="Logo.png"/></td>
<td id="projectalign"> <td id="projectalign">
<div id="projectname">stroid<span id="projectnumber">&#160;v0.2.0</span> <div id="projectname">stroid<span id="projectnumber">&#160;v0.6.0</span>
</div> </div>
<div id="projectbrief">Multi-block curvilinear mesh generation</div> <div id="projectbrief">Multi-block curvilinear mesh generation</div>
</td> </td>
@@ -107,7 +107,7 @@ $(function(){initNavTree('dir_9da86e8abab39b749c6020360d8e4403.html',''); initRe
<div class="dynheader"> <div class="dynheader">
Directory dependency graph for topology:</div> Directory dependency graph for topology:</div>
<div class="dyncontent"> <div class="dyncontent">
<div class="center"><iframe scrolling="no" frameborder="0" src="dir_9da86e8abab39b749c6020360d8e4403_dep.svg" width="123" height="179"><p><b>This browser is not able to show SVG: try Firefox, Chrome, Safari, or Opera instead.</b></p></iframe></div> <div class="center"><iframe scrolling="no" frameborder="0" src="dir_9da86e8abab39b749c6020360d8e4403_dep.svg" width="179" height="179"><p><b>This browser is not able to show SVG: try Firefox, Chrome, Safari, or Opera instead.</b></p></iframe></div>
</div> </div>
<table class="memberdecls"> <table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="files" name="files"></a> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="files" name="files"></a>
@@ -116,6 +116,8 @@ Files</h2></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><span class="icondoc"></span>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="mapping_8h.html">mapping.h</a></td></tr> <tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><span class="icondoc"></span>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="mapping_8h.html">mapping.h</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><span class="icondoc"></span>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="optimize_8h.html">optimize.h</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><span class="icondoc"></span>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="topology_8h.html">topology.h</a></td></tr> <tr class="memitem:"><td class="memItemLeft" align="right" valign="top"><span class="icondoc"></span>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="topology_8h.html">topology.h</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table> </table>

View File

@@ -2,5 +2,6 @@ var dir_9da86e8abab39b749c6020360d8e4403 =
[ [
[ "curvilinear.h", "curvilinear_8h.html", "curvilinear_8h" ], [ "curvilinear.h", "curvilinear_8h.html", "curvilinear_8h" ],
[ "mapping.h", "mapping_8h.html", "mapping_8h" ], [ "mapping.h", "mapping_8h.html", "mapping_8h" ],
[ "optimize.h", "optimize_8h.html", "optimize_8h" ],
[ "topology.h", "topology_8h.html", "topology_8h" ] [ "topology.h", "topology_8h.html", "topology_8h" ]
]; ];

View File

@@ -1,7 +1,10 @@
<map id="src/include/stroid/topology" name="src/include/stroid/topology"> <map id="src/include/stroid/topology" name="src/include/stroid/topology">
<area shape="rect" id="node1" href="dir_dc36fd7496f87f6989d6d6a9445d600c.html" title="config" alt="" coords="33,126,90,152"/> <area shape="rect" id="node1" href="dir_9d5018b9ddb63a582aa4c6b91bec2f8c.html" title="utils" alt="" coords="27,126,72,152"/>
<area shape="rect" id="node2" href="dir_9da86e8abab39b749c6020360d8e4403.html" title="topology" alt="" coords="26,52,96,78"/> <area shape="rect" id="node2" href="dir_dc36fd7496f87f6989d6d6a9445d600c.html" title="config" alt="" coords="96,126,152,152"/>
<area shape="poly" id="edge1" href="dir_000009_000000.html" alt="" coords="64,78,64,110,59,110,59,78"/> <area shape="rect" id="node3" href="dir_9da86e8abab39b749c6020360d8e4403.html" title="topology" alt="" coords="54,52,124,78"/>
<area shape="rect" id="edge1-headlabel" href="dir_000009_000000.html" title="3" alt="" coords="66,100,73,115"/> <area shape="poly" id="edge1" href="dir_000018_000020.html" alt="" coords="85,76,66,114,61,111,81,80"/>
<area shape="rect" id="clust1" href="dir_3f4f28e99864f6e7d54ad0c93ce0a2a5.html" title="stroid" alt="" coords="16,16,107,162"/> <area shape="rect" id="edge1-headlabel" href="dir_000018_000020.html" title="1" alt="" coords="69,106,76,121"/>
<area shape="poly" id="edge2" href="dir_000018_000000.html" alt="" coords="96,76,114,112,109,112,94,81"/>
<area shape="rect" id="edge2-headlabel" href="dir_000018_000000.html" title="4" alt="" coords="114,98,121,113"/>
<area shape="rect" id="clust1" href="dir_3f4f28e99864f6e7d54ad0c93ce0a2a5.html" title="stroid" alt="" coords="16,16,163,162"/>
</map> </map>

View File

@@ -1 +1 @@
19d94e8bef8dac3ca0c5b36cb64c7024 f5fed5f3256b8c95b6bf5a446e11525a

View File

@@ -1,11 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 13.0.1 (20250615.1724) <!-- Generated by graphviz version 14.1.2 (20260124.0452)
--> -->
<!-- Title: src/include/stroid/topology Pages: 1 --> <!-- Title: src/include/stroid/topology Pages: 1 -->
<svg width="92pt" height="134pt" <svg width="134pt" height="134pt"
viewBox="0.00 0.00 92.00 134.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> viewBox="0.00 0.00 134.00 134.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<svg id="main" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve"> <svg id="main" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve">
@@ -22,39 +22,61 @@
<g id="clust1" class="cluster"> <g id="clust1" class="cluster">
<title>clusterdir_3f4f28e99864f6e7d54ad0c93ce0a2a5</title> <title>clusterdir_3f4f28e99864f6e7d54ad0c93ce0a2a5</title>
<g id="a_clust1"><a xlink:href="dir_3f4f28e99864f6e7d54ad0c93ce0a2a5.html" target="_top" xlink:title="stroid"> <g id="a_clust1"><a xlink:href="dir_3f4f28e99864f6e7d54ad0c93ce0a2a5.html" target="_top" xlink:title="stroid">
<polygon fill="#edf0f7" stroke="#7f7f7f" stroke-dasharray="5,2" points="8,-8 8,-117.75 76,-117.75 76,-8 8,-8"/> <polygon fill="#edf0f7" stroke="#7f7f7f" stroke-dasharray="5,2" points="8,-8 8,-117.75 118,-117.75 118,-8 8,-8"/>
<text xml:space="preserve" text-anchor="middle" x="42" y="-104.25" font-family="Helvetica,sans-Serif" font-size="10.00">stroid</text> <text xml:space="preserve" text-anchor="middle" x="63" y="-104.25" font-family="Helvetica,sans-Serif" font-size="10.00">stroid</text>
</a>
</g>
</g>
<!-- dir_9d5018b9ddb63a582aa4c6b91bec2f8c -->
<g id="node1" class="node">
<title>dir_9d5018b9ddb63a582aa4c6b91bec2f8c</title>
<g id="a_node1"><a xlink:href="dir_9d5018b9ddb63a582aa4c6b91bec2f8c.html" target="_top" xlink:title="utils">
<polygon fill="#a2b4d6" stroke="#404040" points="50,-35.25 16,-35.25 16,-16 50,-16 50,-35.25"/>
<text xml:space="preserve" text-anchor="middle" x="33" y="-21.75" font-family="Helvetica,sans-Serif" font-size="10.00">utils</text>
</a> </a>
</g> </g>
</g> </g>
<!-- dir_dc36fd7496f87f6989d6d6a9445d600c --> <!-- dir_dc36fd7496f87f6989d6d6a9445d600c -->
<g id="node1" class="node"> <g id="node2" class="node">
<title>dir_dc36fd7496f87f6989d6d6a9445d600c</title> <title>dir_dc36fd7496f87f6989d6d6a9445d600c</title>
<g id="a_node1"><a xlink:href="dir_dc36fd7496f87f6989d6d6a9445d600c.html" target="_top" xlink:title="config"> <g id="a_node2"><a xlink:href="dir_dc36fd7496f87f6989d6d6a9445d600c.html" target="_top" xlink:title="config">
<polygon fill="#a2b4d6" stroke="#404040" points="63.12,-35.25 20.88,-35.25 20.88,-16 63.12,-16 63.12,-35.25"/> <polygon fill="#a2b4d6" stroke="#404040" points="110.12,-35.25 67.88,-35.25 67.88,-16 110.12,-16 110.12,-35.25"/>
<text xml:space="preserve" text-anchor="middle" x="42" y="-21.75" font-family="Helvetica,sans-Serif" font-size="10.00">config</text> <text xml:space="preserve" text-anchor="middle" x="89" y="-21.75" font-family="Helvetica,sans-Serif" font-size="10.00">config</text>
</a> </a>
</g> </g>
</g> </g>
<!-- dir_9da86e8abab39b749c6020360d8e4403 --> <!-- dir_9da86e8abab39b749c6020360d8e4403 -->
<g id="node2" class="node"> <g id="node3" class="node">
<title>dir_9da86e8abab39b749c6020360d8e4403</title> <title>dir_9da86e8abab39b749c6020360d8e4403</title>
<g id="a_node2"><a xlink:href="dir_9da86e8abab39b749c6020360d8e4403.html" target="_top" xlink:title="topology"> <g id="a_node3"><a xlink:href="dir_9da86e8abab39b749c6020360d8e4403.html" target="_top" xlink:title="topology">
<polygon fill="#edf0f7" stroke="#404040" stroke-width="2" points="68.38,-90.5 15.62,-90.5 15.62,-71.25 68.38,-71.25 68.38,-90.5"/> <polygon fill="#edf0f7" stroke="#404040" stroke-width="2" points="89.38,-90.5 36.62,-90.5 36.62,-71.25 89.38,-71.25 89.38,-90.5"/>
<text xml:space="preserve" text-anchor="middle" x="42" y="-77" font-family="Helvetica,sans-Serif" font-size="10.00">topology</text> <text xml:space="preserve" text-anchor="middle" x="63" y="-77" font-family="Helvetica,sans-Serif" font-size="10.00">topology</text>
</a>
</g>
</g>
<!-- dir_9da86e8abab39b749c6020360d8e4403&#45;&gt;dir_9d5018b9ddb63a582aa4c6b91bec2f8c -->
<g id="edge1" class="edge">
<title>dir_9da86e8abab39b749c6020360d8e4403&#45;&gt;dir_9d5018b9ddb63a582aa4c6b91bec2f8c</title>
<g id="a_edge1"><a xlink:href="dir_000018_000020.html" target="_top">
<path fill="none" stroke="#63b8ff" d="M58.05,-71.08C54.12,-64.11 48.49,-54.12 43.56,-45.37"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="46.76,-43.92 38.8,-36.93 40.66,-47.36 46.76,-43.92"/>
</a>
</g>
<g id="a_edge1&#45;headlabel"><a xlink:href="dir_000018_000020.html" target="_top" xlink:title="1">
<text xml:space="preserve" text-anchor="middle" x="50.26" y="-40.47" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">1</text>
</a> </a>
</g> </g>
</g> </g>
<!-- dir_9da86e8abab39b749c6020360d8e4403&#45;&gt;dir_dc36fd7496f87f6989d6d6a9445d600c --> <!-- dir_9da86e8abab39b749c6020360d8e4403&#45;&gt;dir_dc36fd7496f87f6989d6d6a9445d600c -->
<g id="edge1" class="edge"> <g id="edge2" class="edge">
<title>dir_9da86e8abab39b749c6020360d8e4403&#45;&gt;dir_dc36fd7496f87f6989d6d6a9445d600c</title> <title>dir_9da86e8abab39b749c6020360d8e4403&#45;&gt;dir_dc36fd7496f87f6989d6d6a9445d600c</title>
<g id="a_edge1"><a xlink:href="dir_000009_000000.html" target="_top"> <g id="a_edge2"><a xlink:href="dir_000018_000000.html" target="_top">
<path fill="none" stroke="#63b8ff" d="M42,-71.08C42,-64.57 42,-55.42 42,-47.12"/> <path fill="none" stroke="#63b8ff" d="M67.29,-71.08C70.62,-64.26 75.36,-54.56 79.56,-45.95"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="45.5,-47.12 42,-37.12 38.5,-47.12 45.5,-47.12"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="82.71,-47.49 83.95,-36.97 76.42,-44.42 82.71,-47.49"/>
</a> </a>
</g> </g>
<g id="a_edge1&#45;headlabel"><a xlink:href="dir_000009_000000.html" target="_top" xlink:title="3"> <g id="a_edge2&#45;headlabel"><a xlink:href="dir_000018_000000.html" target="_top" xlink:title="4">
<text xml:space="preserve" text-anchor="middle" x="48.34" y="-45.33" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">3</text> <text xml:space="preserve" text-anchor="middle" x="84.35" y="-46.73" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">4</text>
</a> </a>
</g> </g>
</g> </g>

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 4.7 KiB

View File

@@ -1,49 +1,71 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 13.0.1 (20250615.1724) <!-- Generated by graphviz version 14.1.2 (20260124.0452)
--> -->
<!-- Title: src/include/stroid/topology Pages: 1 --> <!-- Title: src/include/stroid/topology Pages: 1 -->
<svg width="92pt" height="134pt" <svg width="134pt" height="134pt"
viewBox="0.00 0.00 92.00 134.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> viewBox="0.00 0.00 134.00 134.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 129.75)"> <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 129.75)">
<title>src/include/stroid/topology</title> <title>src/include/stroid/topology</title>
<g id="clust1" class="cluster"> <g id="clust1" class="cluster">
<title>clusterdir_3f4f28e99864f6e7d54ad0c93ce0a2a5</title> <title>clusterdir_3f4f28e99864f6e7d54ad0c93ce0a2a5</title>
<g id="a_clust1"><a xlink:href="dir_3f4f28e99864f6e7d54ad0c93ce0a2a5.html" target="_top" xlink:title="stroid"> <g id="a_clust1"><a xlink:href="dir_3f4f28e99864f6e7d54ad0c93ce0a2a5.html" target="_top" xlink:title="stroid">
<polygon fill="#edf0f7" stroke="#7f7f7f" stroke-dasharray="5,2" points="8,-8 8,-117.75 76,-117.75 76,-8 8,-8"/> <polygon fill="#edf0f7" stroke="#7f7f7f" stroke-dasharray="5,2" points="8,-8 8,-117.75 118,-117.75 118,-8 8,-8"/>
<text xml:space="preserve" text-anchor="middle" x="42" y="-104.25" font-family="Helvetica,sans-Serif" font-size="10.00">stroid</text> <text xml:space="preserve" text-anchor="middle" x="63" y="-104.25" font-family="Helvetica,sans-Serif" font-size="10.00">stroid</text>
</a>
</g>
</g>
<!-- dir_9d5018b9ddb63a582aa4c6b91bec2f8c -->
<g id="node1" class="node">
<title>dir_9d5018b9ddb63a582aa4c6b91bec2f8c</title>
<g id="a_node1"><a xlink:href="dir_9d5018b9ddb63a582aa4c6b91bec2f8c.html" target="_top" xlink:title="utils">
<polygon fill="#a2b4d6" stroke="#404040" points="50,-35.25 16,-35.25 16,-16 50,-16 50,-35.25"/>
<text xml:space="preserve" text-anchor="middle" x="33" y="-21.75" font-family="Helvetica,sans-Serif" font-size="10.00">utils</text>
</a> </a>
</g> </g>
</g> </g>
<!-- dir_dc36fd7496f87f6989d6d6a9445d600c --> <!-- dir_dc36fd7496f87f6989d6d6a9445d600c -->
<g id="node1" class="node"> <g id="node2" class="node">
<title>dir_dc36fd7496f87f6989d6d6a9445d600c</title> <title>dir_dc36fd7496f87f6989d6d6a9445d600c</title>
<g id="a_node1"><a xlink:href="dir_dc36fd7496f87f6989d6d6a9445d600c.html" target="_top" xlink:title="config"> <g id="a_node2"><a xlink:href="dir_dc36fd7496f87f6989d6d6a9445d600c.html" target="_top" xlink:title="config">
<polygon fill="#a2b4d6" stroke="#404040" points="63.12,-35.25 20.88,-35.25 20.88,-16 63.12,-16 63.12,-35.25"/> <polygon fill="#a2b4d6" stroke="#404040" points="110.12,-35.25 67.88,-35.25 67.88,-16 110.12,-16 110.12,-35.25"/>
<text xml:space="preserve" text-anchor="middle" x="42" y="-21.75" font-family="Helvetica,sans-Serif" font-size="10.00">config</text> <text xml:space="preserve" text-anchor="middle" x="89" y="-21.75" font-family="Helvetica,sans-Serif" font-size="10.00">config</text>
</a> </a>
</g> </g>
</g> </g>
<!-- dir_9da86e8abab39b749c6020360d8e4403 --> <!-- dir_9da86e8abab39b749c6020360d8e4403 -->
<g id="node2" class="node"> <g id="node3" class="node">
<title>dir_9da86e8abab39b749c6020360d8e4403</title> <title>dir_9da86e8abab39b749c6020360d8e4403</title>
<g id="a_node2"><a xlink:href="dir_9da86e8abab39b749c6020360d8e4403.html" target="_top" xlink:title="topology"> <g id="a_node3"><a xlink:href="dir_9da86e8abab39b749c6020360d8e4403.html" target="_top" xlink:title="topology">
<polygon fill="#edf0f7" stroke="#404040" stroke-width="2" points="68.38,-90.5 15.62,-90.5 15.62,-71.25 68.38,-71.25 68.38,-90.5"/> <polygon fill="#edf0f7" stroke="#404040" stroke-width="2" points="89.38,-90.5 36.62,-90.5 36.62,-71.25 89.38,-71.25 89.38,-90.5"/>
<text xml:space="preserve" text-anchor="middle" x="42" y="-77" font-family="Helvetica,sans-Serif" font-size="10.00">topology</text> <text xml:space="preserve" text-anchor="middle" x="63" y="-77" font-family="Helvetica,sans-Serif" font-size="10.00">topology</text>
</a>
</g>
</g>
<!-- dir_9da86e8abab39b749c6020360d8e4403&#45;&gt;dir_9d5018b9ddb63a582aa4c6b91bec2f8c -->
<g id="edge1" class="edge">
<title>dir_9da86e8abab39b749c6020360d8e4403&#45;&gt;dir_9d5018b9ddb63a582aa4c6b91bec2f8c</title>
<g id="a_edge1"><a xlink:href="dir_000018_000020.html" target="_top">
<path fill="none" stroke="#63b8ff" d="M58.05,-71.08C54.12,-64.11 48.49,-54.12 43.56,-45.37"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="46.76,-43.92 38.8,-36.93 40.66,-47.36 46.76,-43.92"/>
</a>
</g>
<g id="a_edge1&#45;headlabel"><a xlink:href="dir_000018_000020.html" target="_top" xlink:title="1">
<text xml:space="preserve" text-anchor="middle" x="50.26" y="-40.47" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">1</text>
</a> </a>
</g> </g>
</g> </g>
<!-- dir_9da86e8abab39b749c6020360d8e4403&#45;&gt;dir_dc36fd7496f87f6989d6d6a9445d600c --> <!-- dir_9da86e8abab39b749c6020360d8e4403&#45;&gt;dir_dc36fd7496f87f6989d6d6a9445d600c -->
<g id="edge1" class="edge"> <g id="edge2" class="edge">
<title>dir_9da86e8abab39b749c6020360d8e4403&#45;&gt;dir_dc36fd7496f87f6989d6d6a9445d600c</title> <title>dir_9da86e8abab39b749c6020360d8e4403&#45;&gt;dir_dc36fd7496f87f6989d6d6a9445d600c</title>
<g id="a_edge1"><a xlink:href="dir_000009_000000.html" target="_top"> <g id="a_edge2"><a xlink:href="dir_000018_000000.html" target="_top">
<path fill="none" stroke="#63b8ff" d="M42,-71.08C42,-64.57 42,-55.42 42,-47.12"/> <path fill="none" stroke="#63b8ff" d="M67.29,-71.08C70.62,-64.26 75.36,-54.56 79.56,-45.95"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="45.5,-47.12 42,-37.12 38.5,-47.12 45.5,-47.12"/> <polygon fill="#63b8ff" stroke="#63b8ff" points="82.71,-47.49 83.95,-36.97 76.42,-44.42 82.71,-47.49"/>
</a> </a>
</g> </g>
<g id="a_edge1&#45;headlabel"><a xlink:href="dir_000009_000000.html" target="_top" xlink:title="3"> <g id="a_edge2&#45;headlabel"><a xlink:href="dir_000018_000000.html" target="_top" xlink:title="4">
<text xml:space="preserve" text-anchor="middle" x="48.34" y="-45.33" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">3</text> <text xml:space="preserve" text-anchor="middle" x="84.35" y="-46.73" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#63b8ff">4</text>
</a> </a>
</g> </g>
</g> </g>

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

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