close Warning: Can't synchronize with repository "(default)" (The repository directory has changed, you should resynchronize the repository with: trac-admin $ENV repository resync '(default)'). Look in the Trac log for more information.

source: branches/f4grobner/mx-grobner.lisp@ 1724

Last change on this file since 1724 was 1724, checked in by Marek Rychlik, 9 years ago

* empty log message *

File size: 20.2 KB
RevLine 
[1201]1;;; -*- Mode: Lisp -*-
[98]2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3;;;
4;;; Copyright (C) 1999, 2002, 2009, 2015 Marek Rychlik <rychlik@u.arizona.edu>
5;;;
6;;; This program is free software; you can redistribute it and/or modify
7;;; it under the terms of the GNU General Public License as published by
8;;; the Free Software Foundation; either version 2 of the License, or
9;;; (at your option) any later version.
10;;;
11;;; This program is distributed in the hope that it will be useful,
12;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
17;;; along with this program; if not, write to the Free Software
18;;; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19;;;
20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
21
[133]22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
23;;
[268]24;; Load this file into Maxima to bootstrap the Grobner package.
[390]25;; NOTE: This file does use symbols defined by Maxima, so it
26;; will not work when loaded in Common Lisp.
[133]27;;
[268]28;; DETAILS: This file implements an interface between the Grobner
[374]29;; basis package NGROBNER, which is a pure Common Lisp package, and
30;; Maxima. NGROBNER for efficiency uses its own representation of
31;; polynomials. Thus, it is necessary to convert Maxima representation
32;; to the internal representation and back. The facilities to do so
33;; are implemented in this file.
[268]34;;
[270]35;; Also, since the NGROBNER package consists of many Lisp files, it is
[375]36;; necessary to load the files. It is possible and preferrable to use
37;; ASDF for this purpose. The default is ASDF. It is also possible to
38;; simply used LOAD and COMPILE-FILE to accomplish this task.
[270]39;;
[133]40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
41
[98]42(in-package :maxima)
43
[568]44(macsyma-module cgb-maxima)
[98]45
[568]46
[98]47(eval-when
48 #+gcl (load eval)
49 #-gcl (:load-toplevel :execute)
50 (format t "~&Loading maxima-grobner ~a ~a~%"
51 "$Revision: 2.0 $" "$Date: 2015/06/02 0:34:17 $"))
52
53;;FUNCTS is loaded because it contains the definition of LCM
[995]54($load "functs")
[568]55#+sbcl(progn (require 'asdf) (load "ngrobner.asd")(asdf:load-system :ngrobner))
[152]56
[571]57(use-package :ngrobner)
[274]58
[571]59
[98]60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
61;;
62;; Maxima expression ring
63;;
64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
[521]65;;
66;; This is how we perform operations on coefficients
67;; using Maxima functions.
68;;
69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
70
[1669]71(defparameter +maxima-ring+
[230]72 (make-ring
[98]73 ;;(defun coeff-zerop (expr) (meval1 `(($is) (($equal) ,expr 0))))
74 :parse #'(lambda (expr)
75 (when modulus (setf expr ($rat expr)))
76 expr)
77 :unit #'(lambda () (if modulus ($rat 1) 1))
78 :zerop #'(lambda (expr)
79 ;;When is exactly a maxima expression equal to 0?
80 (cond ((numberp expr)
81 (= expr 0))
82 ((atom expr) nil)
83 (t
84 (case (caar expr)
85 (mrat (eql ($ratdisrep expr) 0))
86 (otherwise (eql ($totaldisrep expr) 0))))))
87 :add #'(lambda (x y) (m+ x y))
88 :sub #'(lambda (x y) (m- x y))
89 :uminus #'(lambda (x) (m- x))
90 :mul #'(lambda (x y) (m* x y))
91 ;;(defun coeff-div (x y) (cadr ($divide x y)))
92 :div #'(lambda (x y) (m// x y))
93 :lcm #'(lambda (x y) (meval1 `((|$LCM|) ,x ,y)))
94 :ezgcd #'(lambda (x y) (apply #'values (cdr ($ezgcd ($totaldisrep x) ($totaldisrep y)))))
95 ;; :gcd #'(lambda (x y) (second ($ezgcd x y)))))
96 :gcd #'(lambda (x y) ($gcd x y))))
97
[619]98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
99;;
100;; Maxima expression parsing
101;;
102;;
103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
104;;
105;; Functions and macros dealing with internal representation
106;; structure.
107;;
108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
[114]109
[619]110(defun equal-test-p (expr1 expr2)
111 (alike1 expr1 expr2))
112
113(defun coerce-maxima-list (expr)
114 "Convert a Maxima list to Lisp list."
115 (cond
116 ((and (consp (car expr)) (eql (caar expr) 'mlist)) (cdr expr))
117 (t expr)))
118
119(defun free-of-vars (expr vars) (apply #'$freeof `(,@vars ,expr)))
120
[1642]121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
122;;
123;; Order utilities
124;;
125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
126
[1674]127(defun find-ring-by-name (ring)
[1644]128 "This function returns the ring structure bases on input symbol."
129 (cond
130 ((null ring) nil)
131 ((symbolp ring)
132 (case ring
[1650]133 ((maxima-ring :maxima-ring #:maxima-ring $expression_ring #:expression_ring)
[1669]134 +maxima-ring+)
135 ((ring-of-integers :ring-of-integers #:ring-of-integers $ring_of_integers) +ring-of-integers+)
[1644]136 (otherwise
137 (mtell "~%Warning: Ring ~M not found. Using default.~%" ring))))
138 (t
139 (mtell "~%Ring specification ~M is not recognized. Using default.~%" ring)
140 nil)))
141
[1674]142(defun find-order-by-name (order)
[1642]143 "This function returns the order function bases on its name."
144 (cond
145 ((null order) nil)
146 ((symbolp order)
147 (case order
[1650]148 ((lex :lex $lex #:lex)
[1649]149 #'lex>)
[1650]150 ((grlex :grlex $grlex #:grlex)
[1649]151 #'grlex>)
152 ((grevlex :grevlex $grevlex #:grevlex)
153 #'grevlex>)
[1650]154 ((invlex :invlex $invlex #:invlex)
[1649]155 #'invlex>)
[1642]156 (otherwise
157 (mtell "~%Warning: Order ~M not found. Using default.~%" order))))
158 (t
159 (mtell "~%Order specification ~M is not recognized. Using default.~%" order)
160 nil)))
161
[1703]162(defun find-ring-and-order-by-name (&optional
163 (ring (find-ring-by-name $poly_coefficient_ring))
164 (order (find-order-by-name $poly_monomial_order))
[1724]165 (elimination-order (find-order-by-name $poly_elimination_order))
[1703]166 (primary-elimination-order (find-order-by-name $poly_primary_elimination_order))
167 (secondary-elimination-order (find-order-by-name $poly_secondary_elimination_order))
168 &aux
169 (ring-and-order (make-ring-and-order
170 :ring ring
171 :order order
172 :primary-elimination-order primary-elimination-order
173 :secondary-elimination-order secondary-elimination-order)))
[1721]174 "Build RING-AND-ORDER structure. The defaults are determined by various Maxima-level switches,
175which are names of ring and orders."
[1703]176 ring-and-order)
177
[1644]178(defun maxima->poly (expr vars
[1703]179 &optional
180 (ring-and-order (find-ring-and-order-by-name))
181 &aux
[1709]182 (vars (coerce-maxima-list vars))
[1673]183 (ring (ro-ring ring-and-order)))
[1683]184 "Convert a maxima polynomial expression EXPR in variables VARS to
185internal form. This works by first converting the expression to Lisp,
[1685]186and then evaluating the expression using polynomial arithmetic
187implemented by the POLYNOMIAL package."
[1708]188 (labels ((parse (arg) (maxima->poly arg vars ring-and-order))
[619]189 (parse-list (args) (mapcar #'parse args)))
190 (cond
191 ((eql expr 0) (make-poly-zero))
192 ((member expr vars :test #'equal-test-p)
193 (let ((pos (position expr vars :test #'equal-test-p)))
[1710]194 (make-poly-variable ring (length vars) pos)))
[619]195 ((free-of-vars expr vars)
196 ;;This means that variable-free CRE and Poisson forms will be converted
197 ;;to coefficients intact
[1710]198 (coerce-coeff ring expr vars))
[619]199 (t
200 (case (caar expr)
[1654]201 (mplus (reduce #'(lambda (x y) (poly-add ring-and-order x y)) (parse-list (cdr expr))))
[1710]202 (mminus (poly-uminus ring (parse (cadr expr))))
[619]203 (mtimes
204 (if (endp (cddr expr)) ;unary
205 (parse (cdr expr))
[1655]206 (reduce #'(lambda (p q) (poly-mul ring-and-order p q)) (parse-list (cdr expr)))))
[619]207 (mexpt
208 (cond
209 ((member (cadr expr) vars :test #'equal-test-p)
210 ;;Special handling of (expt var pow)
211 (let ((pos (position (cadr expr) vars :test #'equal-test-p)))
[1710]212 (make-poly-variable ring (length vars) pos (caddr expr))))
[619]213 ((not (and (integerp (caddr expr)) (plusp (caddr expr))))
214 ;; Negative power means division in coefficient ring
215 ;; Non-integer power means non-polynomial coefficient
216 (mtell "~%Warning: Expression ~%~M~%contains power which is not a positive integer. Parsing as coefficient.~%"
217 expr)
[1710]218 (coerce-coeff ring expr vars))
219 (t (poly-expt ring (parse (cadr expr)) (caddr expr)))))
[619]220 (mrat (parse ($ratdisrep expr)))
221 (mpois (parse ($outofpois expr)))
222 (otherwise
[1710]223 (coerce-coeff ring expr vars)))))))
[619]224
[1696]225(defun maxima->poly-list (expr vars
[1711]226 &optional
227 (ring-and-order (find-ring-and-order-by-name)))
[1693]228 "Convert a Maxima representation of a list of polynomials to the internal form."
[619]229 (case (caar expr)
[1688]230 (mlist (mapcar #'(lambda (p)
[1706]231 (maxima->poly p vars ring-and-order))
[1688]232 (cdr expr)))
[1691]233 (otherwise (merror "Expression ~M is not a list of polynomials in variables ~M."
234 expr vars))))
[619]235
[1700]236(defun maxima->poly-list-of-lists (poly-list-of-lists vars
[1705]237 &optional
[1707]238 (ring-and-order (find-ring-and-order-by-name)))
[619]239 "Parse a Maxima representation of a list of lists of polynomials."
[1707]240 (mapcar #'(lambda (g) (maxima->poly-list g vars ring-and-order))
[1700]241 (coerce-maxima-list poly-list-of-lists)))
[619]242
243
[1688]244
[111]245;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
246;;
[241]247;; Conversion from internal form to Maxima general form
248;;
249;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
250
251(defun maxima-head ()
252 (if $poly_return_term_list
253 '(mlist)
254 '(mplus)))
255
[1714]256(defun poly->maxima (poly-type object vars)
[241]257 (case poly-type
[1722]258 (:poly
[1719]259 `(,(maxima-head) ,@(mapcar #'(lambda (term) (poly->maxima :term term vars)) (poly-termlist object))))
[241]260 (:poly-list
[1718]261 `((mlist) ,@(mapcar #'(lambda (p) ($ratdisrep (poly->maxima :polynomial p vars))) object)))
[241]262 (:term
[1717]263 `((mtimes) ,($ratdisrep (term-coeff object))
[241]264 ,@(mapcar #'(lambda (var power) `((mexpt) ,var ,power))
[1720]265 vars (monom->list (term-monom object)))))
[241]266 ;; Assumes that Lisp and Maxima logicals coincide
267 (:logical object)
268 (otherwise
269 object)))
270
271
272;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
273;;
[111]274;; Unary and binary operation definition facility
275;;
276;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
[98]277
[111]278(defmacro define-unop (maxima-name fun-name
279 &optional (documentation nil documentation-supplied-p))
280 "Define a MAXIMA-level unary operator MAXIMA-NAME corresponding to unary function FUN-NAME."
281 `(defun ,maxima-name (p vars
282 &aux
283 (vars (coerce-maxima-list vars))
284 (p (parse-poly p vars)))
285 ,@(when documentation-supplied-p (list documentation))
[1669]286 (coerce-to-maxima :polynomial (,fun-name +maxima-ring+ p) vars)))
[111]287
288(defmacro define-binop (maxima-name fun-name
289 &optional (documentation nil documentation-supplied-p))
290 "Define a MAXIMA-level binary operator MAXIMA-NAME corresponding to binary function FUN-NAME."
291 `(defmfun ,maxima-name (p q vars
292 &aux
293 (vars (coerce-maxima-list vars))
294 (p (parse-poly p vars))
295 (q (parse-poly q vars)))
296 ,@(when documentation-supplied-p (list documentation))
[1669]297 (coerce-to-maxima :polynomial (,fun-name +maxima-ring+ p q) vars)))
[111]298
299
[1723]300(defvar *ring-and-order* nil)
301
[219]302;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
303;;
304;; Facilities for evaluating Grobner package expressions
305;; within a prepared environment
306;;
307;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
308
[1723]309#|
[219]310(defmacro with-monomial-order ((order) &body body)
311 "Evaluate BODY with monomial order set to ORDER."
312 `(let ((*monomial-order* (or (find-order ,order) *monomial-order*)))
313 . ,body))
314
315(defmacro with-coefficient-ring ((ring) &body body)
316 "Evaluate BODY with coefficient ring set to RING."
[1669]317 `(let ((+maxima-ring+ (or (find-ring ,ring) +maxima-ring+)))
[219]318 . ,body))
319
[863]320(defmacro with-ring-and-order ((ring order) &body body)
[830]321 "Evaluate BODY with monomial order set to ORDER and coefficient ring set to RING."
322 `(let ((*monomial-order* (or (find-order ,order) *monomial-order*))
[1669]323 (+maxima-ring+ (or (find-ring ,ring) +maxima-ring+)))
[830]324 . ,body))
325
[219]326(defmacro with-elimination-orders ((primary secondary elimination-order)
327 &body body)
328 "Evaluate BODY with primary and secondary elimination orders set to PRIMARY and SECONDARY."
329 `(let ((*primary-elimination-order* (or (find-order ,primary) *primary-elimination-order*))
330 (*secondary-elimination-order* (or (find-order ,secondary) *secondary-elimination-order*))
331 (*elimination-order* (or (find-order ,elimination-order) *elimination-order*)))
332 . ,body))
333
[1723]334|#
[219]335
[1723]336
[98]337;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
338;;
339;; Maxima-level interface functions
340;;
341;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
342
343;; Auxillary function for removing zero polynomial
344(defun remzero (plist) (remove #'poly-zerop plist))
345
346;;Simple operators
347
348(define-binop $poly_add poly-add
349 "Adds two polynomials P and Q")
350
351(define-binop $poly_subtract poly-sub
352 "Subtracts a polynomial Q from P.")
353
354(define-binop $poly_multiply poly-mul
355 "Returns the product of polynomials P and Q.")
356
357(define-binop $poly_s_polynomial spoly
358 "Returns the syzygy polynomial (S-polynomial) of two polynomials P and Q.")
359
360(define-unop $poly_primitive_part poly-primitive-part
361 "Returns the polynomial P divided by GCD of its coefficients.")
362
363(define-unop $poly_normalize poly-normalize
364 "Returns the polynomial P divided by the leading coefficient.")
365
[222]366;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
367;;
368;; Macro facility for writing Maxima-level wrappers for
369;; functions operating on internal representation
370;;
371;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
372
373(defmacro with-parsed-polynomials (((maxima-vars &optional (maxima-new-vars nil new-vars-supplied-p))
374 &key (polynomials nil)
[1288]375 (poly-lists nil)
376 (poly-list-lists nil)
377 (value-type nil))
[222]378 &body body
379 &aux (vars (gensym))
[1288]380 (new-vars (gensym)))
[222]381 `(let ((,vars (coerce-maxima-list ,maxima-vars))
382 ,@(when new-vars-supplied-p
[1288]383 (list `(,new-vars (coerce-maxima-list ,maxima-new-vars)))))
[222]384 (coerce-to-maxima
385 ,value-type
[1724]386 (let ((*ring-and-order* ,(find-ring-and-order-by-name
387 :ring ,$poly_coefficient_ring
388 :order ,$poly_monomial_order
389 :elimination-order ,$poly_primary_elimination_order
390 :primary-elimination-order ,$poly_secondary_elimination_order
391 :secondary-elimination-order ,$poly_elimination_order)))
392 (let ,(let ((args nil))
[1288]393 (dolist (p polynomials args)
394 (setf args (cons `(,p (parse-poly ,p ,vars)) args)))
395 (dolist (p poly-lists args)
396 (setf args (cons `(,p (parse-poly-list ,p ,vars)) args)))
397 (dolist (p poly-list-lists args)
398 (setf args (cons `(,p (parse-poly-list-list ,p ,vars)) args))))
[222]399 . ,body))))
400 ,(if new-vars-supplied-p
401 `(append ,vars ,new-vars)
[1288]402 vars))))
[222]403
404
[98]405;;Functions
406
407(defmfun $poly_expand (p vars)
408 "This function is equivalent to EXPAND(P) if P parses correctly to a polynomial.
409If the representation is not compatible with a polynomial in variables VARS,
410the result is an error."
411 (with-parsed-polynomials ((vars) :polynomials (p)
412 :value-type :polynomial)
413 p))
414
[1724]415#|
416
[98]417(defmfun $poly_expt (p n vars)
418 (with-parsed-polynomials ((vars) :polynomials (p) :value-type :polynomial)
[1669]419 (poly-expt +maxima-ring+ p n)))
[98]420
421(defmfun $poly_content (p vars)
422 (with-parsed-polynomials ((vars) :polynomials (p))
[1669]423 (poly-content +maxima-ring+ p)))
[98]424
425(defmfun $poly_pseudo_divide (f fl vars
426 &aux (vars (coerce-maxima-list vars))
427 (f (parse-poly f vars))
428 (fl (parse-poly-list fl vars)))
429 (multiple-value-bind (quot rem c division-count)
[1669]430 (poly-pseudo-divide +maxima-ring+ f fl)
[98]431 `((mlist)
432 ,(coerce-to-maxima :poly-list quot vars)
433 ,(coerce-to-maxima :polynomial rem vars)
434 ,c
435 ,division-count)))
436
437(defmfun $poly_exact_divide (f g vars)
438 (with-parsed-polynomials ((vars) :polynomials (f g) :value-type :polynomial)
[1669]439 (poly-exact-divide +maxima-ring+ f g)))
[98]440
441(defmfun $poly_normal_form (f fl vars)
442 (with-parsed-polynomials ((vars) :polynomials (f)
443 :poly-lists (fl)
444 :value-type :polynomial)
[1669]445 (normal-form +maxima-ring+ f (remzero fl) nil)))
[98]446
447(defmfun $poly_buchberger_criterion (g vars)
448 (with-parsed-polynomials ((vars) :poly-lists (g) :value-type :logical)
[1669]449 (buchberger-criterion +maxima-ring+ g)))
[98]450
451(defmfun $poly_buchberger (fl vars)
452 (with-parsed-polynomials ((vars) :poly-lists (fl) :value-type :poly-list)
[1669]453 (buchberger +maxima-ring+ (remzero fl) 0 nil)))
[98]454
455(defmfun $poly_reduction (plist vars)
456 (with-parsed-polynomials ((vars) :poly-lists (plist)
457 :value-type :poly-list)
[1669]458 (reduction +maxima-ring+ plist)))
[98]459
460(defmfun $poly_minimization (plist vars)
461 (with-parsed-polynomials ((vars) :poly-lists (plist)
462 :value-type :poly-list)
463 (minimization plist)))
464
465(defmfun $poly_normalize_list (plist vars)
466 (with-parsed-polynomials ((vars) :poly-lists (plist)
467 :value-type :poly-list)
[1669]468 (poly-normalize-list +maxima-ring+ plist)))
[98]469
470(defmfun $poly_grobner (f vars)
471 (with-parsed-polynomials ((vars) :poly-lists (f)
472 :value-type :poly-list)
[1669]473 (grobner +maxima-ring+ (remzero f))))
[98]474
475(defmfun $poly_reduced_grobner (f vars)
476 (with-parsed-polynomials ((vars) :poly-lists (f)
477 :value-type :poly-list)
[1669]478 (reduced-grobner +maxima-ring+ (remzero f))))
[98]479
480(defmfun $poly_depends_p (p var mvars
481 &aux (vars (coerce-maxima-list mvars))
482 (pos (position var vars)))
483 (if (null pos)
484 (merror "~%Variable ~M not in the list of variables ~M." var mvars)
485 (poly-depends-p (parse-poly p vars) pos)))
486
487(defmfun $poly_elimination_ideal (flist k vars)
488 (with-parsed-polynomials ((vars) :poly-lists (flist)
489 :value-type :poly-list)
[1669]490 (elimination-ideal +maxima-ring+ flist k nil 0)))
[98]491
492(defmfun $poly_colon_ideal (f g vars)
493 (with-parsed-polynomials ((vars) :poly-lists (f g) :value-type :poly-list)
[1669]494 (colon-ideal +maxima-ring+ f g nil)))
[98]495
496(defmfun $poly_ideal_intersection (f g vars)
497 (with-parsed-polynomials ((vars) :poly-lists (f g) :value-type :poly-list)
[1669]498 (ideal-intersection +maxima-ring+ f g nil)))
[98]499
500(defmfun $poly_lcm (f g vars)
501 (with-parsed-polynomials ((vars) :polynomials (f g) :value-type :polynomial)
[1669]502 (poly-lcm +maxima-ring+ f g)))
[98]503
504(defmfun $poly_gcd (f g vars)
505 ($first ($divide (m* f g) ($poly_lcm f g vars))))
506
507(defmfun $poly_grobner_equal (g1 g2 vars)
508 (with-parsed-polynomials ((vars) :poly-lists (g1 g2))
[1669]509 (grobner-equal +maxima-ring+ g1 g2)))
[98]510
511(defmfun $poly_grobner_subsetp (g1 g2 vars)
512 (with-parsed-polynomials ((vars) :poly-lists (g1 g2))
[1669]513 (grobner-subsetp +maxima-ring+ g1 g2)))
[98]514
515(defmfun $poly_grobner_member (p g vars)
516 (with-parsed-polynomials ((vars) :polynomials (p) :poly-lists (g))
[1669]517 (grobner-member +maxima-ring+ p g)))
[98]518
519(defmfun $poly_ideal_saturation1 (f p vars)
520 (with-parsed-polynomials ((vars) :poly-lists (f) :polynomials (p)
521 :value-type :poly-list)
[1669]522 (ideal-saturation-1 +maxima-ring+ f p 0)))
[98]523
524(defmfun $poly_saturation_extension (f plist vars new-vars)
525 (with-parsed-polynomials ((vars new-vars)
526 :poly-lists (f plist)
527 :value-type :poly-list)
[1669]528 (saturation-extension +maxima-ring+ f plist)))
[98]529
530(defmfun $poly_polysaturation_extension (f plist vars new-vars)
531 (with-parsed-polynomials ((vars new-vars)
532 :poly-lists (f plist)
533 :value-type :poly-list)
[1669]534 (polysaturation-extension +maxima-ring+ f plist)))
[98]535
536(defmfun $poly_ideal_polysaturation1 (f plist vars)
537 (with-parsed-polynomials ((vars) :poly-lists (f plist)
538 :value-type :poly-list)
[1669]539 (ideal-polysaturation-1 +maxima-ring+ f plist 0 nil)))
[98]540
541(defmfun $poly_ideal_saturation (f g vars)
542 (with-parsed-polynomials ((vars) :poly-lists (f g)
543 :value-type :poly-list)
[1669]544 (ideal-saturation +maxima-ring+ f g 0 nil)))
[98]545
546(defmfun $poly_ideal_polysaturation (f ideal-list vars)
547 (with-parsed-polynomials ((vars) :poly-lists (f)
548 :poly-list-lists (ideal-list)
549 :value-type :poly-list)
[1669]550 (ideal-polysaturation +maxima-ring+ f ideal-list 0 nil)))
[98]551
552(defmfun $poly_lt (f vars)
553 (with-parsed-polynomials ((vars) :polynomials (f) :value-type :polynomial)
554 (make-poly-from-termlist (list (poly-lt f)))))
555
556(defmfun $poly_lm (f vars)
557 (with-parsed-polynomials ((vars) :polynomials (f) :value-type :polynomial)
[1669]558 (make-poly-from-termlist (list (make-term (poly-lm f) (funcall (ring-unit +maxima-ring+)))))))
[98]559
[1640]560|#
Note: See TracBrowser for help on using the repository browser.