Marlon Schumacher
6 days ago 8a52b9b9c6aab04076883a3a674cbf513b8b49cd
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
; ****************************************************************
; | OM-SRR, 2023-2025 M.Schumacher                               |
; |                                                              |
; | Library for spectral rhythm modeling via integer time ratios |
; | (partials) as phase-aligned amplitude modulations.           |
; |                                                              |
; | See https://steffenkrebber.de/research/sinusoidal-run-rhythm/|
; ****************************************************************
;
;This program is free software; you can redistribute it and/or
;modify it under the terms of the GNU General Public License
;as published by the Free Software Foundation; either version 2
;of the License, or (at your option) any later version.
;
;See file LICENSE for further informations on licensing terms.
;
;This program is distributed in the hope that it will be useful,
;but WITHOUT ANY WARRANTY; without even the implied warranty of
;MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;GNU General Public License for more details.
;
;You should have received a copy of the GNU General Public License
;along with this program; if not, write to the Free Software
;Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,10 USA.
;
;Authors: M. Schumacher
 
 
;--------------------------------------------------
;Variable definiton with files to load 
;--------------------------------------------------
 
 
(defvar *initfile* *load-pathname*)
 
(defun lib-src-file (name)
  (make-pathname :directory (append (pathname-directory *initfile*) (list "sources")) 
                 :name name))
 
(defvar *OM-SRR_files* nil)
(setf *OM-SRR_files* '("srr"))
 
;--------------------------------------------------
;Loading files 
;--------------------------------------------------
  
 
(mapc #'(lambda (filename) 
          (om::compile&load (namestring (lib-src-file filename))))
      *OM-SRR_files*)
 
;--------------------------------------------------
; OM subpackages initialization
; ("sub-pack-name" subpacke-lists class-list function-list class-alias-list)
;--------------------------------------------------
(defvar *subpackages-list* nil)
(setf *subpackages-list* 
      '((Nil Nil Nil (gen-partial gen-srr polar-plot farey-sequence) Nil)))
 
 
;--------------------------------------------------
;filling packages
;--------------------------------------------------
(om::fill-library *subpackages-list*)