We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent faf897e commit 58ce333Copy full SHA for 58ce333
tests/compilation-tests.lisp
@@ -195,6 +195,13 @@ CNOT 0 2"))
195
;; test on quality of compilation, and not on correctness.
196
(is (>= 6 (length 2q-code)))))
197
198
+(deftest test-native-ccnot-compilation ()
199
+ "Test that we can compile a trivial program on a chip specification with a native CCNOT gate."
200
+ (let* ((chip (quil::build-ccnot-chip))
201
+ (ccnot-prog (parse "CCNOT 0 1 2")))
202
+ (not-signals error
203
+ (compiler-hook ccnot-prog chip))))
204
+
205
(deftest test-cswap-compiles-with-qs ()
206
"Test that CSWAP compiles with QS-COMPILER. (Don't test the output's validity.)"
207
(let ((result (quil::qs-compiler (quil::build-gate "CSWAP" () 0 1 2))))
0 commit comments