-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
WARNING: All the circuits I was testing were generated with initialize()
The circuit can be constructed by combining two or more circuit. But adding circuits obtained from initialize()
gives the wrong result. When having circuitC = circuitA + circuitB
what we get is circuitC = circuitA.inverse() + circuitB.inverse()
.
Expected Behavior
circuitC = circuitA + circuitB
instead.
Current Behavior
circuitC = circuitA + circuitB
results in the application of circuitA.inverse() + circuitB.inverse()
.
Possible Solution
No idea
Steps to Reproduce (for bugs)
Yeast + Protozoan = ??? (unexpected circuit??)
Context
Your Environment
- Version used: 0.5.2
- Environment name and version (e.g. Python 3.6.1): Python 3.6.x
- Operating System and version: MacOSX
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working