FermionTerm Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| FermionTerm(LadderSequence<Int32>) |
Construct fermion term instance from a normal-ordered sequence of ladder operators. |
| FermionTerm(IEnumerable<LadderOperator<Int32>>, Int32) |
Construct instance from a normal-ordered sequence of ladder operators. |
FermionTerm(LadderSequence<Int32>)
Construct fermion term instance from a normal-ordered sequence of ladder operators.
public FermionTerm (Microsoft.Quantum.Chemistry.LadderOperators.LadderSequence<int> ladderOperators);
new Microsoft.Quantum.Chemistry.Fermion.FermionTerm : Microsoft.Quantum.Chemistry.LadderOperators.LadderSequence<int> -> Microsoft.Quantum.Chemistry.Fermion.FermionTerm
Public Sub New (ladderOperators As LadderSequence(Of Integer))
Parameters
- ladderOperators
- LadderSequence<Int32>
Normal-ordered sequence of ladder operators.
Applies to
FermionTerm(IEnumerable<LadderOperator<Int32>>, Int32)
Construct instance from a normal-ordered sequence of ladder operators.
public FermionTerm (System.Collections.Generic.IEnumerable<Microsoft.Quantum.Chemistry.LadderOperators.LadderOperator<int>> ladderOperators, int coefficient = 1);
new Microsoft.Quantum.Chemistry.Fermion.FermionTerm : seq<Microsoft.Quantum.Chemistry.LadderOperators.LadderOperator<int>> * int -> Microsoft.Quantum.Chemistry.Fermion.FermionTerm
Public Sub New (ladderOperators As IEnumerable(Of LadderOperator(Of Integer)), Optional coefficient As Integer = 1)
Parameters
- ladderOperators
- IEnumerable<LadderOperator<Int32>>
Normal-ordered sequence of ladder operators.
- coefficient
- Int32
Coefficient as the sign (-1 or +1) of a ladder operator.