We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d98b4b commit 8d2b8b4Copy full SHA for 8d2b8b4
1 file changed
python/simpleicp/simpleicp.py
@@ -46,9 +46,7 @@ def __init__(self, verbose: bool = True) -> None:
46
Constructor method.
47
48
Args:
49
- verbose (bool): print information about the ICP run to stdout. Defaults to True
50
- to preserve the pre-logging behavior of simpleicp; pass verbose=False to
51
- silence stdout, or configure the "simpleicp" logger directly for full control.
+ verbose (bool): print information about the ICP run to stdout.
52
"""
53
54
self.pc1 = None
@@ -188,7 +186,7 @@ def run(
188
186
189
187
self.pc2.transform_by_H(H) # temporarily transform pc2
190
if debug_dirpath:
191
- if it == 0: # write only in first iteration
+ if it == 0: # write only in first iteration
192
self.pc1.write_xyz(
193
Path(debug_dirpath).joinpath(
194
f"iteration{it:03d}_preoptim_pcfix.xyz"
0 commit comments