diff --git a/export/cmake/configuration-gen.py b/export/cmake/configuration-gen.py index 502cb6eb1..4a79471f5 100644 --- a/export/cmake/configuration-gen.py +++ b/export/cmake/configuration-gen.py @@ -21,7 +21,7 @@ # >>> End user edit -amstr = "SPDFGHIKLMNOPQRTUVWXYZ" +amstr = "SPDFGHIKLMNOQRTUVWXYZ" components = [orderings] # multipole diff --git a/include/libint2/shell.h b/include/libint2/shell.h index faa1c0647..44c705b82 100644 --- a/include/libint2/shell.h +++ b/include/libint2/shell.h @@ -217,7 +217,7 @@ struct Shell { /// `l=0`, `p` for `l=1`, etc. /// @throw std::invalid_argument if \c l is greater than 19 static char am_symbol(size_t l) { - static char lsymb[] = "spdfghikmnoqrtuvwxyz"; + static char lsymb[] = "spdfghiklmnoqrtuvwxyz"; assert(l <= 19); return lsymb[l]; } diff --git a/src/bin/test_eri/time_eri.cc b/src/bin/test_eri/time_eri.cc index 4b3c5c31c..ae2c0e592 100644 --- a/src/bin/test_eri/time_eri.cc +++ b/src/bin/test_eri/time_eri.cc @@ -135,7 +135,7 @@ std::string usage() { } std::string am2label(unsigned int l) { - static char labels[] = "spdfghiklmoqrtuvwxyz"; + static char labels[] = "spdfghiklmnoqrtuvwxyz"; std::ostringstream oss; oss << labels[l]; return oss.str();