-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGraph.asd
More file actions
32 lines (26 loc) · 1.13 KB
/
Graph.asd
File metadata and controls
32 lines (26 loc) · 1.13 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
;;;-*- Mode: Lisp; Package: COMMON-LISP-USER -*-
(defpackage :hypergraph (:use #:asdf #:cl) (:nicknames "GRAPH"))
;;;----------------------------------------------------------------------------
;;; Graph Module System Definition
;;;----------------------------------------------------------------------------
(in-package :hypergraph)
(defsystem graph
:author "Raymond de Lacaze <delaray@hotmail.com>"
:version "1.0"
:maintainer "Raymond de Lacaze <delaray@hotmail.com>"
:licence "MIT Style license for the packaging."
:description "Hypergraph and Semantic Net Module"
:long-description "Hypergraph and Semantic Net Module"
:depends-on (:utilities)
:components ((:module "Source"
:components ((:file "Graph")
(:file "Graph-Operations")
(:file "Graph-Traversals")
(:file "Graph-Test")
(:file "Semantic-Net")
(:file "Semantic-Net-Relations")))))
#+IGNORE
(asdf:oos 'asdf:load-op :graph)
;;;----------------------------------------------------------------------------
;;; End of File
;;;----------------------------------------------------------------------------