-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmath.asd
More file actions
234 lines (213 loc) · 9.97 KB
/
Copy pathmath.asd
File metadata and controls
234 lines (213 loc) · 9.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
;;;; ./math.asd
(defsystem "math"
:description
"Math is a math library, implementing some algorithms:
@begin(list)
@item(linear algebra;)
@item(operations with matrices;)
@item(statistical functions;)
@item(linear and bilinear interpolation;)
@item(finding approximating polynomials, implemented in Common
Lisp.)
@end(list)
"
:author "Mykola Matvyeyev <mnasoft@gmail.com>"
:license "GPL-3.0-or-later"
:version "0.0.7"
:serial t
:in-order-to ((test-op (test-op "math-tests")))
:depends-on ("cl-utilities"
"math/core"
"math/coord"
"math/matr"
"math/geom"
"math/equation"
"math/stat"
"math/smooth"
"math/rnd"
"math/ls-gauss"
"math/ls-gsll"
"math/ls-rotation"
"math/gnuplot"
"math/appr"
"math/series"
"math/half-div"
;; "math/x-o"
)
:components ((:module "src/math"
:serial t
:components ((:file "math"))))) ;;;; (:file "matr-temp")
(defsystem "math/half-div"
:description "@b(Описание:) система @b(math/half-div) реализует
метод половинного деления для нахождения корней уравнений."
:components ((:module "src/half-div"
:serial nil
:components ((:file "half-div")
(:file "half-div-doc" :depends-on ("half-div"))))))
(defsystem "math/series"
:description "@b(Описание:) система @b(math/series) определяет некоторые операции с
прогрессиями."
:depends-on ("math/half-div" "math/equation")
:components ((:module "src/series"
:serial nil
:components ((:file "series")
(:file "series-doc" :depends-on ("series"))))))
(defsystem "math/rnd"
:description "@b(Описание:) система @b(math/rnd) содержит функции
для генерирования случайных списков и двухмерных списков."
:depends-on ("math/matr")
:components ((:module "src/rnd"
:serial nil
:components ((:file "rnd")
(:file "rnd-doc" :depends-on ("rnd"))))))
(defsystem "math/core"
:description "@b(Описание:) система @b(math/core) содержит
базовые функции и обобщённые функции, используемые в проекте повсеместно."
;; :depends-on ()
:components ((:module "src/core"
:serial nil
:components ((:file "core")
(:file "core-doc" :depends-on ("core"))))))
(defsystem "math/ls-rotation"
:description "@b(Описание:) система @b(math/ls-rotation) реализует
решение систем линейных уравнений методом вращения."
:depends-on ("math/matr")
:components ((:module "src/ls-rotation"
:serial t
:components ((:file "ls-rotation")
(:file "ls-rotation-doc")))))
(defsystem "math/gnuplot"
:description "@b(Описание:) система @b(math/gnuplot) реализует
интерфейс к программе построения графиков @b(gnuplot)."
:depends-on ("math/core" "font-discovery" "vgplot")
:components ((:module "src/gnuplot"
:serial t
:components ((:file "gnuplot")
(:file "gnuplot-doc" :depends-on ("gnuplot"))))))
(defsystem "math/ls-gauss"
:description "@b(Описание:) система @b(math/ls-gauss) реализует
решение систем линейных уравнений методом Гаусса."
:depends-on ("math/matr")
:components ((:module "src/ls-gauss"
:serial t
:components ((:file "ls-gauss")
(:file "ls-gauss-doc")))))
(defsystem "math/appr"
:description "@b(Описание:) система @b(math/appr) содержит функции
для нахождения аппроксимирующих полиномов методом наименьших квадратов."
:depends-on ("math/core" "math/matr" "math/ls-gauss" "math/smooth")
:components ((:module "src/appr"
:serial t
:components ((:file "appr")
(:file "appr-doc")))))
(defsystem "math/stat"
:description "@b(Описание:) система @b(math/stat) содержит функции
описательной статистики, проверки грубых промахов по критерию
Граббса, комбинаторики и генерации случайных выборок."
:depends-on ("math/core" "gsll")
:components ((:module "src/stat"
:serial t
:components ((:file "stat")
(:file "stat-doc" :depends-on ("stat"))))))
(defsystem "math/smooth"
:description "@b(Описание:) система @b(math/smooth) содержит
весовые функции, используемые в методах сглаживания данных."
:components ((:module "src/smooth"
:serial t
:components ((:file "smooth")
(:file "smooth-doc" :depends-on ("smooth"))))))
(defsystem "math/coord"
:description "@b(Описание:) система @b(math/coord) содержит
функции преобразования:
@begin(list)
@item(угловой меры;)
@item(координат точки между декартовой, полярной и сферической
системами координат.)
@end(list)
"
:depends-on ("math/core")
:components ((:module "src/coord"
:serial t
:components ((:file "coord")
(:file "coord-doc")))))
(defsystem "math/ls-gsll"
:description "@b(Описание:) система @b(math/ls-gsll) реализует
решение систем линейных уравнений при помощи библиотеки @b(gsll)."
:depends-on ("gsll" "math/matr")
:components ((:module "src/ls-gsll"
:serial t
:components ((:file "ls-gsll")
(:file "ls-gsll-doc")))))
(defsystem "math/geom"
:description "@b(Описание:) система @b(math/geom) содержит функции
вычисления площадей и объёмов геометрических фигур и тел."
:components ((:module "src/geom"
:serial t
:components ((:file "geom")
(:file "geom-doc")))))
(defsystem "math/docs"
:description "
@b(Описание:) система @b(math/docs) содержит функции для извлечения
сборки и публикации документации.
Для публикации документации в системе должна быть установлена
программа @b(rsync)."
:depends-on ("math"
"mnas-package"
"codex")
:components
((:module "src/docs" :serial nil
:components ((:file "docs")))))
(defsystem "math/equation"
:description "@b(Описание:) система @b(math/equation) содержит
функции для нахождения корней линейных, квадратных, кубических и
уравнений 4-ой степени (последнее не реализовано)."
:components ((:module "src/equation"
:serial t
:components ((:file "equation")
(:file "equation-doc")))))
(defsystem "math/matr"
:description "@b(Описание:) система @b(math/matr) содержит
реализацию некоторых операций над матрицами."
:depends-on ("cl-utilities" "math/coord" "math/stat" "closer-mop")
:components ((:module "src/matr"
:serial t
:components ((:file "matr")
(:file "generics")
(:file "methods/add")
(:file "methods/anti-diagonal")
(:file "methods/append")
(:file "methods/average")
(:file "methods/col")
(:file "methods/cols")
(:file "methods/copy")
(:file "methods/dimensions")
(:file "methods/equivalent")
(:file "methods/main-diagonal")
(:file "methods/mref")
(:file "methods/multiply")
(:file "methods/prepend")
(:file "methods/rotate")
(:file "methods/row")
(:file "methods/rows")
(:file "methods/squarep")
(:file "methods/swap-cols")
(:file "methods/swap-rows")
(:file "methods/transpose")
(:file "methods/unite-cols")
(:file "methods/unite-rows")
(:file "methods/rest-methods")
(:file "matr-doc")))))
(defsystem "math/obj"
:description "@b(Описание:) система @b(math/obj) содержит описание некоторых
геометрических объектов."
:depends-on ("gsll" "math/stat" "vgplot")
:components ((:module "src/obj"
:serial t
:components ((:file "obj")))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defsystem "math/x-o"
:description "Консольная игра крестики-нолики"
:depends-on ( "math/core" "math/matr")
:components ((:module "src/x-o"
:serial t
:components ((:file "x-o")))))