Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Overlap and Fock typedefs #156

Merged
merged 2 commits into from
Dec 16, 2024
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
6 changes: 5 additions & 1 deletion include/simde/evaluate_braket/evaluate_braket.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,12 @@ TEMPLATED_PROPERTY_TYPE_RESULTS(EvaluateBraKet, BraKetType) {

#define EBK(bra, op, ket) EvaluateBraKet<type::braket<bra, op, ket>>

using aos_s_e_aos = EBK(type::aos, type::s_e_type, type::aos);
using aos_t_e_aos = EBK(type::aos, type::t_e_type, type::aos);
using aos_v_en_aos = EBK(type::aos, type::v_en_type, type::aos);
using aos_f_e_aos = EBK(type::aos, type::fock, type::aos);
using aos_j_e_aos = EBK(type::aos, type::j_e_type, type::aos);
using aos_k_e_aos = EBK(type::aos, type::k_e_type, type::aos);

// One electron density templated on the representation of the density operator
template<typename OrbitalType>
Expand All @@ -54,4 +58,4 @@ using ESCF = EBK(type::determinant<OrbitalType>, type::hamiltonian,
type::determinant<OrbitalType>);
#undef EBK

} // namespace simde
} // namespace simde
Loading