Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nicer string representation for _InverseCompositeGate #6262

Merged
merged 4 commits into from
May 29, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions cirq-core/cirq/ops/raw_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -1032,6 +1032,9 @@ def _circuit_diagram_info_(self, args: 'cirq.CircuitDiagramInfoArgs'):
def __repr__(self) -> str:
return f'({self._original!r}**-1)'

def __str__(self) -> str:
return f'{self._original!s}†'


def _validate_qid_shape(val: Any, qubits: Sequence['cirq.Qid']) -> None:
"""Helper function to validate qubits for gates and operations.
Expand Down
1 change: 1 addition & 0 deletions cirq-core/cirq/ops/raw_types_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -761,6 +761,7 @@ def __repr__(self):
assert cirq.parameter_names(g) == {'a'}
assert cirq.resolve_parameters(g, {a: 0}) == Gate(0) ** -1
cirq.testing.assert_implements_consistent_protocols(g, global_vals={'C': Gate, 'a': a})
assert str(g) == 'C(a)†'


def test_tagged_act_on():
Expand Down