From d94f62c50039356a5d17a9db5cd65e05004667a1 Mon Sep 17 00:00:00 2001 From: Colin Okay Date: Wed, 26 May 2021 06:34:42 -0500 Subject: initial commit --- package.lisp | 4 ++++ zhsh.asd | 10 ++++++++++ zhsh.lisp | 3 +++ 3 files changed, 17 insertions(+) create mode 100644 package.lisp create mode 100644 zhsh.asd create mode 100644 zhsh.lisp 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) -- cgit v1.2.3