Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion include/simde/types.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
#include <chemist/chemist.hpp>
#include <map>
#include <tensorwrapper/tensorwrapper.hpp>
#include <utilities/dsl/dsl.hpp>
#include <utility>

/** @file types.hpp
Expand Down Expand Up @@ -98,7 +99,7 @@ using braket = chemist::braket::BraKet<BraType, OpType, KetType>;
using aos = chemist::wavefunction::AOs;

/// Typedef of the class used to represent a product of atomic orbital spaces
using aos_squared = chemist::dsl::Multiply<aos, aos>;
using aos_squared = utilities::dsl::Multiply<aos, aos>;

/// Typedef of the class used to represent transformed AOs
using mos = chemist::wavefunction::MOs;
Expand Down
Loading