Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update from gudhi #20

Merged
merged 10 commits into from
Sep 23, 2024
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions _tempita_grid_gen.py
hschreiber marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
"np.float32",
None,
"f32",
"Finitely_critical_multi_filtration[float]",
"One_critical_filtration[float]",
),
(
"SimplicialVineGraphTruc",
Expand All @@ -74,7 +74,7 @@
"np.float32",
None,
"f32",
"Finitely_critical_multi_filtration[float]",
"One_critical_filtration[float]",
),
(
"SimplicialVineMatrixTruc<>",
Expand All @@ -87,7 +87,7 @@
"np.float32",
None,
"f32",
"Finitely_critical_multi_filtration[float]",
"One_critical_filtration[float]",
),
(
"SimplicialNoVineMatrixTruc<>",
Expand All @@ -100,7 +100,7 @@
"np.float32",
None,
"f32",
"Finitely_critical_multi_filtration[float]",
"One_critical_filtration[float]",
),
]

Expand All @@ -115,9 +115,9 @@ def get_slicer(is_vine, is_kcritical, value_type, column_type):
IS_KCRITICAL = is_kcritical
FILTRATION_TYPE = (
(
"KCriticalFiltration"
"Multi_critical_filtration"
if is_kcritical
else "Finitely_critical_multi_filtration"
else "One_critical_filtration"
)
+ "["
+ ctype
Expand Down Expand Up @@ -157,9 +157,9 @@ def get_slicer(is_vine, is_kcritical, value_type, column_type):

Filtrations_types = [
(
("KCriticalFiltration", True)
("Multi_critical_filtration", True)
if kcritical
else ("Finitely_critical_multi_filtration", False)
else ("One_critical_filtration", False)
)
for kcritical in kcritical_options
]
Expand Down
49 changes: 24 additions & 25 deletions docs/notebooks/degree_rips_interface.ipynb

Large diffs are not rendered by default.

Loading
Loading