[docs]@dataclass(frozen=True)classMagnetSquareArguments(ArgumentsPrototype):"""Arguments for :class:`~qurry.qurries.magnet_square.experiment.MagnetSquareExperiment`."""exp_name:str="exps""""The name of the experiment. Naming this experiment to recognize it when the jobs are pending to IBMQ Service. This name is also used for creating a folder to store the exports. Defaults to `'experiment'`."""num_qubits:int=0"""The number of qubits."""unitary_operator:Union[Operator,Gate,Literal["x","y","z"]]="z""""The unitary operator to apply. It can be a :class:`~qiskit.quantum_info.Operator`, a :class:`~qiskit.circuit.Gate`, or a string representing the axis of rotation ('x', 'y', or 'z'). Defaults to 'z'."""
[docs]classMagnetSquareMeasureArgs(BasicArgs,total=False):"""Input fields for :meth:`~qurry.qurries.magnet_square.qurry.MagnetSquare.measure` and :meth:`~qurry.qurrium.qurrium.QurriumPrototype.multiOutput`."""wave:Optional[Union[QuantumCircuit,Hashable]]"""The key or the circuit to execute."""unitary_operator:Union[Operator,Gate,Literal["x","y","z"]]"""The unitary operator to apply. It can be a :class:`~qiskit.quantum_info.Operator`, a :class:`~qiskit.circuit.Gate`, or a string representing the axis of rotation ('x', 'y', or 'z'). Defaults to 'z'."""
[docs]classMagnetSquareOutputArgs(OutputArgs):"""Output arguments for :meth:`~qurry.qurries.magnet_square.qurry.MagnetSquare.output`."""unitary_operator:Union[Operator,Gate,Literal["x","y","z"]]"""The unitary operator to apply. It can be a :class:`~qiskit.quantum_info.Operator`, a :class:`~qiskit.circuit.Gate`, or a string representing the axis of rotation ('x', 'y', or 'z'). Defaults to 'z'."""
[docs]classMagnetSquareAnalyzeArgs(AnalyzeArgs,total=False):"""The input of :meth:`~qurry.qurrium.qurrium.QurriumPrototype.multiAnalysis` and :meth:`~qurry.qurries.magnet_square.experiment.MagnetSquareExperiment.analyze`. The post-processing of :class:`~qurry.qurries.magnet_square.experiment.MagnetSquareExperiment` does not need any input. """
SHORT_NAME="qurmagsq_magnet_square""""The short name of:class:`~qurry.qurries.magnet_square.experiment.MagnetSquareExperiment`."""