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 | ;; Standard postprocessing of Grobner bases:
|
---|
25 | ;; - reduction
|
---|
26 | ;; - minimization
|
---|
27 | ;;
|
---|
28 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
29 |
|
---|
30 | (defpackage "GB-POSTPROCESSING"
|
---|
31 | (:use :cl :monomial :division :polynomial :ring-and-order)
|
---|
32 | (:export "REDUCTION" "MINIMIZATION"))
|
---|
33 |
|
---|
34 | (in-package :gb-postprocessing)
|
---|
35 |
|
---|
36 | (defun reduction (ring-and-order plist)
|
---|
37 | "Reduce a list of polynomials PLIST, so that non of the terms in any of
|
---|
38 | the polynomials is divisible by a leading monomial of another
|
---|
39 | polynomial. Return the reduced list."
|
---|
40 | (declare (type ring-and-order ring-and-order))
|
---|
41 | (do ((q plist)
|
---|
42 | (found t))
|
---|
43 | ((not found)
|
---|
44 | (mapcar #'(lambda (x) (poly-primitive-part ring x)) q))
|
---|
45 | ;;Find p in Q such that p is reducible mod Q\{p}
|
---|
46 | (setf found nil)
|
---|
47 | (dolist (x q)
|
---|
48 | (let ((q1 (remove x q)))
|
---|
49 | (multiple-value-bind (h c div-count)
|
---|
50 | (normal-form ring x q1 nil #| not a top reduction! |# )
|
---|
51 | (declare (ignore c))
|
---|
52 | (unless (zerop div-count)
|
---|
53 | (setf found t q q1)
|
---|
54 | (unless (poly-zerop h)
|
---|
55 | (setf q (nconc q1 (list h))))
|
---|
56 | (return)))))))
|
---|
57 |
|
---|
58 | (defun minimization (p)
|
---|
59 | "Returns a sublist of the polynomial list P spanning the same
|
---|
60 | monomial ideal as P but minimal, i.e. no leading monomial
|
---|
61 | of a polynomial in the sublist divides the leading monomial
|
---|
62 | of another polynomial."
|
---|
63 | (do ((q p)
|
---|
64 | (found t))
|
---|
65 | ((not found) q)
|
---|
66 | ;;Find p in Q such that lm(p) is in LM(Q\{p})
|
---|
67 | (setf found nil
|
---|
68 | q (dolist (x q q)
|
---|
69 | (let ((q1 (remove x q)))
|
---|
70 | (when (member-if #'(lambda (p) (monom-divides-p (poly-lm x) (poly-lm p))) q1)
|
---|
71 | (setf found t)
|
---|
72 | (return q1)))))))
|
---|