Skip to content

Commit 62326cb

Browse files
committed
update batch_processing comments
1 parent e048cdf commit 62326cb

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

definitions/algorithms/batch_processing.py

+10-7
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# ├── MAMBO
1515
# │ └── <every 'step' data folder>
1616
# │ ├── Gmsh_0.1
17-
# │ │ ├── graphcut_labeling_1_6_1e-9_0.05 # compactness=1, fidelity=6, sensitivity=1e-9, angle of rotation=0.05
17+
# │ │ ├── graphcut_labeling_1_6_1e-9_0.05 # compactness=1, fidelity=6, sensitivity=1e-9, angle of rotation=0.05. init labeling for automatic_polycube
1818
# │ │ │ └── automatic_polycube_YYYYMMDD_HHMMSS
1919
# │ │ │ └── polycube_withHexEx_1.3 # scale of 1.3
2020
# │ │ │ └── global_padding
@@ -25,12 +25,15 @@
2525
# │ │ └── inner_smoothing_50 # 50 smoothing iterations
2626
# │ └── Gmsh_0.15 # coarser tetrahedal mesh to fall below the 300k cells limits of the polycut demo executable
2727
# │ └── PolyCut_3 # compactness factor of 3
28-
# │ └── optimizer_100 # hex-mesh extraction method by PolyCut authors
29-
# │ └── untangler # hex-mesh untangling method by PolyCut authors, Livesu et al. 2015, doi:10.1145/2766905
28+
# │ ├── optimizer_100 # hex-mesh extraction method by PolyCut authors
29+
# │ │ └── untangler # hex-mesh untangling method by PolyCut authors, Livesu et al. 2015, doi:10.1145/2766905
30+
# │ └── polycube_withHexEx_1.3 # scale of 1.3
31+
# │ └── global_padding
32+
# │ └── inner_smoothing_50 # 50 smoothing iterations
3033
# └── OctreeMeshing
3134
# └── cad
3235
# └── <every 'tet-mesh' data folder>
33-
# ├── graphcut_labeling_1_6_1e-9_0.05 # compactness=1, fidelity=6, sensitivity=1e-9, angle of rotation=0.05
36+
# ├── graphcut_labeling_1_6_1e-9_0.05 # compactness=1, fidelity=6, sensitivity=1e-9, angle of rotation=0.05. init labeling for automatic_polycube
3437
# │ └── automatic_polycube_YYYYMMDD_HHMMSS
3538
# │ └── polycube_withHexEx_1.3 # scale of 1.3
3639
# │ └── global_padding
@@ -61,9 +64,9 @@
6164
AUTOMATIC_POLYCUBE_OUTPUT_MISSING_POLICY = 'ask'
6265
EVOCUBE_OUTPUT_MISSING_POLICY = 'ask'
6366
POLYCUT_OUTPUT_MISSING_POLICY = 'pass' # on Windows only. selector for not only PolyCut itself, but the whole pipeline their provide (with hex-meshing & untangling)
64-
POLYCUBE_WITHHEXEX_OUTPUT_MISSING_POLICY = 'run'
65-
GLOBAL_PADDING_OUTPUT_MISSING_POLICY = 'run'
66-
INNER_SMOOTHING_OUTPUT_MISSING_POLICY = 'run'
67+
POLYCUBE_WITHHEXEX_OUTPUT_MISSING_POLICY = 'ask'
68+
GLOBAL_PADDING_OUTPUT_MISSING_POLICY = 'ask'
69+
INNER_SMOOTHING_OUTPUT_MISSING_POLICY = 'ask'
6770

6871
RUNNING_ALGO_LINE_TEMPLATE = "Running [green]{algo}[/] on [cyan]{path}[/]"
6972
EXISTING_OUTPUT_LINE_TEMPLATE = "\[[bright_black]-[/]] [green]{algo}[/] on [cyan]{path}[/]" # type: ignore

0 commit comments

Comments
 (0)