Skip to content

Commit

Permalink
Nicer string representation for InverseCompositeGate (#6262)
Browse files Browse the repository at this point in the history
Change `cirq.inverse(g)` string representation to `g.__str__()†` instead of `(g.__repr__() ** -1)`.
  • Loading branch information
tanujkhattar authored May 29, 2024
1 parent 2cfdf1f commit a9776d0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
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 @@ -759,6 +759,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

0 comments on commit a9776d0

Please sign in to comment.