-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
More comprehensive optimiser convergence checks (#351)
* optimiser criteria * minor edits * simplify convergence criteria * unfinished update * convergence criteria set * minor update * unfinished update * new update * unfinished updates * replace tol in DHS * improve sign usage * unfinished bugfix * refactor class * update dhs class * minor update * fix some tests * minor update * minor update * allow None values in convergence criteria * refactor convergence params * fix some tests * update some tests * fixed crfo tests * fixed prfo tests * more test fixes * black fix * fix nwchem issues * fix xtb issues * updated parameters * add tests, remove redundant code * fix bug * bug fix 2 * pr suggestion 1 * pr suggestion 2 * pr suggestion 3 * pr suggestion 3 * pr suggestion 4 * update changelog
- Loading branch information
1 parent
8be1e8a
commit d4ba0a4
Showing
19 changed files
with
531 additions
and
318 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,20 @@ | ||
from autode.opt.optimisers.base import NDOptimiser | ||
from autode.opt.optimisers.base import NDOptimiser, ConvergenceParams | ||
from autode.opt.optimisers.rfo import RFOptimiser | ||
from autode.opt.optimisers.prfo import PRFOptimiser | ||
from autode.opt.optimisers.crfo import CRFOptimiser | ||
from autode.opt.optimisers.qa import QAOptimiser | ||
from autode.opt.optimisers.steepest_descent import ( | ||
CartesianSDOptimiser, | ||
DIC_SD_Optimiser, | ||
) | ||
|
||
__all__ = [ | ||
"NDOptimiser", | ||
"ConvergenceParams", | ||
"RFOptimiser", | ||
"PRFOptimiser", | ||
"CRFOptimiser", | ||
"QAOptimiser", | ||
"CartesianSDOptimiser", | ||
"DIC_SD_Optimiser", | ||
] |
Oops, something went wrong.