public
Description: Genetic programming library in Lisp!
Homepage:
Clone URL: git://github.com/jakevoytko/genesis.git
genesis / package.lisp
100644 9 lines (7 sloc) 0.197 kb
1
2
3
4
5
6
7
8
9
(defpackage "GENESIS"
  (:use "CL" "CL-USER" "LISP-UNIT")
  (:export "RULE"
           "*CURRENT-POPULATION*"
           "GENETIC-ALGORITHM"
           "FUNCALL-RULES"
           "FUNCALL-BEST"))