mirror of https://github.com/Qiskit/qiskit.git
9 lines
469 B
YAML
9 lines
469 B
YAML
---
|
|
fixes:
|
|
- |
|
|
Angles in the OpenQASM 2 exporter (:func:`.QuantumCircuit.qasm`) will now always include a
|
|
decimal point, for example in the case of ``1.e-5``. This is required by a strict interpretation of the
|
|
floating-point-literal specification in OpenQASM 2. Qiskit's OpenQASM 2 parser
|
|
(:func:`.qasm2.load` and :func:`~.qasm2.loads`) is more permissive by default, and will allow
|
|
``1e-5`` without the decimal point unless in ``strict`` mode.
|