Internals

Auto generated docs for functions and types that are not exported. Mostly for development use.

Types

SpinAdaptedSecondQuantization.KroneckerDeltaType
KroneckerDelta

Type representing a Kronecker delta of two or more MO-indices.

Note

When constructing a KroneckerDelta it will return the integer 1 if the delta does not include two or more distinkt indices.

source

Functions

Base.:==Method
Base.:==(::Operator, ::Operator)

This has to be explicitly implemented for each operator type.

source
Base.islessMethod
Base.isless(::Operator, ::Operator)

All operator types must implement how they should be sorted among themselves (isless(::O, ::O)) and with respect to all other operator types that it is expected to be used together with (isless(::A, ::B)).

The implementation for how it sorts among the same operator type should be implemented in the definition file for that operator type.

The implementation for how the type sorts compared to other operator types should be added to the src/operators/sorting.jl file. These should be dummy routines that simply return true or false, and do not depend on the contents of the operators.

Note

Only one order needs to be implemented, meaning if isless(::A, ::B) is implemented, there is no need to also implement isless(::B, ::A)

source
Base.showMethod
Base.show(::IO, ::Tuple{Operator,Constraints,IndexTranslation})

All typed extending Operator must overload this function.

source
SpinAdaptedSecondQuantization.compact_deltasMethod
compact_deltas(deltas::Vector{KroneckerDelta})

Returns a new reduced Vector{KroneckerDelta} where there exists only one delta per group of equal indices.

Example:

δ_pq δ_qr δ_st -> δ_pqr δst
source
SpinAdaptedSecondQuantization.reductive_commutatorMethod
reductive_commutator(::Operator, ::Operator)

Defines how operators commute. This will act as either a commutator or anticommutator depending on which reduces the rank of the resulting operators.

Returns a Tuple{Int,Expression} which gives the type of commutator used and the resulting expression. The type is signaled by returning 1 or -1 as the first element of the tuple. This represents the sign change by commutation which is 1 for a normal commutator $([A, B] = 0 ⇒ AB == BA)$ and -1 for an anticommutator $([A, B]_+ = 0 ⇒ AB = -BA)$

This should be implemented for all pairs of operators types that are expected to show up in the same expression. The implementations should be put in the src/operators/commutation_relations.jl file.

Note

Only one order needs to be implemented, meaning if reductive_commutator(::A, ::B) is implemented, there is no need to also implement reductive_commutator(::B, ::A)

source