Skip to content

Commit

Permalink
Considerably increase default linear dependence cutoffs in density fi…
Browse files Browse the repository at this point in the history
…tting, since this appears to be important for numerical stability.
  • Loading branch information
susilehtola committed Jan 21, 2024
1 parent cb5bb90 commit 6373505
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,8 @@ void Settings::add_scf_settings() {
// How much memory to allow for density fitting
add_int("FittingMemory", "Amount of memory in MB to use for exchange fitting",1000);
// Threshold for screening eigenvectors
add_double("FittingThreshold", "Linear dependence threshold for Coulomb integrals in density fitting",1e-8);
add_double("FittingCholeskyThreshold", "Linear dependence threshold for pivoted Cholesky of Coulomb integrals in density fitting",1e-9);
add_double("FittingThreshold", "Linear dependence threshold for Coulomb integrals in density fitting",1e-5);
add_double("FittingCholeskyThreshold", "Linear dependence threshold for pivoted Cholesky of Coulomb integrals in density fitting",1e-6);

// SAP basis
add_string("SAPBasis", "Tabulated atomic effective potential \"basis set\"","helfem_large.gbs");
Expand Down

0 comments on commit 6373505

Please sign in to comment.