Skip to content

Commit

Permalink
fix small bug and change defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Schwalbe-Koda committed Jul 14, 2020
1 parent be52dc3 commit fd7ab27
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion moldocker/fitness/target.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
class TargetFitness(Fitness):
"""Fitness function that optimizes a target property"""

def __init__(self, target=TARGET, tolerance=TOLERANCE):
def __init__(self, target=TARGET, tolerance=TOLERANCE, **kwargs):
"""
Args:
target (float): target value for the property
Expand Down
2 changes: 1 addition & 1 deletion moldocker/samplers/voronoi.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

PROBE_RADIUS = 0.1
MIN_VORONOI_RADIUS = 3.0
REMOVE_SPECIES = ["O"]
REMOVE_SPECIES = []
NUM_CLUSTERS = 10


Expand Down

0 comments on commit fd7ab27

Please sign in to comment.