Update quread/engine.py
Browse files- quread/engine.py +1 -0
quread/engine.py
CHANGED
|
@@ -4,6 +4,7 @@ from dataclasses import dataclass, field
|
|
| 4 |
from typing import List, Dict, Any, Optional, Tuple
|
| 5 |
|
| 6 |
from .gates import I, SINGLE_QUBIT_GATES, rx, ry, rz
|
|
|
|
| 7 |
|
| 8 |
Op = Dict[str, Any]
|
| 9 |
|
|
|
|
| 4 |
from typing import List, Dict, Any, Optional, Tuple
|
| 5 |
|
| 6 |
from .gates import I, SINGLE_QUBIT_GATES, rx, ry, rz
|
| 7 |
+
from quread.gates import single_qubit_gate_matrix
|
| 8 |
|
| 9 |
Op = Dict[str, Any]
|
| 10 |
|