We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7d581c commit 48b95a3Copy full SHA for 48b95a3
README.md
@@ -30,14 +30,11 @@ The following code gives an example on the usage:
30
```python3
31
from mqt import qcec
32
33
-# initialize the equivalence checker
34
-ecm = qcec.EquivalenceCheckingManager("circ1.qasm", "circ2.qasm")
+# verify the equivalence of two circuits provided as qasm files
+result = qcec.verify("circ1.qasm", "circ2.qasm")
35
36
-# execute the check
37
-ecm.run()
38
-
39
-# obtain the result
40
-print(ecm.equivalence())
+# print the result
+print(result.equivalence)
41
```
42
43
## System Requirements and Building
0 commit comments