Kind | Covered | All | % |
expression | 2 | 4 | 50.0 |
branch | 0 | 0 | nil |
1
;;; proto.lisp --- Math Core Protocols
2
3
;;
4
5
;;; Code:
6
(in-package :math/proto)
7
8
(define-condition math-condition () ())
9
(deferror math-error (math-condition error) () (:auto t))
10
(defwarning math-warning (math-condition warning) () (:auto t))