Skip to content
Snippets Groups Projects
Commit 7b8c847d authored by Liam Healy's avatar Liam Healy
Browse files

Add dependencies on mathematical

parent 7aa0111c
No related branches found
No related tags found
No related merge requests found
;; Definition of GSLL system ;; Definition of GSLL system
;; Liam Healy ;; Liam Healy
;; Time-stamp: <2010-07-13 21:07:57EDT gsll.asd> ;; Time-stamp: <2010-08-09 22:21:41EDT gsll.asd>
;; ;;
;; Copyright 2006, 2007, 2008, 2009 Liam M. Healy ;; Copyright 2006, 2007, 2008, 2009 Liam M. Healy
;; Distributed under the terms of the GNU General Public License ;; Distributed under the terms of the GNU General Public License
...@@ -83,7 +83,7 @@ ...@@ -83,7 +83,7 @@
(:file "combination" :depends-on ("foreign-array" "array-structs")))) (:file "combination" :depends-on ("foreign-array" "array-structs"))))
(:file "polynomial" :depends-on (init data)) (:file "polynomial" :depends-on (init data))
(:module special-functions (:module special-functions
:depends-on (init) :depends-on (init mathematical)
:components :components
((cffi-grovel:grovel-file "sf-result") ((cffi-grovel:grovel-file "sf-result")
(:file "return-structures" :depends-on ("sf-result")) (:file "return-structures" :depends-on ("sf-result"))
...@@ -214,7 +214,7 @@ ...@@ -214,7 +214,7 @@
(:file "probability-distribution" :depends-on ("histogram")) (:file "probability-distribution" :depends-on ("histogram"))
(:file "ntuple"))) (:file "ntuple")))
(:module calculus (:module calculus
:depends-on (init data random) :depends-on (init mathematical data random)
:components :components
((:file "numerical-integration") ((:file "numerical-integration")
(:file "numerical-integration-with-tables" (:file "numerical-integration-with-tables"
...@@ -232,7 +232,7 @@ ...@@ -232,7 +232,7 @@
(:file "evolution") (:file "evolution")
(:file "ode-example" :depends-on ("ode-system" "stepping")))) (:file "ode-example" :depends-on ("ode-system" "stepping"))))
(:module interpolation (:module interpolation
:depends-on (init) :depends-on (init mathematical)
:components :components
((:file "interpolation") ((:file "interpolation")
(:file "types" :depends-on ("interpolation")) (:file "types" :depends-on ("interpolation"))
...@@ -241,11 +241,11 @@ ...@@ -241,11 +241,11 @@
(:file "spline-example" :depends-on ("types")))) (:file "spline-example" :depends-on ("types"))))
(:file "chebyshev" :depends-on (init)) (:file "chebyshev" :depends-on (init))
(cffi-grovel:grovel-file "series-struct") (cffi-grovel:grovel-file "series-struct")
(:file "series-acceleration" :depends-on (init "series-struct")) (:file "series-acceleration" :depends-on (init mathematical "series-struct"))
(:file "wavelet" :depends-on (init data)) (:file "wavelet" :depends-on (init data))
(:file "hankel" :depends-on (init data)) (:file "hankel" :depends-on (init data))
(:module solve-minimize-fit (:module solve-minimize-fit
:depends-on (init data random) :depends-on (init mathematical data random)
:components :components
((:file "generic") ((:file "generic")
(cffi-grovel:grovel-file "solver-struct") (cffi-grovel:grovel-file "solver-struct")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment