forked from lizbradley/PHETS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.py
37 lines (34 loc) · 850 Bytes
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
SAMPLE_RATE = 44100.
find_landmarks_c_compile_str = {
'linux': 'gcc -fopenmp -lm -o find_landmarks -O3 find_landmarks.c',
'macOS': 'gcc-5 -fopenmp -o find_landmarks -03 find_landmarks.c'
}
gnuplot_str = 'gnuplot'
default_filtration_params = {
"num_divisions": 50,
"max_filtration_param": -20,
"min_filtration_param": 0,
"start": 0,
"worm_length": None,
"ds_rate": 50,
"landmark_selector": "maxmin",
"use_ne_for_maxmin": False,
"d_speed_amplify": 1,
"d_orientation_amplify": 1,
"d_stretch": 1,
"d_ray_distance_amplify": 1,
"d_use_hamiltonian": 1,
"d_cov" : 0,
"simplex_cutoff": 0,
"weak": False,
"absolute": False,
"use_cliques": False,
"use_twr": False,
"m2_d": 0,
"straight_VB": 0,
"dimension_cutoff": 2,
"connect_time_1_skeleton": False,
"reentry_filter": False,
"store_top_simplices": True,
"graph_induced": False
}