-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackages.lisp
More file actions
30 lines (26 loc) · 832 Bytes
/
Copy pathpackages.lisp
File metadata and controls
30 lines (26 loc) · 832 Bytes
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
;; Copyright 2011 Eric D. Scott (http://EricDScott.com)
;; Distributed under MIT License
;; http://www.opensource.org/licenses/mit-license.php
(eval-when (:compile-toplevel :load-toplevel :execute)
(require :agraph))
(defpackage :natural-lexicon.markup-reader
(:use :common-lisp :db.agraph.user :triple-store :split-sequence
)
(:export :discourse-model
:db-path-of
:uri-of
:quickname-of
:sentences-of
:declarations-of
:annotations-of
:*discourse*
:graph-id-of
:initialize-discourse
:enable-natural-language-markup
:register-namespace
:*add-triple-hook*
:declare-triples
:with-discourse-db
))
(defpackage :natural-lexicon.lexicon
(:use :common-lisp :db.agraph.user :triple-store :split-sequence :natural-lexicon.markup-reader))