Skip to content

Commit

Permalink
chore: increasing search cutoff
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin M. Jablonka committed Dec 17, 2020
1 parent 47b27f9 commit 4efa3ca
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=10,
search_cutoff=13,
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=10, compute_adj_neighbors=False),
VoronoiNN(weight=self.weight, cutoff=13, compute_adj_neighbors=False),
strc,
idx,
)
Expand Down

0 comments on commit 4efa3ca

Please sign in to comment.