diff --git a/pytket/extensions/cutensornet/structured_state/general.py b/pytket/extensions/cutensornet/structured_state/general.py index c6d4276b..0cc56230 100644 --- a/pytket/extensions/cutensornet/structured_state/general.py +++ b/pytket/extensions/cutensornet/structured_state/general.py @@ -448,7 +448,10 @@ def get_amplitude(self, state: int) -> complex: raise NotImplementedError(f"Method not implemented in {type(self).__name__}.") def get_bits(self) -> dict[Bit, bool]: - """Returns the dictionary of bits and their values.""" + """Returns the dictionary of bits and their values. + + A bit with value ``False`` corresponds to ``0``, and ``True`` is ``1``. + """ return self._bits_dict.copy() @abstractmethod