Dax Fohl
Dax Fohl
@artvandalay404 Feel free to post a PR with what you have. My knee jerk reaction is that similar test should be fine, but would have to see the actual code....
As stated in the error message, this will work if converted to a sympy condition. To get it to work for key conditions, we would need to pass in the...
This seems to have gone stale. @balopat do you have any updates on the qiskit dependency?
Yes, AFAIK nobody is working on it right now. Before diving too deep you might want to get some agreement from the maintainers regarding whether to use decomposition or subcircuits...
I agree with changing the control to `@`. For changing the target to `X`, my main concern is that now that we allow multiple writes to the same measurement key,...
Do you have an example of when the cost of key lookup would be significant compared to the cost of doing the simulation itself? It would be valuable to be...
Also I wonder if this would be better done using a strategy pattern instead of inheritance. So, you set (or preferably inject) `repetition_sampling_strategy` instead of requiring a method override. That...
Also is this something that would have to be done in the simulator, or is it something that could be done in post processing? If the latter, we can make...
Maybe the simplest solution is to change the classes where you measure and store results from `Dict` to `OrderedDict`. Then you can reduce that to raw ordered list of measurements...
I just saw there's a `measurement_keys` protocol, but it returns a set instead of a list. If we change that to list, then it looks like it returns everything in...