1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
|
;; Definitions to avoid undefined variable warnings
(defvar allbutl nil)
(defvar dcount 0)
(defvar greatorder nil)
(defvar lessorder nil)
;; Redefining toplevel-macsyma-eval for post_eval_functions
;; Define the finaleval list
(defmvar $pre_eval_functions `((mlist)))
(defmvar $post_eval_functions `((mlist)))
(defun toplevel-macsyma-eval (x)
;; Functional definition of toplevel-macsyma-eval
(dolist (fi (margs $pre_eval_functions) x)
(setq x (mfuncall fi x)))
(setq x (meval* x))
(dolist (fi (margs $post_eval_functions) x)
(setq x (mfuncall fi x))))
(defmfun msetchk (x y)
;; Redefine msetchk to protect pre_eval_functions and post_eval_functions
;; from improper assignments
(cond ((member x '(*read-base* *print-base*) :test #'eq)
(cond ((eq y 'roman))
((or (not (fixnump y)) (< y 2) (> y 35)) (mseterr x y))
((eq x '*read-base*))))
((member x '($linel $fortindent $gensumnum $fpprintprec $floatwidth
$parsewindow $ttyintnum) :test #'eq)
(if (not (fixnump y)) (mseterr x y))
(if (eq x '$linel)
(cond ((not (and (> y 0) ; at least one char per line
(< y 10001))) ; arbitrary chosen big value
(mseterr x y))
(t
(setq linel y))))
(cond ((and (member x '($fortindent $gensumnum $floatwidth $ttyintnum) :test #'eq) (< y 0))
(mseterr x y))
((and (eq x '$parsewindow) (< y -1)) (mseterr x y))
((and (eq x '$fpprintprec) (or (< y 0) (= y 1))) (mseterr x y))))
((member x '($genindex $optimprefix) :test #'eq) (if (not (symbolp y)) (mseterr x y)))
((eq x '$dotassoc) (cput 'mnctimes y 'associative))
((eq x 'modulus)
(cond ((null y))
((integerp y)
(if (or (not (primep y)) (member y '(1 0 -1) :test #'equal))
(mtell "Warning: `modulus' being set to ~:M, a non-prime.~%" y)))
(t (mseterr x y))))
((eq x '$setcheck)
(if (not (or (member y '($all t nil) :test #'eq) ($listp y))) (mseterr x y)))
((eq x '$gcd) (if (not (or (null y) (member y *gcdl* :test #'eq))) (mseterr x y)))
((eq x '$ratvars)
(if ($listp y) (apply #'$ratvars (cdr y)) (mseterr x y)))
((eq x '$ratfac)
(if (and y $ratwtlvl)
(merror "`ratfac' and `ratwtlvl' may not both be used at the same time.")))
((eq x '$ratweights)
(cond ((not ($listp y)) (mseterr x y))
((null (cdr y)) (kill1 '$ratweights))
(t (apply #'$ratweight (cdr y)))))
((eq x '$ratwtlvl)
(if (and y (not (fixnump y))) (mseterr x y))
(if (and y $ratfac)
(merror "`ratfac' and `ratwtlvl' may not both be used at the same time.")))
((eq x '$post_eval_functions)
(if (not (and ($listp y) (every 'symbolp (margs y))))
(mseterr x y)))
((eq x '$pre_eval_functions)
(if (not (and ($listp y) (every 'symbolp (margs y))))
(mseterr x y)))))
(defmfun kill1 (x)
;; Redefine kill1 in order to be able to properly reset post_eval_functions
;; with kill(all) and kill(post_eval_functions)
(funcall
#'(lambda (z)
(cond ((and allbutl (member x allbutl :test #'eq)))
((eq (setq x (getopr x)) '$labels)
(dolist (u (cdr $labels))
(cond ((and allbutl (member u allbutl :test #'eq))
(setq z (nconc z (ncons u))))
(t (makunbound u) (remprop u 'time)
(remprop u 'nodisp))))
(setq $labels (cons '(mlist simp) z) $linenum 0 dcount 0))
((member x '($values $arrays $aliases $rules $props
$let_rule_packages) :test #'eq)
(mapc #'kill1 (cdr (symbol-value x))))
((member x '($functions $macros $gradefs $dependencies $structures) :test #'eq)
(mapc #'(lambda (y) (kill1 (caar y))) (cdr (symbol-value x))))
((eq x '$myoptions))
((eq x '$tellrats) (setq tellratlist nil))
((eq x '$ratweights) (setq *ratweights nil
$ratweights '((mlist simp))))
((eq x '$features)
(cond ((not (equal (cdr $features) featurel))
(setq $features (cons '(mlist simp)
(copy-list featurel ))))))
((eq x '$pre_eval_functions) (setq $pre_eval_functions '((mlist)) ))
((eq x '$post_eval_functions) (setq $post_eval_functions '((mlist)) ))
((or (eq x t) (eq x '$all))
(setq $pre_eval_functions '((mlist)))
(setq $post_eval_functions '((mlist)))
(mapc #'kill1 (cdr $infolists))
(setq $ratvars '((mlist simp)) varlist nil genvar nil
checkfactors nil greatorder nil lessorder nil $gensumnum 0
*ratweights nil $ratweights
'((mlist simp))
tellratlist nil $dontfactor '((mlist)) $setcheck nil)
(killallcontexts))
((setq z (assoc x '(($inlabels . $inchar) ($outlabels . $outchar)
($linelabels . $linechar)) :test #'eq))
(mapc #'(lambda (y) (remvalue y '$kill))
(getlabels* (eval (cdr z)) nil)))
((and (fixnump x) (not (< x 0))) (remlabels x))
((atom x) (kill1-atom x))
((and (eq (caar x) 'mlist) (fixnump (cadr x))
(or (and (null (cddr x))
(setq x (append x (ncons (cadr x)))))
(and (fixnump (caddr x)) (not (> (cadr x) (caddr x))))))
(let (($linenum (caddr x))) (remlabels (f- (caddr x) (cadr x)))))
((setq z (mgetl (caar x) '(hashar array))) (remarrelem z x))
((and ($subvarp x)
(boundp (caar x))
(hash-table-p (setq z (symbol-value (caar x)))))
; Evaluate the subscripts (as is done in ARRSTORE)
(let ((indices (mevalargs (cdr x))))
(if (gethash 'dim1 z)
(remhash (car indices) z)
(remhash indices z))))
((eq (caar x) '$@) (mrecord-kill x))
((and (eq (caar x) '$allbut)
(not (dolist (u (cdr x))
(if (not (symbolp u)) (return t)))))
(let ((allbutl (cdr x))) (kill1 t)))
(t (improper-arg-err x '$kill))))
nil))
;; Define a couple variables specific to this code
(defmvar $allunitslist `((mlist)))
(defmvar $unitformatresults t)
;; Code to enable correct display of multiplication by units via nformat
(defun notunitfree (form)
;;returns t if expression contains units, nil otherwise
(cond ((atom form) ($member form $allunitslist))
((null (car form)) nil)
((atom (car form))(or ($member (car form) $allunitslist)
(notunitfree (cdr form))))
(t (or (notunitfree (cdr (car form)))
(notunitfree (cdr form))))))
;; Code to optionally group units by common unit
(defun unitmember (form list1)
(cond ((equal (car list1) nil) nil)
((equal form (car list1)) t)
(t (unitmember form (cdr list1)))))
(defun groupbyaddlisp (form)
(cond ((or (not(notunitfree (car form))) (not(notunitfree (cadr form))))
form)
((and (null (cddr form))(equal (meval (list '(mplus simp) (caddr (car form)) (list '(mtimes simp) -1 (caddr (cadr form))))) 0))
(list (list '(mtimes) (meval (list '(mplus simp) (cadr (car form)) (cadr (cadr form)))) (caddr (car form)))))
((null (cddr form)) form)
((equal (meval (list '(mplus simp) (caddr (car form)) (list '(mtimes simp) -1 (caddr (cadr form))))) 0)
(groupbyaddlisp (cons (list '(mtimes) (meval (list '(mplus simp) (cadr (car form)) (cadr (cadr form)))) (caddr (car form)))
(cddr form))))
(t (cons (list '(mtimes) (cadr (car form)) (caddr (car form))) (groupbyaddlisp (cdr form))))))
(defun groupadd (form)
(cond ((and (not (atom form)) (notunitfree form) (equal (caar form) 'mplus))
(let ((temp1 (groupbyaddlisp (cdr (nformat form)))))
(cond ((or (not (equal (cdr temp1) nil)) (and (atom (cadr temp1)) (not (equal (cadr temp1) nil))))
(cons '(mplus) temp1))
((equal (cdr temp1) nil) (car temp1)))))
(t form)))
(defun onlyunits (form)
;;returns t if expression contains only units, nil otherwise
(cond ((null (car form)) t)
((atom (car form))(and ($member (car form) $allunitslist)
(onlyunits (cdr form))))
(t (and (onlyunits (list (car (cdr (car form)))))
(onlyunits (cdr form))))))
(defun getunits (form)
;;returns a list containing all unit terms
(cond ((null (cadr form)) '())
((atom (cadr form))
(if ($member (cadr form) $allunitslist)
(cons (cadr form)
(getunits (cons (car form) (cdr (cdr form)))))
(getunits (cons (car form) (cdr (cdr form))))))
(t
(if ($member (cadr (cadr form)) $allunitslist)
(cons (cadr form)
(getunits (cons (car form) (cdr (cdr form)))))
(getunits (cons (car form) (cdr (cdr form))))))))
(defun nonunits (form)
;;returns a list containing all non-unit terms
(cond ((null (cadr form)) '())
((atom (cadr form))
(if (not($member (cadr form) $allunitslist))
(cons (cadr form)
(nonunits (cons (car form) (cdr (cdr form)))))
(nonunits (cons (car form) (cdr (cdr form))))))
(t
(if (not($member (cadr (cadr form)) $allunitslist))
(cons (cadr form)
(nonunits (cons (car form) (cdr (cdr form)))))
(nonunits (cons (car form) (cdr (cdr form))))))))
(defun unitmtimeswrapper (form)
(cond ((and (notunitfree form) (not(onlyunits (cdr form)))
(not (equal '(-1) (nonunits form))) (equal $unitformatresults t))
(list '(mtimes)
(cons '(mtimes simp) (nonunits form))
(cons '(mtimes simp) (getunits form))))
((onlyunits (cdr form)) (form-mtimes form))
(t (form-mtimes form))))
(defmfun nformat (form)
(cond ((atom form)
(cond ((and (numberp form) (minusp form)) (list '(mminus) (- form)))
((eq t form) (if in-p t '$true))
((eq nil form) (if in-p nil '$false))
(t form)))
((atom (car form))
form)
((eq 'rat (caar form))
(cond ((minusp (cadr form))
(list '(mminus) (list '(rat) (- (cadr form)) (caddr form))))
(t (cons '(rat) (cdr form)))))
((eq 'mmacroexpanded (caar form)) (nformat (caddr form)))
((null (cdar form)) form)
((eq 'mplus (caar form)) (form-mplus form))
((eq 'mtimes (caar form)) (unitmtimeswrapper form))
((eq 'mexpt (caar form)) (form-mexpt form))
((eq 'mrat (caar form)) (form-mrat form))
((eq 'mpois (caar form)) (nformat ($outofpois form)))
((eq 'bigfloat (caar form))
(if (minusp (cadr form))
(list '(mminus) (list (car form) (- (cadr form)) (caddr form)))
(cons (car form) (cdr form))))
(t form)))
|