-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmathtools.omlib
75 lines (62 loc) · 2.05 KB
/
mathtools.omlib
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
(:om-lib
(:version 2.0)
(:doc "Mathematical tools for music representation and analysis in OM.")
(:author "C. Agon, M. Andreatta et al.")
;;; SOURCE FILES TO LOAD
(:source-files
"sources/sieves/cribles"
"sources/screamer/package"
"sources/screamer/screamer"
"sources/groups/tools"
"sources/groups/zn/scream-groups"
"sources/groups/zn/orbites"
"sources/groups/zn/tl-zn"
"sources/groups/dn/pcs"
"sources/groups/dn/pcs-update"
"sources/groups/dn/ominterface"
"sources/sequences/lewin1"
"sources/sequences/suites"
"sources/canons/vuza/canons"
"sources/canons/noll/augcanons"
"sources/canons/amiot/cylocanons"
)
;;; SYMBOLS VISIBLE AND ACCESSIBLE THROUGH THE OM PACKAGE TREE
(:symbols
(:packages
(:package
(:name "Sieves")
(:classes crible)
(:functions c-union c-intersection c-complement revel-crible))
(:package
(:name "Groups")
(:functions mod+ mod- mod* n-scale n-structure get-min-period get-subsets)
(:packages
(:package
(:name "Zn")
(:functions card orbites famille transp transp-comb TL-ZN get-tid))
(:package
(:name "Dn")
(:functions inv dn-orbites pc-set dn-card n-ord p-form comp sub-power
sub-p-form sub-rel sub-complex ))
(:package
(:name "Aff")
(:functions allclasses ifunc inj inj-transp))
))
(:package
(:name "Sequences")
(:functions diff-in-list suite-reductible suite-reproductible suite-decomposition growing-by-add))
(:package
(:name "Canons")
(:packages
(:package
(:name "Vuza")
(:functions canon-n decompo infocanons patterns canons))
(:package
(:name "Augmented")
(:functions signatures ag-canoninfo allcanons-aff augmented-canon))
(:package
(:name "Cyclotomic")
(:functions cyclo bonpolynome? poly2canon poly-mult mult-mult out-rythm get-canon-n cm-conditions t2? t1?))
))
))
)