Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions include/scaluq/gate/gate_standard.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -702,8 +702,7 @@ void bind_gate_gate_standard_hpp(nb::module_& m, nb::class_<Gate<Prec, Space>>&
.def(
"phase",
[](const GlobalPhaseGate<Prec, Space>& gate) { return gate->phase(); },
"Get `phase` property. The phase is represented as $\\gamma$.",
gate_base_def);
"Get `phase` property. The phase is represented as $\\gamma$.");
DEF_GATE(XGate, Prec, Space, "Specific class of Pauli-X gate.", gate_base_def);
DEF_GATE(YGate, Prec, Space, "Specific class of Pauli-Y gate.", gate_base_def);
DEF_GATE(ZGate, Prec, Space, "Specific class of Pauli-Z gate.", gate_base_def);
Expand Down
Loading