Skip to content

Commit

Permalink
fix general integral adjust order int32 overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
hczhai committed Sep 15, 2023
1 parent ef6dba4 commit 3ad53d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/integral_general.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ template <typename FL> struct GeneralFCIDUMP {
for (auto &x : idx_perm_mp[i])
idx_pats[x.second] = make_pair(i, x.first);
// first divide all indices according to scheme classes
vector<vector<int>> idx_patidx(kk);
vector<vector<size_t>> idx_patidx(kk);
if (indices.size() == 0)
continue;
vector<uint16_t> idx_idx(nn), idx_pat(nn), idx_mat(nn);
Expand Down

0 comments on commit 3ad53d6

Please sign in to comment.