|
Maestro 0.2.11
Unified interface for quantum circuit simulation
|
The S gate. More...
#include <QuantumGates.h>
Public Member Functions | |
| SGate (Types::qubit_t qubit=0, Time delay=0) | |
| SGate constructor. | |
| virtual std::vector< size_t > | AffectedBits () const |
| Returns the affected bits. | |
| Types::qubits_vector | AffectedQubits () const override |
| Get the qubits the quantum gate is applied to. | |
| virtual bool | CanAffectQuantumState () const |
| Find if the operation can affect the quantum state. | |
| std::shared_ptr< IOperation< Time > > | Clone () const override |
| Get a shared pointer to a clone of this object. | |
| void | Execute (const std::shared_ptr< Simulators::ISimulator > &sim, OperationState &state) const override |
| Execute the quantum gate. | |
| Types::time_type | GetDelay () const |
| Get the delay of the operation. | |
| QuantumGateType | GetGateType () const override |
| Get the type of the quantum gate. | |
| unsigned int | GetNumQubits () const override |
| Get the number of qubits the quantum gate is applied to. | |
| virtual std::vector< double > | GetParams () const |
| Get the gate parameters. | |
| std::shared_ptr< IOperation< Types::time_type > > | getptr () |
| Get a shared pointer to this object. | |
| Types::qubit_t | GetQubit (unsigned int index=0) const override |
| Get the qubit the quantum gate is applied to. | |
| OperationType | GetType () const override |
| Get the type of the operation. | |
| virtual bool | IsBranching () const |
| Checks if the operation is a branching one. | |
| bool | IsClifford () const override |
| Checks if the operation is a Clifford one. | |
| virtual bool | IsConditional () const |
| Find if the operation is a conditional operation. | |
| virtual bool | NeedsEntanglementForDistribution () const |
| Find if the operation needs entanglement for distribution. | |
| std::shared_ptr< IOperation< Types::time_type > > | Remap (const std::unordered_map< Types::qubit_t, Types::qubit_t > &qubitsMap, const std::unordered_map< Types::qubit_t, Types::qubit_t > &bitsMap={}) const override |
| Get a shared pointer to a remapped operation. | |
| void | SetDelay (Types::time_type d) |
| Set the delay of the operation. | |
| void | SetQubit (Types::qubit_t q, unsigned long index=0) override |
| Set the qubit the quantum gate is applied to. | |
The S gate.
The S gate.
| Time | The type of the execution delay. |
Definition at line 883 of file QuantumGates.h.
|
inline |
SGate constructor.
Constructs the SGate object. If specified, the delay is the time the quantum gate takes to execute.
| qubit | The qubit the quantum gate is applied to. |
| delay | The time the quantum gate takes to execute. |
Definition at line 894 of file QuantumGates.h.
References Circuits::SingleQubitGate< Types::time_type >::SingleQubitGate().
|
inlinevirtualinherited |
Returns the affected bits.
Returns the affected classical bits.
Reimplemented in Circuits::Circuit< Time >, Circuits::Circuit< Types::time_type >, Circuits::IConditionalOperation< Time >, Circuits::IConditionalOperation< Types::time_type >, Circuits::MeasurementOperation< Time >, and Circuits::Random< Time >.
Definition at line 478 of file Operations.h.
|
inlineoverridevirtualinherited |
Get the qubits the quantum gate is applied to.
Returns the qubits the quantum gate is applied to, in this case a single qubit.
Reimplemented from Circuits::IOperation< Types::time_type >.
Definition at line 176 of file QuantumGates.h.
|
inlinevirtualinherited |
Find if the operation can affect the quantum state.
Returns true if the operation can affect the quantum state, false otherwise.
Reimplemented in Circuits::Circuit< Time >, and Circuits::Circuit< Types::time_type >.
Definition at line 429 of file Operations.h.
|
inlineoverridevirtual |
Get a shared pointer to a clone of this object.
Returns a shared pointer to a copy of this object.
Implements Circuits::IOperation< Types::time_type >.
Definition at line 929 of file QuantumGates.h.
References Circuits::IOperation< Time >::GetDelay(), and Circuits::SingleQubitGate< Time >::GetQubit().
|
inlineoverridevirtual |
Execute the quantum gate.
Executes the quantum gate on the given simulator with the given classical state.
| sim | The simulator to execute the quantum gate on. |
| state | The classical state to execute the quantum gate with. |
Implements Circuits::IOperation< Types::time_type >.
Definition at line 907 of file QuantumGates.h.
References Circuits::SingleQubitGate< Time >::GetQubit().
|
inlineinherited |
Get the delay of the operation.
Returns the delay due of the execution time of the operation.
Definition at line 497 of file Operations.h.
Referenced by Circuits::NoOperation< Time >::Clone().
|
inlineoverridevirtual |
Get the type of the quantum gate.
Returns the type of the quantum gate.
Implements Circuits::IQuantumGate< Types::time_type >.
Definition at line 919 of file QuantumGates.h.
References Circuits::kSGateType.
|
inlineoverridevirtualinherited |
Get the number of qubits the quantum gate is applied to.
Returns the number of qubits the quantum gate is applied to, in this case 1.
Implements Circuits::IGateOperation< Types::time_type >.
Definition at line 142 of file QuantumGates.h.
|
inlinevirtualinherited |
Get the gate parameters.
Returns the parameters of the gate.
Reimplemented in Circuits::ControlledRotationGate< Time >, Circuits::ControlledRotationGate< Types::time_type >, Circuits::CPGate< Time >, Circuits::CUGate< Time >, Circuits::PhaseGate< Time >, Circuits::RotationGate< Time >, Circuits::RotationGate< Types::time_type >, and Circuits::UGate< Time >.
Definition at line 99 of file QuantumGates.h.
|
inlineinherited |
Get a shared pointer to this object.
Returns a shared pointer to this object. The object needs to be already wrapped in a shared pointer.
Definition at line 487 of file Operations.h.
|
inlineoverridevirtualinherited |
Get the qubit the quantum gate is applied to.
Returns the qubit the quantum gate is applied to. Either specify zero for the index or leave it default. The parameter value is ignored anyway.
| index | The index of the qubit to get (ignored, default 0). |
Implements Circuits::IGateOperation< Types::time_type >.
Definition at line 165 of file QuantumGates.h.
|
inlineoverridevirtualinherited |
Get the type of the operation.
Get the type of the operation, in this case, gate.
Reimplemented from Circuits::IOperation< Types::time_type >.
Definition at line 631 of file Operations.h.
|
inlinevirtualinherited |
Checks if the operation is a branching one.
Checks if the operation is a branching one, meaning that it can lead to splitting paths (relevant for the path integral simulator).
Reimplemented in Circuits::CHGate< Time >, Circuits::Circuit< Time >, Circuits::Circuit< Types::time_type >, Circuits::CRxGate< Time >, Circuits::CRyGate< Time >, Circuits::CSxDagGate< Time >, Circuits::CSxGate< Time >, Circuits::CUGate< Time >, Circuits::HadamardGate< Time >, Circuits::IConditionalOperation< Time >, Circuits::IConditionalOperation< Types::time_type >, Circuits::KGate< Time >, Circuits::RxGate< Time >, Circuits::RyGate< Time >, Circuits::SxDagGate< Time >, Circuits::SxGate< Time >, and Circuits::UGate< Time >.
Definition at line 526 of file Operations.h.
|
inlineoverridevirtual |
Checks if the operation is a Clifford one.
Checks if the operation is a Clifford one, allowing to be simulated in a stabilizers simulator.
Reimplemented from Circuits::IOperation< Types::time_type >.
Definition at line 943 of file QuantumGates.h.
|
inlinevirtualinherited |
Find if the operation is a conditional operation.
Returns true if the operation is conditional, false otherwise.
Definition at line 458 of file Operations.h.
|
inlinevirtualinherited |
Find if the operation needs entanglement for distribution.
Returns true if the operation needs entanglement for distribution, false otherwise.
Reimplemented in Circuits::Circuit< Time >, and Circuits::Circuit< Types::time_type >.
Definition at line 446 of file Operations.h.
|
inlineoverridevirtualinherited |
Get a shared pointer to a remapped operation.
Returns a shared pointer to a copy of the operation with qubits and classical bits changed according to the provided maps.
| qubitsMap | The map of qubits to remap. |
| bitsMap | The map of classical bits to remap. |
Implements Circuits::IOperation< Types::time_type >.
Definition at line 188 of file QuantumGates.h.
|
inlineinherited |
Set the delay of the operation.
Sets the delay due of the execution time of the operation.
| d | The delay of the operation. |
Definition at line 505 of file Operations.h.
|
inlineoverridevirtualinherited |
Set the qubit the quantum gate is applied to.
Sets the qubit the quantum gate is applied to. Either specify zero for the index or leave it default.
| q | The qubit the quantum gate is applied to. |
| index | The index of the qubit to set (ignored, default 0). |
Implements Circuits::IGateOperation< Types::time_type >.
Definition at line 152 of file QuantumGates.h.