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@ 1887

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

* empty log message *

File size: 21.8 KB
Line 
1;;; -*- Mode: Lisp -*-
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
22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
23;;
24;; Load this file into Maxima to bootstrap the Grobner package.
25;; NOTE: This file does use symbols defined by Maxima, so it
26;; will not work when loaded in Common Lisp.
27;;
28;; DETAILS: This file implements an interface between the Grobner
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.
34;;
35;; Also, since the NGROBNER package consists of many Lisp files, it is
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.
39;;
40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
41
42(in-package :maxima)
43
44(macsyma-module cgb-maxima)
45
46
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
54($load "functs")
55#+sbcl(progn (require 'asdf) (load "ngrobner.asd")(asdf:load-system :ngrobner))
56
57(use-package :ngrobner)
58
59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
60;;
61;; Global switches
62;;
63;; Can be used in Maxima just fine, as they observe the
64;; Maxima naming convention, i.e. all names visible at the
65;; Maxima toplevel begin with a '$'.
66;;
67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
68
69(defvar $poly_monomial_order '$lex
70 "This switch controls which monomial order is used in polynomial
71and Grobner basis calculations. If not set, LEX will be used")
72
73(defvar $poly_coefficient_ring '$expression_ring
74 "This switch indicates the coefficient ring of the polynomials
75that will be used in grobner calculations. If not set, Maxima's
76general expression ring will be used. This variable may be set
77to RING_OF_INTEGERS if desired.")
78
79(defvar $poly_primary_elimination_order nil
80 "Name of the default order for eliminated variables in elimination-based functions.
81If not set, LEX will be used.")
82
83(defvar $poly_secondary_elimination_order nil
84 "Name of the default order for kept variables in elimination-based functions.
85If not set, LEX will be used.")
86
87(defvar $poly_elimination_order nil
88 "Name of the default elimination order used in elimination calculations.
89If set, it overrides the settings in variables POLY_PRIMARY_ELIMINATION_ORDER
90and SECONDARY_ELIMINATION_ORDER. The user must ensure that this is a true
91elimination order valid for the number of eliminated variables.")
92
93(defvar $poly_return_term_list nil
94 "If set to T, all functions in this package will return each polynomial as a
95list of terms in the current monomial order rather than a Maxima general expression.")
96
97
98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
99;;
100;; Maxima expression ring
101;;
102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
103;;
104;; This is how we perform operations on coefficients
105;; using Maxima functions.
106;;
107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
108
109(defparameter +maxima-ring+
110 (make-ring
111 ;;(defun coeff-zerop (expr) (meval1 `(($is) (($equal) ,expr 0))))
112 :parse #'(lambda (expr)
113 (when modulus (setf expr ($rat expr)))
114 expr)
115 :unit #'(lambda () (if modulus ($rat 1) 1))
116 :zerop #'(lambda (expr)
117 ;;When is exactly a maxima expression equal to 0?
118 (cond ((numberp expr)
119 (= expr 0))
120 ((atom expr) nil)
121 (t
122 (case (caar expr)
123 (mrat (eql ($ratdisrep expr) 0))
124 (otherwise (eql ($totaldisrep expr) 0))))))
125 :add #'(lambda (x y) (m+ x y))
126 :sub #'(lambda (x y) (m- x y))
127 :uminus #'(lambda (x) (m- x))
128 :mul #'(lambda (x y) (m* x y))
129 ;;(defun coeff-div (x y) (cadr ($divide x y)))
130 :div #'(lambda (x y) (m// x y))
131 :lcm #'(lambda (x y) (meval1 `((|$LCM|) ,x ,y)))
132 :ezgcd #'(lambda (x y) (apply #'values (cdr ($ezgcd ($totaldisrep x) ($totaldisrep y)))))
133 ;; :gcd #'(lambda (x y) (second ($ezgcd x y)))))
134 :gcd #'(lambda (x y) ($gcd x y))))
135
136;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
137;;
138;; Maxima expression parsing
139;;
140;;
141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
142;;
143;; Functions and macros dealing with internal representation
144;; structure.
145;;
146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
147
148(defun equal-test-p (expr1 expr2)
149 (alike1 expr1 expr2))
150
151(defun coerce-maxima-list (expr)
152 "Convert a Maxima list to Lisp list."
153 (cond
154 ((and (consp (car expr)) (eql (caar expr) 'mlist)) (cdr expr))
155 (t expr)))
156
157(defun free-of-vars (expr vars) (apply #'$freeof `(,@vars ,expr)))
158
159;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
160;;
161;; Order utilities
162;;
163;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
164
165(defun find-ring-by-name (ring)
166 "This function returns the ring structure bases on input symbol."
167 (cond
168 ((null ring) nil)
169 ((symbolp ring)
170 (case ring
171 ((maxima-ring :maxima-ring #:maxima-ring $expression_ring #:expression_ring)
172 +maxima-ring+)
173 ((ring-of-integers :ring-of-integers #:ring-of-integers $ring_of_integers) +ring-of-integers+)
174 (otherwise
175 (mtell "~%Warning: Ring ~M not found. Using default.~%" ring))))
176 (t
177 (mtell "~%Ring specification ~M is not recognized. Using default.~%" ring)
178 nil)))
179
180(defun find-order-by-name (order)
181 "This function returns the order function bases on its name."
182 (cond
183 ((null order) nil)
184 ((symbolp order)
185 (case order
186 ((lex :lex $lex #:lex)
187 #'lex>)
188 ((grlex :grlex $grlex #:grlex)
189 #'grlex>)
190 ((grevlex :grevlex $grevlex #:grevlex)
191 #'grevlex>)
192 ((invlex :invlex $invlex #:invlex)
193 #'invlex>)
194 (otherwise
195 (mtell "~%Warning: Order ~M not found. Using default.~%" order))))
196 (t
197 (mtell "~%Order specification ~M is not recognized. Using default.~%" order)
198 nil)))
199
200(defun find-ring-and-order-by-name (&optional
201 (ring (find-ring-by-name $poly_coefficient_ring))
202 (order (find-order-by-name $poly_monomial_order))
203 (primary-elimination-order (find-order-by-name $poly_primary_elimination_order))
204 (secondary-elimination-order (find-order-by-name $poly_secondary_elimination_order))
205 &aux
206 (ring-and-order (make-ring-and-order
207 :ring ring
208 :order order
209 :primary-elimination-order primary-elimination-order
210 :secondary-elimination-order secondary-elimination-order)))
211 "Build RING-AND-ORDER structure. The defaults are determined by various Maxima-level switches,
212which are names of ring and orders."
213 ring-and-order)
214
215(defun maxima->poly (expr vars
216 &optional
217 (ring-and-order (find-ring-and-order-by-name))
218 &aux
219 (vars (coerce-maxima-list vars))
220 (ring (ro-ring ring-and-order)))
221 "Convert a maxima polynomial expression EXPR in variables VARS to
222internal form. This works by first converting the expression to Lisp,
223and then evaluating the expression using polynomial arithmetic
224implemented by the POLYNOMIAL package."
225 (labels ((parse (arg) (maxima->poly arg vars ring-and-order))
226 (parse-list (args) (mapcar #'parse args)))
227 (cond
228 ((eql expr 0) (make-poly-zero))
229 ((member expr vars :test #'equal-test-p)
230 (let ((pos (position expr vars :test #'equal-test-p)))
231 (make-poly-variable ring (length vars) pos)))
232 ((free-of-vars expr vars)
233 ;;This means that variable-free CRE and Poisson forms will be converted
234 ;;to coefficients intact
235 (coerce-coeff ring expr vars))
236 (t
237 (case (caar expr)
238 (mplus (reduce #'(lambda (x y) (poly-add ring-and-order x y)) (parse-list (cdr expr))))
239 (mminus (poly-uminus ring (parse (cadr expr))))
240 (mtimes
241 (if (endp (cddr expr)) ;unary
242 (parse (cdr expr))
243 (reduce #'(lambda (p q) (poly-mul ring-and-order p q)) (parse-list (cdr expr)))))
244 (mexpt
245 (cond
246 ((member (cadr expr) vars :test #'equal-test-p)
247 ;;Special handling of (expt var pow)
248 (let ((pos (position (cadr expr) vars :test #'equal-test-p)))
249 (make-poly-variable ring (length vars) pos (caddr expr))))
250 ((not (and (integerp (caddr expr)) (plusp (caddr expr))))
251 ;; Negative power means division in coefficient ring
252 ;; Non-integer power means non-polynomial coefficient
253 (mtell "~%Warning: Expression ~%~M~%contains power which is not a positive integer. Parsing as coefficient.~%"
254 expr)
255 (coerce-coeff ring expr vars))
256 (t (poly-expt ring-and-order (parse (cadr expr)) (caddr expr)))))
257 (mrat (parse ($ratdisrep expr)))
258 (mpois (parse ($outofpois expr)))
259 (otherwise
260 (coerce-coeff ring expr vars)))))))
261
262(defun maxima->poly-list (expr vars
263 &optional
264 (ring-and-order (find-ring-and-order-by-name)))
265 "Convert a Maxima representation of a list of polynomials to the internal form."
266 (case (caar expr)
267 (mlist (mapcar #'(lambda (p)
268 (maxima->poly p vars ring-and-order))
269 (cdr expr)))
270 (otherwise (merror "Expression ~M is not a list of polynomials in variables ~M."
271 expr vars))))
272
273(defun maxima->poly-list-list (poly-list-of-lists vars
274 &optional
275 (ring-and-order (find-ring-and-order-by-name)))
276 "Parse a Maxima representation of a list of lists of polynomials."
277 (mapcar #'(lambda (g) (maxima->poly-list g vars ring-and-order))
278 (coerce-maxima-list poly-list-of-lists)))
279
280
281
282;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
283;;
284;; Conversion from internal form to Maxima general form
285;;
286;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
287
288(defun maxima-head ()
289 (if $poly_return_term_list
290 '(mlist)
291 '(mplus)))
292
293(defun poly->maxima (poly-type object vars)
294 (case poly-type
295 (:custom object) ;Bypass processing
296 (:polynomial
297 `(,(maxima-head) ,@(mapcar #'(lambda (term) (poly->maxima :term term vars)) (poly-termlist object))))
298 (:poly-list
299 `((mlist) ,@(mapcar #'(lambda (p) ($ratdisrep (poly->maxima :polynomial p vars))) object)))
300 (:term
301 `((mtimes) ,($ratdisrep (term-coeff object))
302 ,@(mapcar
303 #'(lambda (var power) `((mexpt) ,var ,power))
304 vars
305 (monom->list (term-monom object)))))
306 ;; Assumes that Lisp and Maxima logicals coincide
307 (:logical object)
308 (otherwise object)))
309
310;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
311;;
312;; Macro facility for writing Maxima-level wrappers for
313;; functions operating on internal representation.
314;;
315;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
316
317(defmacro with-ring-and-order (((maxima-vars &optional (maxima-new-vars nil new-vars-supplied-p))
318 &key
319 (polynomials nil)
320 (poly-lists nil)
321 (poly-list-lists nil)
322 (value-type nil)
323 (ring-and-order-var 'ring-and-order)
324 (ring-var 'ring))
325 &body
326 body
327 &aux
328 (vars (gensym))
329 (new-vars (gensym)))
330 "Evaluate a polynomial expression BODY in an environment
331constructred from Maxima switches. The supplied arguments
332POLYNOMIALS, POLY-LISTS and POLY-LIST-LISTS should be polynomials,
333polynomial lists an lists of lists of polynomials, in Maxima general
334form. These are translated to NGROBNER package internal form and
335evaluated using operations in the NGROBNER package. The BODY should be
336defined in terms of those operations. MAXIMA-VARS is set to the list
337of variable names used at the Maxima level. The evaluation is
338performed by the NGROBNER package which ignores variable names, thus
339MAXIMA-VARS is used only to translate the polynomial expression to
340NGROBNER internal form. After evaluation, the value of BODY is
341translated back to the Maxima general form. When MAXIMA-NEW-VARS is
342present, it is appended to MAXIMA-VARS upon translation from the
343internal form back to Maxima general form, thus allowing extra
344variables which may have been created by the evaluation process. The
345value type can be either :POLYNOMIAL, :POLY-LIST or :TERM, depending
346on the form of the result returned by the top NGROBNER operation.
347During evaluation, symbols supplied by RING-AND-ORDER-VAR (defaul
348value 'RING-AND-ORDER), and RING-VAR (default value 'RING) are bound
349to RING-AND-ORDER and RING instances."
350 `(let ((,vars (coerce-maxima-list ,maxima-vars))
351 ,@(when new-vars-supplied-p
352 (list `(,new-vars (coerce-maxima-list ,maxima-new-vars)))))
353 (poly->maxima
354 ,value-type
355 (let ((,ring-and-order-var ,(find-ring-and-order-by-name)))
356 ;; Define a shorthand to RING
357 (symbol-macrolet ((,ring-var (ro-ring ring-and-order)))
358 (let ,(let ((args nil))
359 (dolist (p polynomials args)
360 (setf args (cons `(,p (maxima->poly ,p ,vars ,ring-and-order-var)) args)))
361 (dolist (p poly-lists args)
362 (setf args (cons `(,p (maxima->poly-list ,p ,vars ,ring-and-order-var)) args)))
363 (dolist (p poly-list-lists args)
364 (setf args (cons `(,p (maxima->poly-list-list ,p ,vars ,ring-and-order-var)) args))))
365 . ,body)))
366 ,(if new-vars-supplied-p
367 `(append ,vars ,new-vars)
368 vars))))
369
370
371;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
372;;
373;; N-ary (unary and binary) operation definition facility
374;;
375;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376
377(defmacro define-op (maxima-name ;Name of maxima level function
378 (fun-name env &rest args) ;Lisp level form to evaluate
379 &optional
380 (documentation nil documentation-supplied-p)
381 &aux
382 ;; The argument passed as first arg
383 (env-arg (ecase env
384 (:ring-and-order 'ring-and-order)
385 (:ring 'ring))))
386 "Define a MAXIMA-level unary operator MAXIMA-NAME corresponding to unary function FUN-NAME.
387The second argument should be :RING or :RING-AND-ORDER, and it signals
388the type of the first argument that should be passed to function
389FUN-NAME. ARGS is a list of formal parameters passed to the function,
390i.e. symbols used as arguments. The macro expands to a Maxima-level
391function definition with name MAXIMA-NAME, which wraps FUN-NAME."
392 `(defmfun ,maxima-name (,@args vars)
393 ,@(when documentation-supplied-p (list documentation))
394 (with-ring-and-order ((vars) :polynomials (,@args) :value-type :polynomial)
395 (,fun-name ,env-arg ,@args))))
396
397;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
398;;
399;; Maxima-level interface functions
400;;
401;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
402
403;; Auxillary function for removing zero polynomial
404(defun remzero (plist) (remove #'poly-zerop plist))
405
406;;Simple operators
407(define-op $poly_add (poly-add :ring-and-order p q)
408 "Adds two polynomials P and Q")
409
410(define-op $poly_subtract (poly-sub :ring-and-order p q)
411 "Subtracts a polynomial Q from P.")
412
413(define-op $poly_multiply (poly-mul :ring-and-order p q)
414 "Returns the product of polynomials P and Q.")
415
416(define-op $poly_s_polynomial (spoly :ring-and-order p q)
417 "Returns the syzygy polynomial (S-polynomial) of two polynomials P and Q.")
418
419(define-op $poly_primitive_part (poly-primitive-part :ring p)
420 "Returns the polynomial P divided by GCD of its coefficients.")
421
422(define-op $poly_normalize (poly-normalize :ring p)
423 "Returns the polynomial P divided by the leading coefficient.")
424
425
426;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
427;;
428;; More complex functions
429;;
430;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
431
432(defmfun $poly_expand (p vars)
433 "This function is equivalent to EXPAND(P) if P parses correctly to a polynomial.
434If the representation is not compatible with a polynomial in variables VARS,
435the result is an error."
436 (with-ring-and-order ((vars) :polynomials (p) :value-type :polynomial) p))
437
438
439(defmfun $poly_expt (p n vars)
440 (with-ring-and-order ((vars) :polynomials (p) :value-type :polynomial)
441 (poly-expt ring-and-order p n)))
442
443(defmfun $poly_content (p vars)
444 (with-ring-and-order ((vars) :polynomials (p))
445 (poly-content ring p)))
446
447(defmfun $poly_pseudo_divide (f fl mvars &aux (vars (coerce-maxima-list mvars)))
448 (with-ring-and-order ((mvars)
449 :polynomials (f)
450 :poly-lists (fl)
451 :value-type :custom)
452 (multiple-value-bind (quot rem c division-count)
453 (poly-pseudo-divide ring-and-order f fl)
454 `((mlist)
455 ,(poly->maxima :poly-list quot vars)
456 ,(poly->maxima :polynomial rem vars)
457 ,c
458 ,division-count))))
459
460(defmfun $poly_exact_divide (f g vars)
461 (with-ring-and-order ((vars) :polynomials (f g) :value-type :polynomial)
462 (poly-exact-divide ring-and-order f g)))
463
464(defmfun $poly_normal_form (f fl vars)
465 (with-ring-and-order ((vars) :polynomials (f)
466 :poly-lists (fl)
467 :value-type :polynomial)
468 (normal-form ring-and-order f (remzero fl) nil)))
469
470(defmfun $poly_buchberger_criterion (g vars)
471 (with-ring-and-order ((vars) :poly-lists (g) :value-type :logical)
472 (buchberger-criterion ring-and-order g)))
473
474(defmfun $poly_buchberger (fl vars)
475 (with-ring-and-order ((vars) :poly-lists (fl) :value-type :poly-list)
476 (buchberger ring-and-order (remzero fl) 0 nil)))
477
478(defmfun $poly_reduction (plist vars)
479 (with-ring-and-order ((vars) :poly-lists (plist)
480 :value-type :poly-list)
481 (reduction ring-and-order plist)))
482
483(defmfun $poly_minimization (plist vars)
484 (with-ring-and-order ((vars) :poly-lists (plist)
485 :value-type :poly-list)
486 (minimization plist)))
487
488(defmfun $poly_normalize_list (plist vars)
489 (with-ring-and-order ((vars) :poly-lists (plist)
490 :value-type :poly-list)
491 (poly-normalize-list ring plist)))
492
493(defmfun $poly_grobner (f vars)
494 (with-ring-and-order ((vars) :poly-lists (f)
495 :value-type :poly-list)
496 (grobner ring-and-order (remzero f))))
497
498(defmfun $poly_reduced_grobner (f vars)
499 (with-ring-and-order ((vars) :poly-lists (f)
500 :value-type :poly-list)
501 (reduced-grobner ring-and-order (remzero f))))
502
503(defmfun $poly_depends_p (p var mvars
504 &aux
505 (vars (coerce-maxima-list mvars))
506 (pos (position var vars)))
507 (with-ring-and-order ((mvars) :polynomials (p) :value-type :custom)
508 (if (null pos)
509 (merror "~%Variable ~M not in the list of variables ~M." var mvars)
510 (poly-depends-p p pos))))
511
512(defmfun $poly_elimination_ideal (flist k vars)
513 (with-ring-and-order ((vars) :poly-lists (flist)
514 :value-type :poly-list)
515 (elimination-ideal ring-and-order flist k nil 0)))
516
517(defmfun $poly_colon_ideal (f g vars)
518 (with-ring-and-order ((vars) :poly-lists (f g) :value-type :poly-list)
519 (colon-ideal ring-and-order f g nil)))
520
521(defmfun $poly_ideal_intersection (f g vars)
522 (with-ring-and-order ((vars) :poly-lists (f g) :value-type :poly-list)
523 (ideal-intersection ring-and-order f g nil)))
524
525(defmfun $poly_lcm (f g vars)
526 (with-ring-and-order ((vars) :polynomials (f g) :value-type :polynomial)
527 (poly-lcm ring-and-order f g)))
528
529(defmfun $poly_gcd (f g vars)
530 ($first ($divide (m* f g) ($poly_lcm f g vars))))
531
532(defmfun $poly_grobner_equal (g1 g2 vars)
533 (with-ring-and-order ((vars) :poly-lists (g1 g2))
534 (grobner-equal ring-and-order g1 g2)))
535
536(defmfun $poly_grobner_subsetp (g1 g2 vars)
537 (with-ring-and-order ((vars) :poly-lists (g1 g2))
538 (grobner-subsetp ring-and-order g1 g2)))
539
540(defmfun $poly_grobner_member (p g vars)
541 (with-ring-and-order ((vars) :polynomials (p) :poly-lists (g))
542 (grobner-member ring-and-order p g)))
543
544(defmfun $poly_ideal_saturation1 (f p vars)
545 (with-ring-and-order ((vars) :poly-lists (f) :polynomials (p)
546 :value-type :poly-list)
547 (ideal-saturation-1 ring-and-order f p 0)))
548
549(defmfun $poly_saturation_extension (f plist vars new-vars)
550 (with-ring-and-order ((vars new-vars)
551 :poly-lists (f plist)
552 :value-type :poly-list)
553 (saturation-extension ring f plist)))
554
555(defmfun $poly_polysaturation_extension (f plist vars new-vars)
556 (with-ring-and-order ((vars new-vars)
557 :poly-lists (f plist)
558 :value-type :poly-list)
559 (polysaturation-extension ring f plist)))
560
561(defmfun $poly_ideal_polysaturation1 (f plist vars)
562 (with-ring-and-order ((vars) :poly-lists (f plist)
563 :value-type :poly-list)
564 (ideal-polysaturation-1 ring-and-order f plist 0 nil)))
565
566(defmfun $poly_ideal_saturation (f g vars)
567 (with-ring-and-order ((vars) :poly-lists (f g)
568 :value-type :poly-list)
569 (ideal-saturation ring-and-order f g 0 nil)))
570
571(defmfun $poly_ideal_polysaturation (f ideal-list vars)
572 (with-ring-and-order ((vars) :poly-lists (f)
573 :poly-list-lists (ideal-list)
574 :value-type :poly-list)
575 (ideal-polysaturation ring-and-order f ideal-list 0 nil)))
576
577(defmfun $poly_lt (f vars)
578 (with-ring-and-order ((vars) :polynomials (f) :value-type :polynomial)
579 (make-poly-from-termlist (list (poly-lt f)))))
580
581(defmfun $poly_lm (f vars)
582 (with-ring-and-order ((vars) :polynomials (f) :value-type :polynomial)
583 (make-poly-from-termlist (list (make-term :monom (poly-lm f) :coeff (funcall (ring-unit ring)))))))
Note: See TracBrowser for help on using the repository browser.