mirror of https://github.com/Qiskit/qiskit.git
15 lines
522 B
YAML
15 lines
522 B
YAML
---
|
|
features:
|
|
- |
|
|
The user configuration file has a new option ``circuit_reverse_bits``, which takes a Boolean
|
|
value. This allows users to set their preferred default behavior of the ``reverse_bits`` option
|
|
of the circuit drawers :meth:`.QuantumCircuit.draw` and :func:`.circuit_drawer`. For example,
|
|
adding a section to ``~/.qiskit/settings.conf`` with:
|
|
|
|
.. code-block:: text
|
|
|
|
[default]
|
|
circuit_reverse_bits = True
|
|
|
|
will change the default to display the bits in reverse order.
|