forked from gheber/kenzo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
kenzo.asd
92 lines (85 loc) · 2.96 KB
/
kenzo.asd
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
;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*
(in-package :cl-user)
(defpackage :kenzo-asd
(:use :cl :asdf))
(in-package :kenzo-asd)
(asdf:defsystem #:kenzo
:description "A Symbolic Software for Effective Homology Computation by Francis Sergeraert"
:version "1.1.7"
:author "Francis Sergeraert <Francis.Sergeraert@ujf-grenoble.fr>"
:license "GPLv3"
:serial t
:components
((:file "package")
(:module "src"
:components
((:file "kenzo")
(:file "abbreviations")
(:file "macros")
(:file "various")
(:file "classes")
(:file "combinations")
(:file "chain-complexes")
(:file "chcm-elementary-op")
(:file "effective-homology")
(:file "homology-groups")
(:file "searching-homology")
(:file "cones")
(:file "bicones")
(:file "tensor-products")
(:file "coalgebras")
(:file "cobar")
(:file "algebras")
(:file "bar")
(:file "simplicial-sets")
(:file "simplicial-mrphs")
(:file "delta")
(:file "special-smsts")
(:file "suspensions")
(:file "disk-pasting")
(:file "cartesian-products")
(:file "eilenberg-zilber")
(:file "kan")
(:file "simplicial-groups")
(:file "fibrations")
(:file "loop-spaces")
(:file "ls-twisted-products")
(:file "lp-space-efhm")
(:file "classifying-spaces")
(:file "k-pi-n")
(:file "serre")
(:file "cs-twisted-products")
(:file "cl-space-efhm")
(:file "whitehead")
(:file "smith")
(:file "vf-order")
(:file "sage-interface")
(:module "anromero"
:components
((:file "resolutions")
(:file "cylinders")
(:file "fundamental-classes")
(:file "homotopy")
(:file "bicomplexes")
(:file "filtered-complexes")
(:file "spectral-sequences")
(:file "persistent-homology")))
(:module "pushout"
:components
((:file "AiBjC-rdct")
(:file "cones2")
(:file "direct-sum")
(:file "remove-covers")
(:file "suspension2")
(:file "Pushout")))
(:module "finite-topological-spaces"
:components
((:file "finite-spaces-class")
(:file "finite-spaces-subdivisions")
(:file "finite-spaces-changes")
(:file "finite-spaces-homology")
(:file "finite-spaces-homology-dvf")
(:file "finite-spaces-hregularization")
(:file "finite-spaces-facets")
(:file "finite-spaces-point-reductions")))
))))