Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for clos-encounters #919

Merged
merged 1 commit into from
Apr 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions cl-quil.asd
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@
(:version #:magicl/core "0.10.0")
#:qvm
#:cl-grnm ; nelder-mead implementation
#:org.tfeb.hax.abstract-classes
#:org.tfeb.hax.singleton-classes
#:clos-encounters
#:yason ; JSON generation
#:uiop
#:split-sequence
Expand Down Expand Up @@ -101,8 +100,7 @@
#:yacc ; Arithmetic parsing
#:alexandria ; Utilities
#:parse-float ; Float parsing
#:org.tfeb.hax.abstract-classes
#:org.tfeb.hax.singleton-classes
#:clos-encounters
#:split-sequence
#:cl-algebraic-data-type
#:cl-permutation
Expand Down
5 changes: 2 additions & 3 deletions src/package.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@
(defpackage #:cl-quil.frontend
(:use #:cl
#:parse-float
#:org.tfeb.hax.abstract-classes
#:org.tfeb.hax.singleton-classes)
#:clos-encounters)
(:local-nicknames (#:a #:alexandria))
;; frontend-options.lisp
(:export
Expand Down Expand Up @@ -744,7 +743,7 @@
(:use #:cl
#:cl-quil.resource
#:cl-quil.frontend
#:org.tfeb.hax.abstract-classes)
#:clos-encounters)
(:local-nicknames (#:a #:alexandria))

;; options.lisp
Expand Down
3 changes: 1 addition & 2 deletions src/quilt/package.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@
(:nicknames #:quilt)
(:use #:cl
#:cl-quil.frontend
#:org.tfeb.hax.abstract-classes
#:org.tfeb.hax.singleton-classes)
#:clos-encounters)
;; We define a number of methods on generic functions from
;; CL-QUIL. We import these here, as well as other internal symbols
;; that we want to get our hands on.
Expand Down
Loading