Jean-Christophe Jaskula

Results 3 comments of Jean-Christophe Jaskula

Dumping some thoughts here: - Sympy could do heavy-lifting via `Parameter.sympify()` and then create the Braket FreeParameterExpression. - we are [parsing ParameterExpression string](https://github.com/qiskit-community/qiskit-braket-provider/blob/main/qiskit_braket_provider/providers/adapter.py#L504) to rename ParameterVectorElement, which conflicts with the...

Agreeing. This is primarily a follow-up of #91. Additionally, [what we have for Aspen ](https://github.com/qiskit-community/qiskit-braket-provider/blob/bc9e399cf0f5cc3e7cbccba4c6d69504ef59d2ec/qiskit_braket_provider/providers/adapter.py#L350)should work out of the box for other devices.

My initial experience with this behavior was something like: ``` from lmfit.models import GaussianModel, ConstantModel from lmfit.model import CompositeModel import operator mm=CompositeModel(GaussianModel(), ConstantModel(), operator.add, prefix="prefix_") mm.make_params() ``` and I noticed...