GQCP
Loading...
Searching...
No Matches
SpinDensity1DM.hpp
Go to the documentation of this file.
1// This file is part of GQCG-GQCP.
2//
3// Copyright (C) 2017-2020 the GQCG developers
4//
5// GQCG-GQCP is free software: you can redistribute it and/or modify
6// it under the terms of the GNU Lesser General Public License as published by
7// the Free Software Foundation, either version 3 of the License, or
8// (at your option) any later version.
9//
10// GQCG-GQCP is distributed in the hope that it will be useful,
11// but WITHOUT ANY WARRANTY; without even the implied warranty of
12// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13// GNU Lesser General Public License for more details.
14//
15// You should have received a copy of the GNU Lesser General Public License
16// along with GQCG-GQCP. If not, see <http://www.gnu.org/licenses/>.
17
18#pragma once
19
20
24
25
26namespace GQCP {
27
28
29/*
30 * MARK: SpinDensity1DM implementation
31 */
32
40template <typename _Scalar>
42 public Simple1DM<_Scalar, SpinDensity1DM<_Scalar>> {
43public:
44 // The scalar type used for a density matrix element: real or complex.
45 using Scalar = _Scalar;
46
47public:
48 /*
49 * MARK: Constructors
50 */
51
52 // Inherit `Simple1DM`'s constructors.
54};
55
56
57/*
58 * MARK: BasisTransformableTraits
59 */
60
64template <typename Scalar>
66
67 // The type of transformation that is naturally related to a `SpinDensity1DM`.
69};
70
71
72/*
73 * MARK: JacobiRotatableTraits
74 */
75
79template <typename Scalar>
81
82 // The type of Jacobi rotation that is naturally related to a `SpinDensity1DM`.
84};
85
86
87/*
88 * MARK: DensityMatrixTraits
89 */
90
94template <typename Scalar>
96
97 // The type of transformation that is naturally related to a `SpinDensity1DM`. The only transformations that should be naturally possible for a a spin-density 1-DM are restricted transformations, that transform the alpha- and beta-spin-orbitals equally.
99};
100
101
102} // namespace GQCP
Definition: JacobiRotation.hpp:33
Definition: Simple1DM.hpp:48
Definition: SpinDensity1DM.hpp:42
_Scalar Scalar
Definition: SpinDensity1DM.hpp:45
Definition: BaseOneElectronIntegralBuffer.hpp:25
Definition: BasisTransformable.hpp:37
Definition: DensityMatrixTraits.hpp:28
Definition: JacobiRotatable.hpp:37