Skip to content

Commit

Permalink
chore: reverting cutoffs
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin M. Jablonka committed Dec 17, 2020
1 parent 4efa3ca commit f9b3c1b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion oximachine_featurizer/crystalnn.py
Expand Up @@ -32,7 +32,7 @@ def __init__(
distance_cutoffs=(0.5, 1),
x_diff_weight=3.0,
porous_adjustment=True,
search_cutoff=13,
search_cutoff=8,
fingerprint_length=None,
):
"""
Expand Down
2 changes: 1 addition & 1 deletion oximachine_featurizer/featurizer_local_property.py
Expand Up @@ -83,7 +83,7 @@ def featurize(self, strc, idx):

# Get the tessellation of a site
nn = get_nearest_neighbors(
VoronoiNN(weight=self.weight, cutoff=13, compute_adj_neighbors=False),
VoronoiNN(weight=self.weight, cutoff=8, compute_adj_neighbors=False),
strc,
idx,
)
Expand Down

0 comments on commit f9b3c1b

Please sign in to comment.