1 ;;; -*- Mode: Lisp; Package: Maxima; Syntax: Common-Lisp; Base: 10 -*- ;;;;
2 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3 ;;; The data in this file contains enhancments. ;;;;;
5 ;;; Copyright (c) 1984,1987 by William Schelter,University of Texas ;;;;;
6 ;;; All rights reserved ;;;;;
7 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
8 ;;; (c) Copyright 1981 Massachusetts Institute of Technology ;;;
9 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
13 (macsyma-module pois2
)
15 (declare-top (special poisvals poishift poistsm poissiz poists $poisz $pois1
))
17 (defun poislim1 (uu n
)
20 (merror (intl:gettext
"poislim: argument must be an integer; found: ~M") n
))
22 (setq poists
(ash 1 n
))
24 (push (expt poists j
) poisvals
))
26 poistsm
(expt 2 (1- n
))
27 poishift
(let ((sum 0))
29 (incf sum
(* poistsm
(expt poists i
)))))
30 $poisz
'((mpois simp
) nil nil
)
31 $pois1
(list '(mpois simp
) nil
(list poishift
1)))
36 (= (caaddr p
) poishift
)
37 (null (cddr (caddr p
)))))