Skip to content

Commit e098823

Browse files
authored
Documentation for mesh_doctor (#2684)
* First shot * Finish all the modules * log message * debug * add programoutput * Install program-output! * Define cwd * correct cwd * Use command-output instead of program-output * Improve the messages a tad * Apply suggestions from code review Co-authored-by: Jian Huang <[email protected]> * Refine explaination after review comments.
1 parent 5338d32 commit e098823

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

geosx_mesh_doctor/parsing/self_intersecting_elements_parsing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def fill_subparser(subparsers) -> None:
2727
required=False,
2828
metavar=__TOLERANCE_DEFAULT,
2929
default=__TOLERANCE_DEFAULT,
30-
help=f"[float]: The tolerance in the computation. Defaults to machine precision {__TOLERANCE_DEFAULT}")
30+
help=f"[float]: The tolerance in the computation. Defaults to your machine precision {__TOLERANCE_DEFAULT}.")
3131

3232

3333
def display_results(options: Options, result: Result):

geosx_mesh_doctor/parsing/supported_elements_parsing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def fill_subparser(subparsers) -> None:
3434
required=False,
3535
metavar=__NUM_PROC_DEFAULT,
3636
default=__NUM_PROC_DEFAULT,
37-
help=f"[int]: Number of threads used for parallel processing. Defaults to {__NUM_PROC_DEFAULT}")
37+
help=f"[int]: Number of threads used for parallel processing. Defaults to your CPU count {__NUM_PROC_DEFAULT}.")
3838

3939

4040
def display_results(options: Options, result: Result):

0 commit comments

Comments
 (0)