Fix the topological sorting
Necessary before we start working with program terms
author |
Steve Losh <steve@stevelosh.com> |
date |
Sat, 26 Mar 2016 19:19:07 +0000 |
parents |
765efa56a965 |
children |
8a18f9b3bb72 |
(asdf:defsystem #:bones
:name "bones"
:description "A logic programming library for Common Lisp."
:author "Steve Losh <steve@stevelosh.com>"
:maintainer "Steve Losh <steve@stevelosh.com>"
:license "MIT/X11"
:version "0.0.1"
:depends-on (#:defstar
#:optima
#:trivial-types
#:cl-arrows
#:fare-quasiquote-optima
#:fare-quasiquote-readtable)
:serial t
:components ((:file "src/utils") ; quickutils package ordering crap
(:file "package")
(:module "src"
:components ((:file "paip")
(:module "wam"
:components ((:file "constants")
(:file "topological-sort")
(:file "cells")
(:file "wam")
(:file "instructions")
(:file "dump")
(:file "compile")))
(:file "bones")))))