multipers 2.2.3__cp311-cp311-win_amd64.whl → 2.3.1__cp311-cp311-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of multipers might be problematic. Click here for more details.
- multipers/__init__.py +33 -31
- multipers/_signed_measure_meta.py +430 -430
- multipers/_slicer_meta.py +211 -212
- multipers/data/MOL2.py +458 -458
- multipers/data/UCR.py +18 -18
- multipers/data/graphs.py +466 -466
- multipers/data/immuno_regions.py +27 -27
- multipers/data/pytorch2simplextree.py +90 -90
- multipers/data/shape3d.py +101 -101
- multipers/data/synthetic.py +113 -111
- multipers/distances.py +198 -198
- multipers/filtration_conversions.pxd.tp +84 -84
- multipers/filtrations/__init__.py +18 -0
- multipers/{ml/convolutions.py → filtrations/density.py} +563 -520
- multipers/filtrations/filtrations.py +289 -0
- multipers/filtrations.pxd +224 -224
- multipers/function_rips.cp311-win_amd64.pyd +0 -0
- multipers/function_rips.pyx +105 -105
- multipers/grids.cp311-win_amd64.pyd +0 -0
- multipers/grids.pyx +350 -350
- multipers/gudhi/Persistence_slices_interface.h +132 -132
- multipers/gudhi/Simplex_tree_interface.h +239 -245
- multipers/gudhi/Simplex_tree_multi_interface.h +516 -561
- multipers/gudhi/cubical_to_boundary.h +59 -59
- multipers/gudhi/gudhi/Bitmap_cubical_complex.h +450 -450
- multipers/gudhi/gudhi/Bitmap_cubical_complex_base.h +1070 -1070
- multipers/gudhi/gudhi/Bitmap_cubical_complex_periodic_boundary_conditions_base.h +579 -579
- multipers/gudhi/gudhi/Debug_utils.h +45 -45
- multipers/gudhi/gudhi/Fields/Multi_field.h +484 -484
- multipers/gudhi/gudhi/Fields/Multi_field_operators.h +455 -455
- multipers/gudhi/gudhi/Fields/Multi_field_shared.h +450 -450
- multipers/gudhi/gudhi/Fields/Multi_field_small.h +531 -531
- multipers/gudhi/gudhi/Fields/Multi_field_small_operators.h +507 -507
- multipers/gudhi/gudhi/Fields/Multi_field_small_shared.h +531 -531
- multipers/gudhi/gudhi/Fields/Z2_field.h +355 -355
- multipers/gudhi/gudhi/Fields/Z2_field_operators.h +376 -376
- multipers/gudhi/gudhi/Fields/Zp_field.h +420 -420
- multipers/gudhi/gudhi/Fields/Zp_field_operators.h +400 -400
- multipers/gudhi/gudhi/Fields/Zp_field_shared.h +418 -418
- multipers/gudhi/gudhi/Flag_complex_edge_collapser.h +337 -337
- multipers/gudhi/gudhi/Matrix.h +2107 -2107
- multipers/gudhi/gudhi/Multi_critical_filtration.h +1038 -1038
- multipers/gudhi/gudhi/Multi_persistence/Box.h +171 -171
- multipers/gudhi/gudhi/Multi_persistence/Line.h +282 -282
- multipers/gudhi/gudhi/Off_reader.h +173 -173
- multipers/gudhi/gudhi/One_critical_filtration.h +1433 -1431
- multipers/gudhi/gudhi/Persistence_matrix/Base_matrix.h +769 -769
- multipers/gudhi/gudhi/Persistence_matrix/Base_matrix_with_column_compression.h +686 -686
- multipers/gudhi/gudhi/Persistence_matrix/Boundary_matrix.h +842 -842
- multipers/gudhi/gudhi/Persistence_matrix/Chain_matrix.h +1350 -1350
- multipers/gudhi/gudhi/Persistence_matrix/Id_to_index_overlay.h +1105 -1105
- multipers/gudhi/gudhi/Persistence_matrix/Position_to_index_overlay.h +859 -859
- multipers/gudhi/gudhi/Persistence_matrix/RU_matrix.h +910 -910
- multipers/gudhi/gudhi/Persistence_matrix/allocators/entry_constructors.h +139 -139
- multipers/gudhi/gudhi/Persistence_matrix/base_pairing.h +230 -230
- multipers/gudhi/gudhi/Persistence_matrix/base_swap.h +211 -211
- multipers/gudhi/gudhi/Persistence_matrix/boundary_cell_position_to_id_mapper.h +60 -60
- multipers/gudhi/gudhi/Persistence_matrix/boundary_face_position_to_id_mapper.h +60 -60
- multipers/gudhi/gudhi/Persistence_matrix/chain_pairing.h +136 -136
- multipers/gudhi/gudhi/Persistence_matrix/chain_rep_cycles.h +190 -190
- multipers/gudhi/gudhi/Persistence_matrix/chain_vine_swap.h +616 -616
- multipers/gudhi/gudhi/Persistence_matrix/columns/chain_column_extra_properties.h +150 -150
- multipers/gudhi/gudhi/Persistence_matrix/columns/column_dimension_holder.h +106 -106
- multipers/gudhi/gudhi/Persistence_matrix/columns/column_utilities.h +219 -219
- multipers/gudhi/gudhi/Persistence_matrix/columns/entry_types.h +327 -327
- multipers/gudhi/gudhi/Persistence_matrix/columns/heap_column.h +1140 -1140
- multipers/gudhi/gudhi/Persistence_matrix/columns/intrusive_list_column.h +934 -934
- multipers/gudhi/gudhi/Persistence_matrix/columns/intrusive_set_column.h +934 -934
- multipers/gudhi/gudhi/Persistence_matrix/columns/list_column.h +980 -980
- multipers/gudhi/gudhi/Persistence_matrix/columns/naive_vector_column.h +1092 -1092
- multipers/gudhi/gudhi/Persistence_matrix/columns/row_access.h +192 -192
- multipers/gudhi/gudhi/Persistence_matrix/columns/set_column.h +921 -921
- multipers/gudhi/gudhi/Persistence_matrix/columns/small_vector_column.h +1093 -1093
- multipers/gudhi/gudhi/Persistence_matrix/columns/unordered_set_column.h +1012 -1012
- multipers/gudhi/gudhi/Persistence_matrix/columns/vector_column.h +1244 -1244
- multipers/gudhi/gudhi/Persistence_matrix/matrix_dimension_holders.h +186 -186
- multipers/gudhi/gudhi/Persistence_matrix/matrix_row_access.h +164 -164
- multipers/gudhi/gudhi/Persistence_matrix/ru_pairing.h +156 -156
- multipers/gudhi/gudhi/Persistence_matrix/ru_rep_cycles.h +376 -376
- multipers/gudhi/gudhi/Persistence_matrix/ru_vine_swap.h +540 -540
- multipers/gudhi/gudhi/Persistent_cohomology/Field_Zp.h +118 -118
- multipers/gudhi/gudhi/Persistent_cohomology/Multi_field.h +173 -173
- multipers/gudhi/gudhi/Persistent_cohomology/Persistent_cohomology_column.h +128 -128
- multipers/gudhi/gudhi/Persistent_cohomology.h +745 -745
- multipers/gudhi/gudhi/Points_off_io.h +171 -171
- multipers/gudhi/gudhi/Simple_object_pool.h +69 -69
- multipers/gudhi/gudhi/Simplex_tree/Simplex_tree_iterators.h +463 -463
- multipers/gudhi/gudhi/Simplex_tree/Simplex_tree_node_explicit_storage.h +83 -83
- multipers/gudhi/gudhi/Simplex_tree/Simplex_tree_siblings.h +106 -106
- multipers/gudhi/gudhi/Simplex_tree/Simplex_tree_star_simplex_iterators.h +277 -277
- multipers/gudhi/gudhi/Simplex_tree/hooks_simplex_base.h +62 -62
- multipers/gudhi/gudhi/Simplex_tree/indexing_tag.h +27 -27
- multipers/gudhi/gudhi/Simplex_tree/serialization_utils.h +62 -62
- multipers/gudhi/gudhi/Simplex_tree/simplex_tree_options.h +157 -157
- multipers/gudhi/gudhi/Simplex_tree.h +2794 -2794
- multipers/gudhi/gudhi/Simplex_tree_multi.h +152 -163
- multipers/gudhi/gudhi/distance_functions.h +62 -62
- multipers/gudhi/gudhi/graph_simplicial_complex.h +104 -104
- multipers/gudhi/gudhi/persistence_interval.h +253 -253
- multipers/gudhi/gudhi/persistence_matrix_options.h +170 -170
- multipers/gudhi/gudhi/reader_utils.h +367 -367
- multipers/gudhi/mma_interface_coh.h +256 -255
- multipers/gudhi/mma_interface_h0.h +223 -231
- multipers/gudhi/mma_interface_matrix.h +291 -282
- multipers/gudhi/naive_merge_tree.h +536 -575
- multipers/gudhi/scc_io.h +310 -289
- multipers/gudhi/truc.h +957 -888
- multipers/io.cp311-win_amd64.pyd +0 -0
- multipers/io.pyx +714 -711
- multipers/ml/accuracies.py +90 -90
- multipers/ml/invariants_with_persistable.py +79 -79
- multipers/ml/kernels.py +176 -176
- multipers/ml/mma.py +713 -714
- multipers/ml/one.py +472 -472
- multipers/ml/point_clouds.py +352 -346
- multipers/ml/signed_measures.py +1589 -1589
- multipers/ml/sliced_wasserstein.py +461 -461
- multipers/ml/tools.py +113 -113
- multipers/mma_structures.cp311-win_amd64.pyd +0 -0
- multipers/mma_structures.pxd +127 -127
- multipers/mma_structures.pyx +4 -8
- multipers/mma_structures.pyx.tp +1083 -1085
- multipers/multi_parameter_rank_invariant/diff_helpers.h +84 -93
- multipers/multi_parameter_rank_invariant/euler_characteristic.h +97 -97
- multipers/multi_parameter_rank_invariant/function_rips.h +322 -322
- multipers/multi_parameter_rank_invariant/hilbert_function.h +769 -769
- multipers/multi_parameter_rank_invariant/persistence_slices.h +148 -148
- multipers/multi_parameter_rank_invariant/rank_invariant.h +369 -369
- multipers/multiparameter_edge_collapse.py +41 -41
- multipers/multiparameter_module_approximation/approximation.h +2298 -2295
- multipers/multiparameter_module_approximation/combinatory.h +129 -129
- multipers/multiparameter_module_approximation/debug.h +107 -107
- multipers/multiparameter_module_approximation/format_python-cpp.h +286 -286
- multipers/multiparameter_module_approximation/heap_column.h +238 -238
- multipers/multiparameter_module_approximation/images.h +79 -79
- multipers/multiparameter_module_approximation/list_column.h +174 -174
- multipers/multiparameter_module_approximation/list_column_2.h +232 -232
- multipers/multiparameter_module_approximation/ru_matrix.h +347 -347
- multipers/multiparameter_module_approximation/set_column.h +135 -135
- multipers/multiparameter_module_approximation/structure_higher_dim_barcode.h +36 -36
- multipers/multiparameter_module_approximation/unordered_set_column.h +166 -166
- multipers/multiparameter_module_approximation/utilities.h +403 -419
- multipers/multiparameter_module_approximation/vector_column.h +223 -223
- multipers/multiparameter_module_approximation/vector_matrix.h +331 -331
- multipers/multiparameter_module_approximation/vineyards.h +464 -464
- multipers/multiparameter_module_approximation/vineyards_trajectories.h +649 -649
- multipers/multiparameter_module_approximation.cp311-win_amd64.pyd +0 -0
- multipers/multiparameter_module_approximation.pyx +218 -217
- multipers/pickle.py +90 -53
- multipers/plots.py +342 -334
- multipers/point_measure.cp311-win_amd64.pyd +0 -0
- multipers/point_measure.pyx +322 -320
- multipers/simplex_tree_multi.cp311-win_amd64.pyd +0 -0
- multipers/simplex_tree_multi.pxd +133 -133
- multipers/simplex_tree_multi.pyx +115 -48
- multipers/simplex_tree_multi.pyx.tp +1947 -1935
- multipers/slicer.cp311-win_amd64.pyd +0 -0
- multipers/slicer.pxd +301 -120
- multipers/slicer.pxd.tp +218 -214
- multipers/slicer.pyx +1570 -507
- multipers/slicer.pyx.tp +931 -914
- multipers/tensor/tensor.h +672 -672
- multipers/tensor.pxd +13 -13
- multipers/test.pyx +44 -44
- multipers/tests/__init__.py +57 -57
- multipers/torch/diff_grids.py +217 -217
- multipers/torch/rips_density.py +310 -304
- {multipers-2.2.3.dist-info → multipers-2.3.1.dist-info}/LICENSE +21 -21
- {multipers-2.2.3.dist-info → multipers-2.3.1.dist-info}/METADATA +21 -11
- multipers-2.3.1.dist-info/RECORD +182 -0
- {multipers-2.2.3.dist-info → multipers-2.3.1.dist-info}/WHEEL +1 -1
- multipers/tests/test_diff_helper.py +0 -73
- multipers/tests/test_hilbert_function.py +0 -82
- multipers/tests/test_mma.py +0 -83
- multipers/tests/test_point_clouds.py +0 -49
- multipers/tests/test_python-cpp_conversion.py +0 -82
- multipers/tests/test_signed_betti.py +0 -181
- multipers/tests/test_signed_measure.py +0 -89
- multipers/tests/test_simplextreemulti.py +0 -221
- multipers/tests/test_slicer.py +0 -221
- multipers-2.2.3.dist-info/RECORD +0 -189
- {multipers-2.2.3.dist-info → multipers-2.3.1.dist-info}/top_level.txt +0 -0
multipers/tests/test_slicer.py
DELETED
|
@@ -1,221 +0,0 @@
|
|
|
1
|
-
import numpy as np
|
|
2
|
-
import pytest
|
|
3
|
-
from numpy import array
|
|
4
|
-
|
|
5
|
-
import multipers as mp
|
|
6
|
-
import multipers.slicer as mps
|
|
7
|
-
from multipers.tests import assert_sm
|
|
8
|
-
import pickle as pkl
|
|
9
|
-
|
|
10
|
-
mpfree_flag = mp.io._check_available("mpfree")
|
|
11
|
-
fd_flag = mp.io._check_available("function_delaunay")
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
def test_1():
|
|
15
|
-
st = mp.SimplexTreeMulti(num_parameters=2)
|
|
16
|
-
st.insert([0], [0, 1])
|
|
17
|
-
st.insert([1], [1, 0])
|
|
18
|
-
st.insert([0, 1], [1, 1])
|
|
19
|
-
for S in mps.available_slicers:
|
|
20
|
-
if not S().is_vine or not S().col_type or S().is_kcritical:
|
|
21
|
-
continue
|
|
22
|
-
from multipers._slicer_meta import _blocks2boundary_dimension_grades
|
|
23
|
-
|
|
24
|
-
generator_maps, generator_dimensions, filtration_values = (
|
|
25
|
-
_blocks2boundary_dimension_grades(
|
|
26
|
-
st._to_scc(),
|
|
27
|
-
inplace=False,
|
|
28
|
-
)
|
|
29
|
-
)
|
|
30
|
-
it = S(
|
|
31
|
-
generator_maps, generator_dimensions, filtration_values
|
|
32
|
-
).persistence_on_line([0, 0])
|
|
33
|
-
assert (
|
|
34
|
-
len(it) == 2
|
|
35
|
-
), "There are simplices of dim 0 and 1, but no pers ? got {}".format(len(it))
|
|
36
|
-
assert len(it[1]) == 0, "Pers of dim 1 is not empty ? got {}".format(it[1])
|
|
37
|
-
for x in it[0]:
|
|
38
|
-
if np.any(np.asarray(x)):
|
|
39
|
-
continue
|
|
40
|
-
assert x[0] == 1 and x[1] > 45, "pers should be [1,inf], got {}".format(x)
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
def test_2():
|
|
44
|
-
st = mp.SimplexTreeMulti(num_parameters=2)
|
|
45
|
-
st.insert([0], [0, 1])
|
|
46
|
-
st.insert([1], [1, 0])
|
|
47
|
-
st.insert([0, 1], [1, 1])
|
|
48
|
-
st.insert([0, 1, 2], [2, 2])
|
|
49
|
-
assert mp.slicer.to_simplextree(mp.Slicer(st, dtype=st.dtype)) == st
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
def test_3():
|
|
53
|
-
st = mp.SimplexTreeMulti(num_parameters=2)
|
|
54
|
-
st.insert([0], [0, 1])
|
|
55
|
-
st.insert([1], [1, 0])
|
|
56
|
-
st.insert([0, 1], [1, 1])
|
|
57
|
-
sm = mp.signed_measure(st, invariant="rank", degree=0)
|
|
58
|
-
sm2 = mp.signed_measure(mp.Slicer(st, dtype=np.int32), invariant="rank", degree=0)
|
|
59
|
-
sm3 = mp.signed_measure(mp.Slicer(st, dtype=np.float64), invariant="rank", degree=0)
|
|
60
|
-
it = [
|
|
61
|
-
(
|
|
62
|
-
array([[0.0, 1.0, 1.0, 1.0], [1.0, 0.0, 1.0, 1.0], [1.0, 1.0, 1.0, 1.0]]),
|
|
63
|
-
array([1, 1, -1]),
|
|
64
|
-
)
|
|
65
|
-
]
|
|
66
|
-
assert_sm(sm, it)
|
|
67
|
-
assert_sm(sm2, it)
|
|
68
|
-
assert_sm(sm3, it)
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
def test_representative_cycles():
|
|
72
|
-
truc = [
|
|
73
|
-
{},
|
|
74
|
-
{},
|
|
75
|
-
{},
|
|
76
|
-
{},
|
|
77
|
-
{},
|
|
78
|
-
{},
|
|
79
|
-
{},
|
|
80
|
-
{2, 3},
|
|
81
|
-
{4, 5},
|
|
82
|
-
{0, 2},
|
|
83
|
-
{0, 1},
|
|
84
|
-
{1, 3},
|
|
85
|
-
{1, 2},
|
|
86
|
-
{7, 11, 12},
|
|
87
|
-
{9, 10, 12},
|
|
88
|
-
{5, 6},
|
|
89
|
-
{2, 4},
|
|
90
|
-
{4, 6},
|
|
91
|
-
{8, 15, 17},
|
|
92
|
-
{3, 6},
|
|
93
|
-
]
|
|
94
|
-
truc = [list(machin) for machin in truc]
|
|
95
|
-
slicer = mp.slicer._Slicer_Matrix0_vine_f64(
|
|
96
|
-
truc,
|
|
97
|
-
np.array([max(len(x) - 1, 0) for x in truc]),
|
|
98
|
-
np.array([list(range(len(truc))), list(range(len(truc)))]).T,
|
|
99
|
-
)
|
|
100
|
-
slicer.compute_persistence(one_filtration=list(range(len(truc))))
|
|
101
|
-
cycles = slicer.get_representative_cycles()
|
|
102
|
-
assert len(cycles) == 3, f"There should be 3 dimensions here, found {len(cycles)}"
|
|
103
|
-
assert (
|
|
104
|
-
np.asarray(cycles[0]).shape[0] == 7
|
|
105
|
-
), f"Invalid number of 0-cycles, got {np.asarray(cycles[0]).size}"
|
|
106
|
-
for c in cycles[1]:
|
|
107
|
-
assert (
|
|
108
|
-
np.unique(cycles[1][0], return_counts=True)[1] == 2
|
|
109
|
-
).all(), f"Found a non-cycle, {cycles[1][0]}"
|
|
110
|
-
assert len(cycles[2]) == 0, "Found a 2-cycle, which should not exist"
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
def test_pruning():
|
|
114
|
-
from multipers.tests import random_st
|
|
115
|
-
|
|
116
|
-
st = random_st(num_parameters=3, max_dim=4)
|
|
117
|
-
s = mp.Slicer(st)
|
|
118
|
-
s.prune_above_dimension(2)
|
|
119
|
-
s2 = mp.Slicer(s, max_dim=2)
|
|
120
|
-
assert s.get_dimensions()[-1] == 2, "Failed to prune dimension"
|
|
121
|
-
st.prune_above_dimension(2)
|
|
122
|
-
assert (
|
|
123
|
-
s.get_dimensions() == s2.get_dimensions()
|
|
124
|
-
).all(), "pruned dimensions do not coincide"
|
|
125
|
-
assert s.get_boundaries() == s2.get_boundaries(), "Boundaries changed"
|
|
126
|
-
assert (
|
|
127
|
-
s.get_filtrations_values() == s2.get_filtrations_values()
|
|
128
|
-
).all(), "Filtrations have changed"
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
def test_scc():
|
|
132
|
-
import numpy as np
|
|
133
|
-
|
|
134
|
-
import multipers as mp
|
|
135
|
-
from multipers.distances import sm_distance
|
|
136
|
-
from multipers.io import _check_available
|
|
137
|
-
from multipers.tests import random_st
|
|
138
|
-
|
|
139
|
-
st = random_st(npts=500, num_parameters=2)
|
|
140
|
-
s = mp.Slicer(st, dtype=np.float64)
|
|
141
|
-
s.to_scc("truc.scc", degree=1)
|
|
142
|
-
s2 = mp.Slicer("truc.scc")
|
|
143
|
-
(a,) = mp.signed_measure(s)
|
|
144
|
-
(b,) = mp.signed_measure(s2)
|
|
145
|
-
assert sm_distance(a, b) < np.finfo(np.float64).resolution * s.num_generators
|
|
146
|
-
|
|
147
|
-
st = random_st(npts=500)
|
|
148
|
-
s = mp.Slicer(st).grid_squeeze(inplace=True)
|
|
149
|
-
s.filtration_grid = []
|
|
150
|
-
s.to_scc("truc.scc", degree=1)
|
|
151
|
-
s2 = mp.Slicer("truc.scc", dtype=np.float64)
|
|
152
|
-
(a,) = mp.signed_measure(s)
|
|
153
|
-
(b,) = mp.signed_measure(s2)
|
|
154
|
-
assert sm_distance(a, b) == 0
|
|
155
|
-
|
|
156
|
-
st = random_st(npts=200)
|
|
157
|
-
s = mp.Slicer(st).grid_squeeze(inplace=True)
|
|
158
|
-
s.filtration_grid = []
|
|
159
|
-
s.to_scc(
|
|
160
|
-
"truc.scc",
|
|
161
|
-
)
|
|
162
|
-
if _check_available("mpfree"):
|
|
163
|
-
s2 = mp.Slicer("truc.scc", dtype=np.float64).minpres(1)
|
|
164
|
-
(a,) = mp.signed_measure(s, degree=1)
|
|
165
|
-
(b,) = mp.signed_measure(s2, degree=1)
|
|
166
|
-
assert sm_distance(a, b) == 0
|
|
167
|
-
else:
|
|
168
|
-
pytest.skip("Skipped a test bc `mpfree` was not found.")
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
def test_bitmap():
|
|
172
|
-
img = np.random.uniform(size=(12, 10, 11, 2))
|
|
173
|
-
num_parameters = img.shape[-1]
|
|
174
|
-
s = mp.slicer.from_bitmap(img)
|
|
175
|
-
num_vertices = np.searchsorted(s.get_dimensions(), 1)
|
|
176
|
-
assert num_vertices == np.prod(img.shape[:-1])
|
|
177
|
-
assert s.num_parameters == num_parameters
|
|
178
|
-
assert s.dimension == img.ndim - 1
|
|
179
|
-
assert np.all(
|
|
180
|
-
np.asarray(s.get_filtrations()[:num_vertices])
|
|
181
|
-
== img.reshape(-1, num_parameters)
|
|
182
|
-
)
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
@pytest.mark.skipif(
|
|
186
|
-
not fd_flag or not mpfree_flag,
|
|
187
|
-
reason="Skipped external test as `function_delaunay`, `mpfree` were not found.",
|
|
188
|
-
)
|
|
189
|
-
@pytest.mark.parametrize("dim", [1, 2, 3, 4])
|
|
190
|
-
@pytest.mark.parametrize("degree", [1, 2, 3])
|
|
191
|
-
def test_external(dim, degree):
|
|
192
|
-
if degree >= dim:
|
|
193
|
-
return
|
|
194
|
-
X = np.random.uniform(size=(100, dim))
|
|
195
|
-
f = np.random.uniform(size=(X.shape[0]))
|
|
196
|
-
fd = mps.from_function_delaunay(X, f)
|
|
197
|
-
assert np.array_equal(np.unique(fd.get_dimensions()), np.arange(dim + 2))
|
|
198
|
-
fd_ = mps.from_function_delaunay(X, f, degree=degree)
|
|
199
|
-
assert np.array_equal(
|
|
200
|
-
np.unique(fd_.get_dimensions()), [degree, degree + 1]
|
|
201
|
-
) ## only does presentations
|
|
202
|
-
fd_ = fd.minpres(degree=degree)
|
|
203
|
-
assert np.array_equal(
|
|
204
|
-
np.unique(fd_.get_dimensions()), [degree, degree + 1, degree + 2]
|
|
205
|
-
) ## resolution by default
|
|
206
|
-
|
|
207
|
-
def test_pkl():
|
|
208
|
-
for num_params in range(1,4):
|
|
209
|
-
img = np.random.uniform(size=(20,20,num_params))
|
|
210
|
-
img2 = np.array(img)
|
|
211
|
-
img2[0,0,0]+=1
|
|
212
|
-
s = mp.slicer.from_bitmap(img)
|
|
213
|
-
s2 = mp.slicer.from_bitmap(img2)
|
|
214
|
-
s3 = type(s)(s.get_boundaries()[:-1], s.get_dimensions()[:-1], s.get_filtrations()[:-1])
|
|
215
|
-
s4 = type(s)(s.get_boundaries(), s.get_dimensions()+1, s.get_filtrations())
|
|
216
|
-
assert len(s)> np.prod(img.shape[:-1])+1
|
|
217
|
-
assert s == s.copy()
|
|
218
|
-
assert s != s2
|
|
219
|
-
assert s != s3
|
|
220
|
-
assert s != s4
|
|
221
|
-
assert s == pkl.loads(pkl.dumps(s))
|
multipers-2.2.3.dist-info/RECORD
DELETED
|
@@ -1,189 +0,0 @@
|
|
|
1
|
-
multipers/__init__.py,sha256=yI4wgWz3c-2Tb3sHTLdeTizU9z55ZTcCwEZfC6c7UQU,728
|
|
2
|
-
multipers/_signed_measure_meta.py,sha256=8dXcLwbhrr7JAuLXr3UPE1_wovSFz2bk_GSj8IlxV8o,17096
|
|
3
|
-
multipers/_slicer_meta.py,sha256=5RFDgpmdJWiHJAXZ4p5AHRYngD8MHzEWFvyzzdcyXZ4,7450
|
|
4
|
-
multipers/distances.py,sha256=B9plQz_FsxvvSoLPgLZSs2rVXha25MvKOD_0lp2GvJk,6265
|
|
5
|
-
multipers/filtration_conversions.pxd,sha256=Je7a3F4zS1PQn6Ul1YCXgA6p39X2FouStru-XtN-aOw,10800
|
|
6
|
-
multipers/filtration_conversions.pxd.tp,sha256=CJXBFxPQcrQaAg972tfU_W-RBJYCMES6sujYbdA3EDg,3393
|
|
7
|
-
multipers/filtrations.pxd,sha256=B4dX7UKE91xQGnygAZqW4W53wVlMoewTGc9Fh1htwn8,9685
|
|
8
|
-
multipers/function_rips.cp311-win_amd64.pyd,sha256=j4WznTW6u0uFeWjod1fEFABhgnr0MVEcW-tJBW-KhKs,338432
|
|
9
|
-
multipers/function_rips.pyx,sha256=wlR-DGhFQdGwRs18fz8jFzGHGhdRYpK6VG5rJ-wr63Q,5357
|
|
10
|
-
multipers/grids.cp311-win_amd64.pyd,sha256=UIRf6BbJ3EciIj6dd5bCPWsJaAeeR0pZNSfxmnQzq2U,506368
|
|
11
|
-
multipers/grids.pyx,sha256=CNwW3sCqDx0t26MTklSlIsUdcOhZSm8XTxFt8GQwHRw,14083
|
|
12
|
-
multipers/io.cp311-win_amd64.pyd,sha256=aPPmt2Z9O_KGpi6TLESzatJJwn9Mxt6Wf_2DwXcKzZQ,254976
|
|
13
|
-
multipers/io.pyx,sha256=kWCdiYJRuuclmde63vs8rHCyPl-waFzY0-tZA2WXX-Q,25983
|
|
14
|
-
multipers/mma_structures.cp311-win_amd64.pyd,sha256=vX1wfDpUB6PDduGcKQBLI316fR6mHIlUfTlIjXyITII,1332736
|
|
15
|
-
multipers/mma_structures.pxd,sha256=WAyP_4AeHgAaLdI3tooRdhGji1rNVyFovFxuvVPgIqE,6626
|
|
16
|
-
multipers/mma_structures.pyx,sha256=JXUC6Nxkc_TBGVC14WcQvQEJ0cHkH36KZEC4QGVLWAE,108810
|
|
17
|
-
multipers/mma_structures.pyx.tp,sha256=VpAujGKDMfy6WO4FHzEM7g_5tQKYQJ5RgoA520mqHlg,43227
|
|
18
|
-
multipers/multiparameter_edge_collapse.py,sha256=98_oLFwzCWFMfny_47qk0tWmYS2Vo0dqqhnmZ4KgHdI,1270
|
|
19
|
-
multipers/multiparameter_module_approximation.cp311-win_amd64.pyd,sha256=essdVO4cMTYFGfiOHeXXPBiKCrhFOOXzJZV0AjzB1TU,475136
|
|
20
|
-
multipers/multiparameter_module_approximation.pyx,sha256=WL3Q_gq6I4x8unNxyFmF_7idyi--96Tj9mxrFc40j-s,8752
|
|
21
|
-
multipers/pickle.py,sha256=1qy58-k0v9DecFibSxb80C2KbGHz4NwIJpiiDUCGswU,2193
|
|
22
|
-
multipers/plots.py,sha256=Lc8Q-lpxrvu8nCr7dOBLgKXXqub6lRF0As-3rRGVv7Y,11298
|
|
23
|
-
multipers/point_measure.cp311-win_amd64.pyd,sha256=w3So6iaSUAfg0m8iEfSYSO_u055V31pZ26LUpc2RJCY,615936
|
|
24
|
-
multipers/point_measure.pyx,sha256=m7g--qsBYX0eHBGTikc7LMW0cNX6-XJ9piSHeDGaH2s,12218
|
|
25
|
-
multipers/simplex_tree_multi.cp311-win_amd64.pyd,sha256=8YIX6zRAxXw3aCYBvV6ScWMqHTVDJblgBzypQqlqduw,3608576
|
|
26
|
-
multipers/simplex_tree_multi.pxd,sha256=2XS9OPRU5QK8qkz_ohbJ66hJistuPO8M-7R5aHhY_PI,6692
|
|
27
|
-
multipers/simplex_tree_multi.pyx,sha256=deNagDxfE2DPknxANp004GcWZJj_mqBRWPq3bo6cPRU,479078
|
|
28
|
-
multipers/simplex_tree_multi.pyx.tp,sha256=lmev5Yj65tKLKjRRa-Fr2Iw_ArFPxTxPK-EAwce1PRk,88379
|
|
29
|
-
multipers/slicer.cp311-win_amd64.pyd,sha256=NzXiW3gZeSljTrmRPQ1W3591yQx23ixoeRFNIyBJoo0,8040448
|
|
30
|
-
multipers/slicer.pxd,sha256=X1DNVZ0EcLdDNJZvjrqo-nzCD8uXo9UVwAV3DcqdwEI,154890
|
|
31
|
-
multipers/slicer.pxd.tp,sha256=F7JsSVXnmCGBq6o8uhqkDo-XfhT6kZPLB8dGbLjkMEM,9578
|
|
32
|
-
multipers/slicer.pyx,sha256=qQg1kshNxozPRskCaPu5aEXBBRUIInX6JNbuhvF5biM,664343
|
|
33
|
-
multipers/slicer.pyx.tp,sha256=o8GGaIqnoe5S78S0Ky_zyvRQPrqxkjCDepIJEeGR29Q,37732
|
|
34
|
-
multipers/tbb12.dll,sha256=jutngDNBx2TW92tVYsfuHD8Sre0oO-rh4iK2edc1SGA,337920
|
|
35
|
-
multipers/tbbbind_2_5.dll,sha256=-ywrB_hirPeygmtj_VhROzkQcw70G94x4JTgBdkUaUQ,23040
|
|
36
|
-
multipers/tbbmalloc.dll,sha256=4uOK-Y2zeptYOLEh1bu-Yz8htiG4gtF_agyanMJO-tA,112640
|
|
37
|
-
multipers/tbbmalloc_proxy.dll,sha256=iWWmLmm2bxDnyPQUry1kvhkgQspLyLmIjYD-k4Z9Hk0,31232
|
|
38
|
-
multipers/tensor.pxd,sha256=MsjOefhN3IJcN5yUPysbDY_mV-T2I4heLwi4GRN6IKk,430
|
|
39
|
-
multipers/test.pyx,sha256=dpbmVxXzvuTzuAAWPPOhFp1h6roniJ8gQ0mB4s75dc8,1842
|
|
40
|
-
multipers/data/MOL2.py,sha256=EWFxgNtubZ7dePF5RFnVbuNMk_skEUh5PU1oPJM9tYE,15886
|
|
41
|
-
multipers/data/UCR.py,sha256=LiH57ZbD_zAdIZ-P06Owxhxa8lrAO8l7IVAVIqlrvFk,816
|
|
42
|
-
multipers/data/__init__.py,sha256=w7uUe4LOHbdbKU4R8MNs7em65wZJN0v5ukoG1otFanQ,24
|
|
43
|
-
multipers/data/graphs.py,sha256=e1ijW9u9kRuiBNXrtuazrMLnZFYC7vmAYiuEIWng-Yk,16812
|
|
44
|
-
multipers/data/immuno_regions.py,sha256=6r9HO3pqMDfh6xT-OgHbakmTMrb6BCL1tKnqEO-G56E,930
|
|
45
|
-
multipers/data/minimal_presentation_to_st_bf.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
46
|
-
multipers/data/pytorch2simplextree.py,sha256=ZqrkfBkxmMGCc_e4gFQ8S6PSw7VsrakdouONaSCSyQk,3138
|
|
47
|
-
multipers/data/shape3d.py,sha256=14jWLtL-VCeqEuMKMXkBFEc05ehBM779U2a4VpATgio,3994
|
|
48
|
-
multipers/data/synthetic.py,sha256=5Ed52C4xZtCkZVsW0Nyz11lByJWiYUB11RzgJJxBajY,3131
|
|
49
|
-
multipers/gudhi/Persistence_slices_interface.h,sha256=z8gZdjxoqayPibVtyvVRBNawCK-_XcbSLL9LyYNCt4Q,6694
|
|
50
|
-
multipers/gudhi/Simplex_tree_interface.h,sha256=J3x4YFUB9Rf3HkxEwJhNqVT5vaeU7pBCf3Gxvke4HQ0,10439
|
|
51
|
-
multipers/gudhi/Simplex_tree_multi_interface.h,sha256=n6CsP9Ese2sGn56FfAr7p4jxZxe-DbyprIRIo-xuTrI,24374
|
|
52
|
-
multipers/gudhi/cubical_to_boundary.h,sha256=SbAHzvucfGFs3O1sOh-t5r9967PQ9Bvu7FG3vrZ9Pgo,2014
|
|
53
|
-
multipers/gudhi/mma_interface_coh.h,sha256=iKCqyrYGf8KJejSTsl-xhRkDfa85E2D3JbegDLLRRbI,8675
|
|
54
|
-
multipers/gudhi/mma_interface_h0.h,sha256=RZVwxNmJ0SCRisUgIwAktbwzbfwr8BtLTIzuGdiNCCc,8051
|
|
55
|
-
multipers/gudhi/mma_interface_matrix.h,sha256=eSLuCaJV3QrxJlNvAakVdbIJCFCX4bwkpQNvleOVeAI,10921
|
|
56
|
-
multipers/gudhi/naive_merge_tree.h,sha256=btILsXLg4FaiAExYtfjB50Q_QzTgIDS5ejxeXuFrG4U,19806
|
|
57
|
-
multipers/gudhi/scc_io.h,sha256=B2JiedOjjniB-y7w_XVtuxZrg7QzZvJQw1zQQhRSgbQ,11244
|
|
58
|
-
multipers/gudhi/truc.h,sha256=yLJEhq8ze-YwZONQJMmUSwBFJNOKVsUxccLUpFmsFzM,35688
|
|
59
|
-
multipers/gudhi/gudhi/Bitmap_cubical_complex.h,sha256=rdlUR0fF77x8Mz4jWYWuluuQeJwUI5scjaYJWg2odbw,16609
|
|
60
|
-
multipers/gudhi/gudhi/Bitmap_cubical_complex_base.h,sha256=FgJS18K7r_5wQY0d73Na04h2ewJOX4PL9Krgy0nR39k,45614
|
|
61
|
-
multipers/gudhi/gudhi/Bitmap_cubical_complex_periodic_boundary_conditions_base.h,sha256=iiS1gtK-Ctt8pTUkWuNF0mZGaylqqzwgOZtsvZGjOII,26408
|
|
62
|
-
multipers/gudhi/gudhi/Debug_utils.h,sha256=WUqs7q4xx0TjuxIzeDATpNpsJSSvTAJNwy6vPDSaRLk,1635
|
|
63
|
-
multipers/gudhi/gudhi/Flag_complex_edge_collapser.h,sha256=qeuB0klssrEvNnCyANwWOHP0VzoJfeWLywNc1aocgno,13584
|
|
64
|
-
multipers/gudhi/gudhi/Matrix.h,sha256=Dis0-RNJOU-t4W7CHPGDyOZhwxTzDfUgBvYkW5Kt9Cw,118104
|
|
65
|
-
multipers/gudhi/gudhi/Multi_critical_filtration.h,sha256=soYxYcboWjUU7T8Y_Uap6pcQ9im4oHjQryaEC7LEloY,43627
|
|
66
|
-
multipers/gudhi/gudhi/Off_reader.h,sha256=vjZKZQsr4zDtHoKnxp0hz152nIEkXTkZYqFN8qT39A4,5044
|
|
67
|
-
multipers/gudhi/gudhi/One_critical_filtration.h,sha256=bPaJbrMkxmCLi7J7QD4wLED-WWQ9fnaD9QiFC2E1wL0,54694
|
|
68
|
-
multipers/gudhi/gudhi/Persistent_cohomology.h,sha256=xgPrI1i4RsRhClm-KEDQJlo-noADJEfgUjHbap6IVqk,31470
|
|
69
|
-
multipers/gudhi/gudhi/Points_off_io.h,sha256=I5HT_JZxQfE04iQKjT7QbofKqcI4w-Np-n2XlaTzy5I,5397
|
|
70
|
-
multipers/gudhi/gudhi/Simple_object_pool.h,sha256=EeROaWwY9ALBxjT_zqoFN_z4d_aaLU23-DY64NWAMic,1878
|
|
71
|
-
multipers/gudhi/gudhi/Simplex_tree.h,sha256=a1WT4PGgsAi9wal7EjYv9C0HIxjLRFDxtYjxf9_s32E,130338
|
|
72
|
-
multipers/gudhi/gudhi/Simplex_tree_multi.h,sha256=486xjo7Og4rVXJFeEQfJuEwhvFgOp8QsEbcI1Moc6Dc,6748
|
|
73
|
-
multipers/gudhi/gudhi/distance_functions.h,sha256=IUc3VpLopoL7dVQnhXLamJPU-R-HGooBHb63p6qZPuI,1963
|
|
74
|
-
multipers/gudhi/gudhi/graph_simplicial_complex.h,sha256=FepLqMpC15DZMjv704Al8OpAGOfMqEVRVMoWr5E22HA,3876
|
|
75
|
-
multipers/gudhi/gudhi/persistence_interval.h,sha256=IiZZYpWb_4QrtlFFOuikDPv1_DU670FVz4RILwZe2Q4,11122
|
|
76
|
-
multipers/gudhi/gudhi/persistence_matrix_options.h,sha256=38MV46HxHPMugSs-i0Vp9_duIS6RFqPY-oaWjUxNHSk,6713
|
|
77
|
-
multipers/gudhi/gudhi/reader_utils.h,sha256=78Ez9sIQBwcOb0GBlYkO0gjfxTfPIucRu594e1tnIqw,11935
|
|
78
|
-
multipers/gudhi/gudhi/Fields/Multi_field.h,sha256=wedOgXlY7UkhaGgx5o-Vr7IwOxnO0NU7MSniRyeHdP4,16437
|
|
79
|
-
multipers/gudhi/gudhi/Fields/Multi_field_operators.h,sha256=yDOy0PdUrN39IglNhdyaVoIaoBSYo9IGqt5-hmDj8S8,16450
|
|
80
|
-
multipers/gudhi/gudhi/Fields/Multi_field_shared.h,sha256=tPMlySDNE9frLadeNlqe-8AHw7ZIC8Mz0jj-77VROAY,15716
|
|
81
|
-
multipers/gudhi/gudhi/Fields/Multi_field_small.h,sha256=TL_qPVnIRRmddpspUE-0CV9APAszpaK500acZ8cwqsQ,19403
|
|
82
|
-
multipers/gudhi/gudhi/Fields/Multi_field_small_operators.h,sha256=tUKLyMKvj8SyUIe4tkRXDodb_QCoVtWye1QrZyHETaU,18972
|
|
83
|
-
multipers/gudhi/gudhi/Fields/Multi_field_small_shared.h,sha256=3iUM7bGZfjyPS_EAlVPClpyYSd-hQ6uyl5mlQedSBks,19949
|
|
84
|
-
multipers/gudhi/gudhi/Fields/Z2_field.h,sha256=wBBZUfyyKT9NwBSp8iEBneFc9_25BsAwp2wHov6wiO0,11396
|
|
85
|
-
multipers/gudhi/gudhi/Fields/Z2_field_operators.h,sha256=FsTDhetNPzMnOvHHlJx8acbD4OBRQFuy6nPBWv_ixSY,14587
|
|
86
|
-
multipers/gudhi/gudhi/Fields/Zp_field.h,sha256=HGmMXQPUSRPzM8WzmP89EaF7S3tJ4-3DpCqqSqghI1s,13576
|
|
87
|
-
multipers/gudhi/gudhi/Fields/Zp_field_operators.h,sha256=PeLI_8GbG5DfeTAf-lbo1L1SIeaXVu0fKN41BW5HxGo,13906
|
|
88
|
-
multipers/gudhi/gudhi/Fields/Zp_field_shared.h,sha256=ybSvoAhlhYh_Yv920izwn-YeWvjecA1G_ipX0QjR9EU,14450
|
|
89
|
-
multipers/gudhi/gudhi/Multi_persistence/Box.h,sha256=ofVXgCiD9AtI0KXW_iHvr4YAu-wVtVGFzSv-IE0ha2s,6045
|
|
90
|
-
multipers/gudhi/gudhi/Multi_persistence/Line.h,sha256=IhA7EL_9DP1dfmm5BHDmBzH22zw860z33xXBvYn1Uzk,10431
|
|
91
|
-
multipers/gudhi/gudhi/Persistence_matrix/Base_matrix.h,sha256=1StTH8U7nVj9JyqHzGG0TF4ONj1S_YNf_adK2JnPiAc,33553
|
|
92
|
-
multipers/gudhi/gudhi/Persistence_matrix/Base_matrix_with_column_compression.h,sha256=qWl5-splkablNXdA2sTmHv-fINVNrhIJrTSmVO1P8GA,30516
|
|
93
|
-
multipers/gudhi/gudhi/Persistence_matrix/Boundary_matrix.h,sha256=hQurXNJRZ0RAtAkGeDtDLrOS1DaYCg03PUvob2BRDqI,36944
|
|
94
|
-
multipers/gudhi/gudhi/Persistence_matrix/Chain_matrix.h,sha256=KDg2zgQR9bgZrtC3IJFVBOSeqP1otst4JeYWcA3VifY,62876
|
|
95
|
-
multipers/gudhi/gudhi/Persistence_matrix/Id_to_index_overlay.h,sha256=XHNTWpm9504jxshSXHCJaIVqz8gutzM-AKD-qtmSUeY,56509
|
|
96
|
-
multipers/gudhi/gudhi/Persistence_matrix/Position_to_index_overlay.h,sha256=5pRQk8rENZ0tUVTKqAQRWFcr8StnZ_dKz9hfmnQ9aq4,44396
|
|
97
|
-
multipers/gudhi/gudhi/Persistence_matrix/RU_matrix.h,sha256=VGlcMIGMN6pN_DjA9fgrsOAghz04MKtkDdklkAk24bo,40571
|
|
98
|
-
multipers/gudhi/gudhi/Persistence_matrix/base_pairing.h,sha256=bH83Wyi3AqqNTi45WQIb2Xeo1OwaRCM_YZYKz95LN4g,8832
|
|
99
|
-
multipers/gudhi/gudhi/Persistence_matrix/base_swap.h,sha256=kpkFAfAIBOx8p1VWyyIuTjnm0ULz2w2QNOq0HD5gsM0,7469
|
|
100
|
-
multipers/gudhi/gudhi/Persistence_matrix/boundary_cell_position_to_id_mapper.h,sha256=5DmR2qgXwqf7WNwHnLMbnlIMC3ZllWvoOatlRCr2teY,1739
|
|
101
|
-
multipers/gudhi/gudhi/Persistence_matrix/boundary_face_position_to_id_mapper.h,sha256=CQqutRBS8VsfmHpZDhX11I58-UgfuQovYc8At6QEje0,1704
|
|
102
|
-
multipers/gudhi/gudhi/Persistence_matrix/chain_pairing.h,sha256=u1SXWmlMg_AEMao12X4bTn4pHzWKxxcsbWq1DxXuDRc,4212
|
|
103
|
-
multipers/gudhi/gudhi/Persistence_matrix/chain_rep_cycles.h,sha256=4pkqfWVttpWwXdAwWj8hKdV9lg2NfNaL95Qb8O3uRuc,7332
|
|
104
|
-
multipers/gudhi/gudhi/Persistence_matrix/chain_vine_swap.h,sha256=wBl3FCYDHd_QKIpssgOlph5SLKKVD6znwwS0oeotE7A,24003
|
|
105
|
-
multipers/gudhi/gudhi/Persistence_matrix/matrix_dimension_holders.h,sha256=3M8u-lNeu711IMf6KAXN2gC1Gdxd5bNLD3Wdb4eZnFw,6175
|
|
106
|
-
multipers/gudhi/gudhi/Persistence_matrix/matrix_row_access.h,sha256=rBnxux-ukDGo6OCEWZn0256WLsAVJF9WiqwL2ZM0Q5s,5656
|
|
107
|
-
multipers/gudhi/gudhi/Persistence_matrix/ru_pairing.h,sha256=qsoaLYfkfwHoz4OGDjwjtf6SCbI7kPWnELw79bEqpRM,5512
|
|
108
|
-
multipers/gudhi/gudhi/Persistence_matrix/ru_rep_cycles.h,sha256=SU_woOyydKkOTHeWYlP8tP5XApFmsByXegYkMzMhl4Y,13869
|
|
109
|
-
multipers/gudhi/gudhi/Persistence_matrix/ru_vine_swap.h,sha256=bshgAv-93CWTh1RS4jrnMc1wdqfnViBPnrSknDC1Inc,21546
|
|
110
|
-
multipers/gudhi/gudhi/Persistence_matrix/allocators/entry_constructors.h,sha256=w5ThnKdGV3MgHHmF7q7-z0LqVRIdAHZEVo3oqhw7FAo,3601
|
|
111
|
-
multipers/gudhi/gudhi/Persistence_matrix/columns/chain_column_extra_properties.h,sha256=g-wzEi1ewieA5v9YPzviSZKNAi8X-khTyp6lppyFHNo,5640
|
|
112
|
-
multipers/gudhi/gudhi/Persistence_matrix/columns/column_dimension_holder.h,sha256=u9-a8bFFXpoVjUxQc60TQIfuA5_8j3pkRtNXEreWyiM,3284
|
|
113
|
-
multipers/gudhi/gudhi/Persistence_matrix/columns/column_utilities.h,sha256=PWZdSrriZCWqbPewhuA0ZGIeyVsG2Ux9UHGJpVVVHQU,9317
|
|
114
|
-
multipers/gudhi/gudhi/Persistence_matrix/columns/entry_types.h,sha256=pr30k1JnTL9wPSfZ4rD3qP6R1z_vGQ66OiXr3XehG2c,10385
|
|
115
|
-
multipers/gudhi/gudhi/Persistence_matrix/columns/heap_column.h,sha256=pq4uzk96mS2NjnOFvuK2t-tihB4_9TMmhjxzJHxhMe8,41594
|
|
116
|
-
multipers/gudhi/gudhi/Persistence_matrix/columns/intrusive_list_column.h,sha256=P0FOrmh-d2fjGcenMimOsQawJoNaFA2a2JnT_aDw8-E,37308
|
|
117
|
-
multipers/gudhi/gudhi/Persistence_matrix/columns/intrusive_set_column.h,sha256=H41LqdHfHMJjoExELvKRTPmGgNamE_olC0QqZi_Rjek,37168
|
|
118
|
-
multipers/gudhi/gudhi/Persistence_matrix/columns/list_column.h,sha256=xlz6oZMgBr4-f_3OBcEF9-Lk7Id4gJqDn4oB3W72SjE,38160
|
|
119
|
-
multipers/gudhi/gudhi/Persistence_matrix/columns/naive_vector_column.h,sha256=xlx8mx3WtcBE768GjgWVoJ3VAw1i2_-a7oJekFNQR6s,42763
|
|
120
|
-
multipers/gudhi/gudhi/Persistence_matrix/columns/row_access.h,sha256=o1iyRHw3dQF0P6iGYFIRDmfsN6Ghf86XLTxMcEjB52E,6204
|
|
121
|
-
multipers/gudhi/gudhi/Persistence_matrix/columns/set_column.h,sha256=Td-GEDTmAy1TbV9ACk-PQ_uc-RPQe_mezykVs6_OuGo,35505
|
|
122
|
-
multipers/gudhi/gudhi/Persistence_matrix/columns/small_vector_column.h,sha256=PsL6saWaL_8HFOCLbmY_84Zsd_LecDzPJ-PrAUlJuSo,42831
|
|
123
|
-
multipers/gudhi/gudhi/Persistence_matrix/columns/unordered_set_column.h,sha256=3gV3Mt6nDltY4lSkLEhnqgKNLupzzoC8S276hpwcOD4,39272
|
|
124
|
-
multipers/gudhi/gudhi/Persistence_matrix/columns/vector_column.h,sha256=cCdZog-s-mnZ95LDE6Xf8lrTynPKWnLrUN8BqgiQzkY,49334
|
|
125
|
-
multipers/gudhi/gudhi/Persistent_cohomology/Field_Zp.h,sha256=D0nxnzqVQ3xUu7r0mAQm7dFh3nKEdc9um25IfUa7E-w,3517
|
|
126
|
-
multipers/gudhi/gudhi/Persistent_cohomology/Multi_field.h,sha256=uuMEYkl0wpQeWnXddjt3UgrV_Xatlpr7xRgS-4PgnZY,5851
|
|
127
|
-
multipers/gudhi/gudhi/Persistent_cohomology/Persistent_cohomology_column.h,sha256=407Qu8rg4p50ddi6de9r0QJ3HhNvHzS2kQ6hIWf25Pg,4095
|
|
128
|
-
multipers/gudhi/gudhi/Simplex_tree/Simplex_tree_iterators.h,sha256=92RpmLHaixNl0L6_cE77uR-yrlSMVmUMbP_A4KBEuXE,15578
|
|
129
|
-
multipers/gudhi/gudhi/Simplex_tree/Simplex_tree_node_explicit_storage.h,sha256=OZIYJzFlwgp-WTF7oVbZEhf7WJNU7XNWFzsSG5aWQV0,2793
|
|
130
|
-
multipers/gudhi/gudhi/Simplex_tree/Simplex_tree_siblings.h,sha256=4YiaAY1tT-e1lakfem_tZQ6JbBWT58cw7W_8Pni6pOE,3134
|
|
131
|
-
multipers/gudhi/gudhi/Simplex_tree/Simplex_tree_star_simplex_iterators.h,sha256=6VEKFY98cv3xPOiC2ICVeZSfsiRNs4ByYOqUkkUuDXg,11451
|
|
132
|
-
multipers/gudhi/gudhi/Simplex_tree/hooks_simplex_base.h,sha256=iauK6vMo-w_oX9MjCuMfK4EP2l-tDIP58Tlm_6d_38Y,2466
|
|
133
|
-
multipers/gudhi/gudhi/Simplex_tree/indexing_tag.h,sha256=UNycWXg3kXbuRie_Vu2FiS6l9_9wD2j5VVJenfSx07k,747
|
|
134
|
-
multipers/gudhi/gudhi/Simplex_tree/serialization_utils.h,sha256=X9S6ajTP3p7QhtKbT4s-ypoUu31extLWJ_-6vt6wYm4,2138
|
|
135
|
-
multipers/gudhi/gudhi/Simplex_tree/simplex_tree_options.h,sha256=81UjukbBBbGkjOJmmlfXgyiWUfpeDK_Xp3BJpfWpv2Q,5693
|
|
136
|
-
multipers/ml/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
137
|
-
multipers/ml/accuracies.py,sha256=pEvmGfPIeZHnZLEckcbynyhRPDPt-b6ZeepmnbeNRkI,3030
|
|
138
|
-
multipers/ml/convolutions.py,sha256=0ADuIg4xvsCOu8weDXc4tnaEFfvRCMvG2_cNVfQU0DY,18384
|
|
139
|
-
multipers/ml/invariants_with_persistable.py,sha256=f0B83Dm0dJBUGUKBtnF0hevbFsZ9ASkx_g3eJAfsgxQ,2340
|
|
140
|
-
multipers/ml/kernels.py,sha256=s5PI41CZEqHsWTQ2Mqw7C1Hd--VrTzHkgZ4spPtJceM,6351
|
|
141
|
-
multipers/ml/mma.py,sha256=uMnWYZUB07KnMTIjCyEnhuNwXbm5MAknUTS_ILRYobc,24738
|
|
142
|
-
multipers/ml/one.py,sha256=BPt9aMW94hS9Fz3d0HnSxjpl6i7D8jXUNbZp0MWp-5U,20591
|
|
143
|
-
multipers/ml/point_clouds.py,sha256=GSYsSKrEFofhF_47P6DIQP0hc-9U3YM_4ho3lSbRpOw,13889
|
|
144
|
-
multipers/ml/signed_measures.py,sha256=wpGRXK0g4i0mes4JecJUdlHMSHjxuB2YAHS8equmNz4,59801
|
|
145
|
-
multipers/ml/sliced_wasserstein.py,sha256=enkXSKtNWhxfjdLWQdYQiZy5hWJX2XEUD_P4t6Mq9e4,19105
|
|
146
|
-
multipers/ml/tools.py,sha256=m6lEmOs9I28JphiuAr2QBlIAzj53JMWj9WQu3VJ0_Yg,3566
|
|
147
|
-
multipers/multi_parameter_rank_invariant/diff_helpers.h,sha256=uueZGKaTvAU984ReZWPl8C5Jw9xriKFTZWHq1grS85A,3624
|
|
148
|
-
multipers/multi_parameter_rank_invariant/euler_characteristic.h,sha256=Q6ewwzpkZ4dh5R_atqFxiwp2zQD8ANZFbKE78xHDPxo,3392
|
|
149
|
-
multipers/multi_parameter_rank_invariant/function_rips.h,sha256=gkDh3sJRxDmTiLSQNyviTLQ2YJvx9dZbPeFNieLlkQQ,13827
|
|
150
|
-
multipers/multi_parameter_rank_invariant/hilbert_function.h,sha256=VWw3pru4EcFjikr1nvqFuz73DmDTY6C24pdyMtSrLgo,37181
|
|
151
|
-
multipers/multi_parameter_rank_invariant/persistence_slices.h,sha256=YeA0kf8FsUalutjI4uPreDe0fck3VlPDEQ750f2UOMo,6134
|
|
152
|
-
multipers/multi_parameter_rank_invariant/rank_invariant.h,sha256=Lbk9gjr5yuTC4z0hw8FfdqutLSfrDJl8-rnKYiiZMjc,16740
|
|
153
|
-
multipers/multiparameter_module_approximation/approximation.h,sha256=JKTjAIw92OppP4Gh7RsNQzgdLF0YVFNBTbxYBrZA2RQ,97678
|
|
154
|
-
multipers/multiparameter_module_approximation/combinatory.h,sha256=d29vZ7xG0HX3qfQeCL80Dpw79h3l1lNjgGIT8EzUdR0,3734
|
|
155
|
-
multipers/multiparameter_module_approximation/debug.h,sha256=1cv0AKeLCKhmL-4UjQH37xSNk66XY7bekvdAbThzZVQ,2799
|
|
156
|
-
multipers/multiparameter_module_approximation/euler_curves.h,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
157
|
-
multipers/multiparameter_module_approximation/format_python-cpp.h,sha256=CVTOpgg5oucHOcen2dJRGA7ACp7oPsiBltbUQM3wrRI,10994
|
|
158
|
-
multipers/multiparameter_module_approximation/heap_column.h,sha256=DUWeCVIso7T7_oUbTYDiWZA_KzMu3DY59QzL6J-tHS0,6120
|
|
159
|
-
multipers/multiparameter_module_approximation/images.h,sha256=i9JONgCgzdXa57bowejiqziiBkrVfaJpoI--kXCjZlc,2294
|
|
160
|
-
multipers/multiparameter_module_approximation/list_column.h,sha256=Eke7OkBUMWW2qcNBq6CCT9_sntl7yHi3ItZYrtSD5uw,4327
|
|
161
|
-
multipers/multiparameter_module_approximation/list_column_2.h,sha256=kDn2FgeZuclfC0QSaNsYmVfbkINUqD1dY9VWe5gfiXI,6221
|
|
162
|
-
multipers/multiparameter_module_approximation/ru_matrix.h,sha256=LremM_kTdpQFafIOtRGQ65ZJjuGudHlPuYdVKMBrJIU,11317
|
|
163
|
-
multipers/multiparameter_module_approximation/set_column.h,sha256=MvkxRlHV31z1rG26ZIbhihioTrWZ0-H6DGx2OCiP_iw,3159
|
|
164
|
-
multipers/multiparameter_module_approximation/structure_higher_dim_barcode.h,sha256=TXFFj2YmIxP_Wnohe3MXAmExpdvTVc7F2ndveVCbQz0,1223
|
|
165
|
-
multipers/multiparameter_module_approximation/unordered_set_column.h,sha256=YGYN51G8vvWfY1h9mIjmZbNvTNUgU1j-sYsrokcnyUA,4729
|
|
166
|
-
multipers/multiparameter_module_approximation/utilities.h,sha256=NphDjixwlCh2faQEquF1oB-dweqRnUStc-bUShkFNm4,15693
|
|
167
|
-
multipers/multiparameter_module_approximation/vector_column.h,sha256=YmYUWK7d4C2iIEoCDVlZUKCwC2hpNsCWbnT_jx3mG68,5919
|
|
168
|
-
multipers/multiparameter_module_approximation/vector_matrix.h,sha256=bsTHLQIttPU7drYFVDbmUWEqx3r7hkwOJ82QUGUmVUo,10709
|
|
169
|
-
multipers/multiparameter_module_approximation/vineyards.h,sha256=MyvFLFgO6yBv7XwC4mwBg4MiFlgaAq-OO_CfEeobXyA,15158
|
|
170
|
-
multipers/multiparameter_module_approximation/vineyards_trajectories.h,sha256=oSZN7-_ksFhtOkKmvAVe8FslJKyDXI8dsnfIrXZFldQ,25941
|
|
171
|
-
multipers/tensor/tensor.h,sha256=BjXNwJKj8wgVTkyb3n_gTUq7EZYfbuKtLmUjxn25NPk,25916
|
|
172
|
-
multipers/tests/__init__.py,sha256=dcXYt43YZNSvakKP2C6ykr1w3NcJTnVjBfB7laFRcUU,1713
|
|
173
|
-
multipers/tests/test_diff_helper.py,sha256=ATuK_MueFRuL3JdvQbnRauuCE14pL6wZdwOPPY-72bo,3055
|
|
174
|
-
multipers/tests/test_hilbert_function.py,sha256=NEgCcoNqTABrJb6P1Zr6H3KJOfh6UFGCusBgAOFWAfQ,2731
|
|
175
|
-
multipers/tests/test_mma.py,sha256=uQ3qTJ4pCZ8wt3DTz4zoB9QzgOCeE0x4b0QmWEnT9vQ,3324
|
|
176
|
-
multipers/tests/test_point_clouds.py,sha256=w_k8Q678Zfv_tvTNeXXw6q7qXJZK7S68HM--wOLJ2Rk,1928
|
|
177
|
-
multipers/tests/test_python-cpp_conversion.py,sha256=gDwppWJbSLcweUtLGTd-Ibwt61t7a6JrGbM8Vxb05cM,3218
|
|
178
|
-
multipers/tests/test_signed_betti.py,sha256=s4Le5GH28HE9uF-04lJZO0OgyIRcPSQrjXO4MGaeMUY,5631
|
|
179
|
-
multipers/tests/test_signed_measure.py,sha256=8A-6O3hWWiK0SgJehVSl3wrBSC3F8b_mT4rUj00hw_0,2920
|
|
180
|
-
multipers/tests/test_simplextreemulti.py,sha256=N3fdefPdI7R73aB9_Yd-e6LFf4tw-q4mZikb-qvywO0,6830
|
|
181
|
-
multipers/tests/test_slicer.py,sha256=UlV5M1h7-_B3bqCNq6VUgyQc2iL5fUim37XWDI4HUK4,7362
|
|
182
|
-
multipers/torch/__init__.py,sha256=OLxIiZ389uCqehpUxBPUI_x1SYu531onc4tiTscAuIw,27
|
|
183
|
-
multipers/torch/diff_grids.py,sha256=4725AYpFpkdjiI9HXKV5Ii4IYCcrhCC3IMiAfTbwi8k,6962
|
|
184
|
-
multipers/torch/rips_density.py,sha256=tUPYXUM6G995k8FcC7ujCPYQ4furvPoMwJmoK-9Bbkg,11790
|
|
185
|
-
multipers-2.2.3.dist-info/LICENSE,sha256=Jr-C5CxbonXJhYJwqSA1T6s5f04s9JPxlTn7ERUUKgY,1092
|
|
186
|
-
multipers-2.2.3.dist-info/METADATA,sha256=VU2XV4tTkiggJxDPwDfb4fsC5ZMW00hDQL1yUyZ-O6Y,9976
|
|
187
|
-
multipers-2.2.3.dist-info/WHEEL,sha256=yNnHoQL2GZYIUXm9YvoaBpFjGlUoK9qq9oqYeudrWlE,101
|
|
188
|
-
multipers-2.2.3.dist-info/top_level.txt,sha256=L9e0AGmhRzrNw9FpuUx-zlqi5NcBOmrI9wYY8kYWr8A,10
|
|
189
|
-
multipers-2.2.3.dist-info/RECORD,,
|
|
File without changes
|