The Quantum Exact Simulation Toolkit v4.0.0
Loading...
Searching...
No Matches

Functions for applying general two-qubit dense matrices, as CompMatr2. More...

Functions

void applyCompMatr2 (Qureg qureg, int target1, int target2, CompMatr2 matrix)
 
void applyControlledCompMatr2 (Qureg qureg, int control, int target1, int target2, CompMatr2 matr)
 
void applyMultiControlledCompMatr2 (Qureg qureg, int *controls, int numControls, int target1, int target2, CompMatr2 matr)
 
void applyMultiStateControlledCompMatr2 (Qureg qureg, int *controls, int *states, int numControls, int target1, int target2, CompMatr2 matr)
 
void multiplyCompMatr2 (Qureg qureg, int target1, int target2, CompMatr2 matr)
 

Detailed Description

Functions for applying general two-qubit dense matrices, as CompMatr2.

Function Documentation

◆ applyCompMatr2()

void applyCompMatr2 ( Qureg qureg,
int target1,
int target2,
CompMatr2 matrix )

Applies a general two-qubit dense unitary matrix to qubits target1 and target2 (treated as increasing significance) of qureg.

Diagram
Note
Documentation for this function or struct is under construction!

Definition at line 122 of file operations.cpp.

122 {
123
124 int targs[] = {target1, target2};
125 validateAndApplyAnyCtrlAnyTargUnitaryMatrix(qureg, nullptr, nullptr, 0, targs, 2, matrix, __func__);
126}

◆ applyControlledCompMatr2()

void applyControlledCompMatr2 ( Qureg qureg,
int control,
int target1,
int target2,
CompMatr2 matr )

Applies a singly-controlled two-qubit dense unitary matrix to qubits target1 and target2 (treated as increasing significance) of qureg.

Diagram
Note
Documentation for this function or struct is under construction!

Definition at line 128 of file operations.cpp.

128 {
129
130 int targs[] = {target1, target2};
131 validateAndApplyAnyCtrlAnyTargUnitaryMatrix(qureg, &control, nullptr, 1, targs, 2, matrix, __func__);
132}

◆ applyMultiControlledCompMatr2()

void applyMultiControlledCompMatr2 ( Qureg qureg,
int * controls,
int numControls,
int target1,
int target2,
CompMatr2 matr )

Applies a multiply-controlled two-qubit dense unitary matrix to qubits target1 and target2 (treated as increasing significance) of qureg.

Diagram
Note
Documentation for this function or struct is under construction!

Definition at line 134 of file operations.cpp.

134 {
135
136 int targs[] = {target1, target2};
137 validateAndApplyAnyCtrlAnyTargUnitaryMatrix(qureg, controls, nullptr, numControls, targs, 2, matrix, __func__);
138}

◆ applyMultiStateControlledCompMatr2()

void applyMultiStateControlledCompMatr2 ( Qureg qureg,
int * controls,
int * states,
int numControls,
int target1,
int target2,
CompMatr2 matr )

Applies an arbitrarily-controlled two-qubit dense unitary matrix to qubits target1 and target2 (treated as increasing significance) of qureg, conditioned upon the controls being in the given states.

Diagram
Note
Documentation for this function or struct is under construction!

Definition at line 140 of file operations.cpp.

140 {
141
142 int targs[] = {target1, target2};
143 validateAndApplyAnyCtrlAnyTargUnitaryMatrix(qureg, controls, states, numControls, targs, 2, matrix, __func__);
144}

Referenced by applyMultiStateControlledSqrtSwap().

◆ multiplyCompMatr2()

void multiplyCompMatr2 ( Qureg qureg,
int target1,
int target2,
CompMatr2 matr )
Note
Documentation for this function or struct is under construction!

Definition at line 112 of file operations.cpp.

112 {
113 validate_quregFields(qureg, __func__);
114 validate_twoTargets(qureg, target1, target2, __func__);
115 validate_matrixFields(matrix, __func__); // matrix can be non-unitary
116 validate_mixedAmpsFitInNode(qureg, 2, __func__);
117
118 bool conj = false;
119 localiser_statevec_anyCtrlTwoTargDenseMatr(qureg, {}, {}, target1, target2, matrix, conj);
120}