diff --git a/include/libint2/shell.h b/include/libint2/shell.h index 48d94583f..5dffbb8ef 100644 --- a/include/libint2/shell.h +++ b/include/libint2/shell.h @@ -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 _alpha, svector _contr, std::array _O, bool embed_normalization_into_coefficients = true)