qiskit/test/python/qpy/test_serialize_value_object...

44 lines
1.4 KiB
Python

# This code is part of Qiskit.
#
# (C) Copyright IBM 2025.
#
# This code is licensed under the Apache License, Version 2.0. You may
# obtain a copy of this license in the LICENSE.txt file in the root directory
# of this source tree or at http://www.apache.org/licenses/LICENSE-2.0.
#
# Any modifications or derivative works of this code must retain this
# copyright notice, and modified files need to carry a notice indicating
# that they have been altered from the originals.
"""Test serializing ParameterExpressions from qpy."""
import io
from test import QiskitTestCase # pylint: disable=wrong-import-order
from qiskit.circuit import Parameter, QuantumCircuit
from qiskit import qpy
class TestQpySerializeParameterExpression(QiskitTestCase):
"""QPY serializing ParameterExpression"""
def test_roundtrip_equal(self):
"""Test serialize deserialize with ParameterExpression in _qpy_replay"""
a = Parameter("a")
b = Parameter("b")
a1 = a * 2
a2 = a1.subs({a: 3 * b})
qc = QuantumCircuit(1)
qc.rz(a2, 0)
use_symengine = True
version = 13
with io.BytesIO() as container:
qpy.dump(qc, container, version=version, use_symengine=use_symengine)
qc_qpy_str = container.getvalue()
with io.BytesIO(qc_qpy_str) as container:
qc_from_qpy = qpy.load(container)[0]
self.assertEqual(qc, qc_from_qpy)