Cove - A Practical Quantum Computer Programming Framework
SliceReverse Method (StartIndex, StopIndex, Operation)
NamespacesCove.LocalSimulationQuantumRegisterSliceReverse(Int32, Int32, IQuantumOperation)
Returns a slice (subset) of the quantum register, but the ordering of the qubits in the returned register are reversed then have the specified operation applied.
Declaration Syntax
C#Visual BasicVisual C++
public IQuantumRegister SliceReverse(
	int StartIndex,
	int StopIndex,
	IQuantumOperation Operation
)
Public Function SliceReverse ( _
	StartIndex As Integer, _
	StopIndex As Integer, _
	Operation As IQuantumOperation _
) As IQuantumRegister
public:
virtual IQuantumRegister^ SliceReverse(
	int StartIndex, 
	int StopIndex, 
	IQuantumOperation^ Operation
) sealed
Parameters
StartIndex (Int32)
Starting index in the register to get the slice of.
StopIndex (Int32)
Ending index in the register to get the slice of.
Operation (IQuantumOperation)
The operation to apply to the slice.
Return Value
The quantum register representing the slice with the operation applied.
Exceptions
ExceptionCondition
IndexOutOfRangeExceptionThrown if the start or stop index parameters are out of range.
ArgumentOutOfRangeExceptionThrown if the stop index is less than the start index.
NotUnitaryOperationExceptionThrown if a non-unitary operation is passed. All quantum operations must be unitary.
SizeMismatchExceptionThrown if the size of one of the operations does not match the size of the register.
ArgumentExceptionThrown if the operation does not have AbstractSimulatedQuantumOperation as a base class.

Assembly: Cove.LocalSimulation (Module: Cove.LocalSimulation) Version: 1.0.0.0 (1.0.0.0)