Skip to content

Commit

Permalink
Merge pull request #325 from evaleev/loriab-patch-1
Browse files Browse the repository at this point in the history
AM symbols list
  • Loading branch information
evaleev authored Feb 9, 2024
2 parents 30b824a + f713421 commit 2cfca91
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion export/cmake/configuration-gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

# >>> End user edit

amstr = "SPDFGHIKLMNOPQRTUVWXYZ"
amstr = "SPDFGHIKLMNOQRTUVWXYZ"
components = [orderings]

# multipole
Expand Down
2 changes: 1 addition & 1 deletion include/libint2/shell.h
Original file line number Diff line number Diff line change
Expand Up @@ -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];
}
Expand Down
2 changes: 1 addition & 1 deletion src/bin/test_eri/time_eri.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 2cfca91

Please sign in to comment.