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

Abstracts dep rename #318

Merged
merged 2 commits into from
Oct 13, 2023
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
2 changes: 1 addition & 1 deletion qvm.asd
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
;; General utilities
#:alexandria
;; Abstract classes
#:abstract-classes
#:org.tfeb.hax.abstract-classes
;; IEEE-754 float parsing
#:ieee-floats
;; Parallelization utilities
Expand Down
2 changes: 1 addition & 1 deletion src/error/package.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

(defpackage #:qvm.error
(:use #:cl
#:abstract-classes
#:org.tfeb.hax.abstract-classes
#:qvm)
(:import-from #:qvm #:multiprobabilistically)
(:local-nicknames (#:quil #:cl-quil.frontend))
Expand Down
2 changes: 1 addition & 1 deletion src/package.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
(defpackage #:qvm
(:documentation "Package containing an implementation of a quantum virtual machine.")
(:use #:cl
#:abstract-classes)
#:org.tfeb.hax.abstract-classes)

(:shadowing-import-from #:mt19937
#:random)
Expand Down
Loading