Skip to content

Commit

Permalink
Move math package to math directory
Browse files Browse the repository at this point in the history
  • Loading branch information
Izaakwltn committed Oct 14, 2024
1 parent 194c079 commit 8a93b9b
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
3 changes: 2 additions & 1 deletion coalton.asd
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@
(:file "complex")
(:file "elementary")
(:file "dyadic")
(:file "dual")))
(:file "dual")
(:file "package")))
(:file "randomaccess")
(:file "cell")
(:file "tuple")
Expand Down
15 changes: 15 additions & 0 deletions library/math/package.lisp
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
(uiop:define-package #:coalton-library/math
(:use-reexport
#:coalton-library/math/arith
#:coalton-library/math/num
#:coalton-library/math/bounded
#:coalton-library/math/conversions
#:coalton-library/math/fraction
#:coalton-library/math/integral
#:coalton-library/math/real
#:coalton-library/math/complex
#:coalton-library/math/elementary
#:coalton-library/math/dual))

#+sb-package-locks
(sb-ext:lock-package "COALTON-LIBRARY/MATH")
16 changes: 0 additions & 16 deletions library/prelude.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,6 @@
;;;;
;;;; Collections of packages

(uiop:define-package #:coalton-library/math
(:use-reexport
#:coalton-library/math/arith
#:coalton-library/math/num
#:coalton-library/math/bounded
#:coalton-library/math/conversions
#:coalton-library/math/fraction
#:coalton-library/math/integral
#:coalton-library/math/real
#:coalton-library/math/complex
#:coalton-library/math/elementary
#:coalton-library/math/dual))

#+sb-package-locks
(sb-ext:lock-package "COALTON-LIBRARY/MATH")

(uiop:define-package #:coalton-prelude
(:use-reexport
#:coalton-library/classes
Expand Down

0 comments on commit 8a93b9b

Please sign in to comment.