We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1be3aca commit f2ebe0fCopy full SHA for f2ebe0f
1 file changed
python/src/libint2/libint2.cc
@@ -138,9 +138,9 @@ std::vector<double> coeffs_normalized(const Shell &s) {
138
139
PYBIND11_MODULE(libint2, m) {
140
py::enum_<SHGShellOrdering>(m, "SHGShellOrdering")
141
- .value("SHGShellOrdering_Standard", libint2::SHGShellOrdering_Standard)
142
- .value("SHGShellOrdering_Gaussian", libint2::SHGShellOrdering_Gaussian)
143
- .value("SHGShellOrdering_MOLDEN", libint2::SHGShellOrdering_Gaussian);
+ .value("Standard", libint2::SHGShellOrdering_Standard)
+ .value("Gaussian", libint2::SHGShellOrdering_Gaussian)
+ .value("MOLDEN", libint2::SHGShellOrdering_Gaussian);
144
145
libint2::initialize();
146
0 commit comments