Coverage report: /home/ellis/comp/core/lib/math/pkg.lisp

KindCoveredAll%
expression04 0.0
branch00nil
Key
Not instrumented
Conditionalized out
Executed
Not executed
 
Both branches taken
One branch taken
Neither branch taken
1
 ;;; math/pkg.lisp --- Core Math Packages
2
 
3
 ;;
4
 
5
 ;;; Code:
6
 (defpackage :math/proto
7
   (:use :cl :std)
8
   (:export :math-error :math-warning))
9
 
10
 (defpackage :math/sfc
11
   (:use :std-lisp :math/proto)
12
   (:export
13
    #:hilbert-list
14
    #:hilbert-curve))
15
 
16
 (defpackage :math/auto
17
   (:use :std-lisp :math/proto)
18
   (:export :life :cellular-automata :*rule-patterns*))
19
 
20
 (pkg:defpkg :math
21
   (:use :std-lisp)
22
   (:use-reexport :math/proto :math/sfc :math/auto))