9 lines
325 B
Common Lisp
9 lines
325 B
Common Lisp
|
(defpackage :cl-quantum/examples
|
||
|
(:documentation "A collection of examples for ql-quantum.")
|
||
|
(:use :cl :cl-quantum/state :cl-quantum/circuit)
|
||
|
(:export #:make-grover-circuit
|
||
|
#:make-bell-phi+-circuit
|
||
|
#:make-bell-phi--circuit
|
||
|
#:make-bell-psi+-circuit
|
||
|
#:make-bell-psi--circuit))
|