Skip to content

Commit 1b6e6ce

Browse files
committed
Adds proper termination
1 parent a329bd5 commit 1b6e6ce

File tree

4 files changed

+12
-0
lines changed

4 files changed

+12
-0
lines changed

docs/protein-optimization/using_poli/objective_repository/foldx_sasa.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,9 @@ print(x0)
8383

8484
# Querying:
8585
print(y0) # The stability of your wildtype
86+
87+
# Terminate the process.
88+
f.terminate()
8689
```
8790

8891
```{warning}

docs/protein-optimization/using_poli/objective_repository/foldx_stability.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,9 @@ print(x0)
8383

8484
# Querying:
8585
print(y0) # The stability of your wildtype
86+
87+
# Terminate the process.
88+
f.terminate()
8689
```
8790

8891
```{warning}

docs/protein-optimization/using_poli/objective_repository/rdkit_logp.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,9 @@ x = np.array([[1]])
8989

9090
# Querying:
9191
print(f(x)) # Should be close to 0.6361
92+
93+
# Terminate the process.
94+
f.terminate()
9295
```
9396

9497
```{warning}

docs/protein-optimization/using_poli/objective_repository/rdkit_qed.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,9 @@ x = np.array([[1]])
8989

9090
# Querying:
9191
print(f(x)) # Should be close to 0.35978
92+
93+
# Terminate the process.
94+
f.terminate()
9295
```
9396

9497
```{warning}

0 commit comments

Comments
 (0)