From e1c39f5137cd2978d43559b8c02593a9179ce7ea Mon Sep 17 00:00:00 2001 From: "Jonathan M. Waldrop" Date: Wed, 2 Apr 2025 15:11:18 -0500 Subject: [PATCH] aos_squared is std::pair --- include/simde/types.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/simde/types.hpp b/include/simde/types.hpp index 9f391040..775463a8 100644 --- a/include/simde/types.hpp +++ b/include/simde/types.hpp @@ -99,7 +99,7 @@ using braket = chemist::braket::BraKet; using aos = chemist::wavefunction::AOs; /// Typedef of the class used to represent a product of atomic orbital spaces -using aos_squared = utilities::dsl::Multiply; +using aos_squared = std::pair; /// Typedef of the class used to represent transformed AOs using mos = chemist::wavefunction::MOs;