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

KindCoveredAll%
expression03 0.0
branch00nil
Key
Not instrumented
Conditionalized out
Executed
Not executed
 
Both branches taken
One branch taken
Neither branch taken
1
 ;;; var.lisp --- Math Variables
2
 
3
 ;; 
4
 
5
 ;;; Code:
6
 (in-package :math/proto)
7
 
8
 (defparameter *default-rcond* 1d-15
9
   "The default value of condition number to be used for determining the rank of a
10
 matrix (used in gelsy).")
11
 
12
 (defparameter *default-uplo* #\U
13
   "For routines which take symmetric (hermitian) matrices as arguments, this sets
14
 the default argument for UPLO.")
15