We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73ab7df commit 7819287Copy full SHA for 7819287
2 files changed
lib/BUILD
@@ -798,6 +798,8 @@ cc_library(
798
deps = [
799
":gate",
800
":gate_appl",
801
+ ":gates_cirq",
802
+ ":gates_qsim",
803
],
804
)
805
lib/operation_base.h
@@ -197,7 +197,7 @@ inline unsigned OpTime(const Operation& op) {
197
198
return std::visit(f, op);
199
} else {
200
- static_assert(0, "OpBaseOperation encountered an invalid type");
+ static_assert(0, "OpQubits encountered an invalid type");
201
}
202
203
@@ -232,7 +232,7 @@ inline const Qubits& OpQubits(const Operation& op) {
232
233
234
235
236
237
238
0 commit comments