Skip to content

Commit

Permalink
changed global min candidates back to 1
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicholas Ury committed Oct 15, 2024
1 parent 219723a commit 5149c76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pycalphad/mapping/strategy/strategy_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def __init__(self, dbf: Database, components: list[str], phases: list[str], cond
self.GLOBAL_CHECK_INTERVAL = kwargs.get("GLOBAL_CHECK_INTERVAL", 1)
self.GLOBAL_MIN_PDENS = kwargs.get("GLOBAL_MIN_PDENS", 500)
self.GLOBAL_MIN_TOL = kwargs.get("GLOBAL_MIN_TOL", 1e-4)
self.GLOBAL_MIN_NUM_CANDIDATES = kwargs.get("GLOBAL_MIN_NUM_CANDIDATES", 1000)
self.GLOBAL_MIN_NUM_CANDIDATES = kwargs.get("GLOBAL_MIN_NUM_CANDIDATES", 1)

def _constant_kwargs(self):
"""
Expand Down

0 comments on commit 5149c76

Please sign in to comment.