-
Notifications
You must be signed in to change notification settings - Fork 9
/
project-mappings.lisp
62 lines (57 loc) · 2.2 KB
/
project-mappings.lisp
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
(com.ral.project-packages:defproject
(#:project #:com.ral.project-packages)
(#:um #:com.ral.useful-macros)
(#:def* #:com.ral.useful-macros.def-extensions)
(#:aop #:com.ral.useful-macros.dflet)
(#:uuidgen #:com.ral.uuidgen)
(#:cps #:com.ral.cps)
(#:plt #:plotter)
(#:vm #:vmath)
(#:vmath #:com.ral.vectorized-math)
(#:vops #:vector-ops)
(#:vector-ops #:com.ral.vector-ops)
(#:interpolation #:com.ral.interpolation)
(#:fft #:com.ral.fft)
(#:sfft #:com.ral.sfft)
(#:dfft #:com.ral.dfft)
(#:fft2d #:com.ral.fft2d)
(#:roots #:com.ral.roots)
(#:lmfit #:com.ral.lmfit)
(#:linfit #:com.ral.linfit)
(#:mpc #:mpcompat)
(#:mpcompat #:com.ral.mpcompat)
(#:ca #:c-arrays)
(#:c-arrays #:com.ral.c-arrays)
(#:engfmt #:com.ral.useful-macros.engfmt)
(#:uuid #:com.ral.uuid)
(#:usec #:com.ral.usec)
(#:scatter-vec #:com.ral.scatter-vec)
(#:mgdbuf #:com.ral.managed-buffers)
(#:ubstream #:ubyte-streams)
(#:ubyte-streams #:com.ral.ubyte-streams)
(#:self-sync #:com.ral.self-sync)
(#:loenc #:com.ral.lisp-object-encoder)
(#:sets #:com.ral.rb-trees.sets)
(#:maps #:com.ral.rb-trees.maps)
(#:ref #:com.ral.ref)
(#:priq #:com.ral.prio-queue)
(#:ord #:com.ral.ord)
(#:orderable #:com.ral.orderable)
(#:ac #:actors)
(#:actors #:com.ral.actors)
(#:vrepr #:vec-repr)
(#:vec-repr #:com.ral.vec-repr)
(#:edec #:com.ral.crypto.edwards-ecc)
(#:modmath #:com.ral.crypto.modular-arith)
(#:hash #:com.ral.crypto.hash)
(#:prng #:com.ral.crypto.prng)
(#:kdf #:com.ral.crypto.kdf)
(#:ciphers #:com.ral.crypto.ciphers)
(#:primes #:com.ral.crypto.primes)
(#:pbc #:com.ral.crypto.pbc-interface)
(#:core-crypto #:com.ral.crypto.core-crypto)
(#:kvdb #:com.ral.actors.kvdb)
(#:fplht #:com.ral.useful-macros.fpl-hashtable)
(#:restricted #:com.ral.useful-macros.restricted-eval)
(#:debug-stream #:com.ral.useful-macros.debug-stream)
)