summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Okay <okay@toyful.space>2021-05-26 06:34:42 -0500
committerColin Okay <okay@toyful.space>2021-05-26 06:34:42 -0500
commitd94f62c50039356a5d17a9db5cd65e05004667a1 (patch)
treebe7dc67b1a1e36d6055b3a7b4971ee337124fb87
initial commit
-rw-r--r--package.lisp4
-rw-r--r--zhsh.asd10
-rw-r--r--zhsh.lisp3
3 files changed, 17 insertions, 0 deletions
diff --git a/package.lisp b/package.lisp
new file mode 100644
index 0000000..9ce9f21
--- /dev/null
+++ b/package.lisp
@@ -0,0 +1,4 @@
+;;;; package.lisp
+
+(defpackage #:zhsh
+ (:use #:cl))
diff --git a/zhsh.asd b/zhsh.asd
new file mode 100644
index 0000000..02e4fb6
--- /dev/null
+++ b/zhsh.asd
@@ -0,0 +1,10 @@
+;;;; zhsh.asd
+
+(asdf:defsystem #:zhsh
+ :description "The Zhang-Shasha algorithm for calculating tree-edit distance."
+ :author "Colin Okay okay@toyful.space"
+ :license "GPLv3"
+ :version "0.0.1"
+ :serial t
+ :components ((:file "package")
+ (:file "zhsh")))
diff --git a/zhsh.lisp b/zhsh.lisp
new file mode 100644
index 0000000..48cb959
--- /dev/null
+++ b/zhsh.lisp
@@ -0,0 +1,3 @@
+;;;; zhsh.lisp
+
+(in-package #:zhsh)