Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions include/libint2/shell.h
Original file line number Diff line number Diff line change
Expand Up @@ -761,9 +761,11 @@ struct Shell {
max_ln_coeff = std::move(other.max_ln_coeff);
return *this;
}
/// @param embed_normalization_into_coefficients if true, will embed
/// normalization factors into coefficients, else will use the coefficients in
/// @p _contr as given
/// @param embed_normalization_into_coefficients is used to control whether
/// or not Shell should treat the coefficients as already normalized. If
/// embed_normalization_into_coefficients is true Shell will normalize the
/// primitives and update the coefficients to include the normalization, else
/// Shell will use the coefficients in @p _contr as given
Shell(svector<real_t> _alpha, svector<Contraction> _contr,
std::array<real_t, 3> _O,
bool embed_normalization_into_coefficients = true)
Expand Down