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/gb-postprocessing.lisp@ 1542

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

* empty log message *

File size: 3.0 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;; Standard postprocessing of Grobner bases:
25;; - reduction
26;; - minimization
27;;
28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
29
30(defpackage "GB-POSTPROCESSING"
31 (:use :cl :monomial :division :polynomial :ring :ring-and-order)
32 (:export "REDUCTION" "MINIMIZATION"))
33
34(in-package :gb-postprocessing)
35
36(defun reduction (ring-and-order plist
37 &aux
38 (ring (ro-ring ring-and-order)))
39 "Reduce a list of polynomials PLIST, so that non of the terms in any of
40the polynomials is divisible by a leading monomial of another
41polynomial. Return the reduced list."
42 (declare (type ring-and-order ring-and-order))
43 (do ((q plist)
44 (found t))
45 ((not found)
46 (mapcar #'(lambda (x) (poly-primitive-part ring x)) q))
47 ;;Find p in Q such that p is reducible mod Q\{p}
48 (setf found nil)
49 (let ((x (find-if
50 #'(lambda (y)
51 (multiple-value-bind (h c div-count)
52 (normal-form ring-and-order
53 y
54 (remove y q)
55 nil #| not a top reduction! |#
56 )
57 (declare (ignore h c))
58 (plusp div-count))))))
59 (when x
60 (setf found t
61 q (delete x q))))))
62
63(defun minimization (plist)
64 "Returns a sublist of the polynomial list P spanning the same
65monomial ideal as P but minimal, i.e. no leading monomial
66of a polynomial in the sublist divides the leading monomial
67of another polynomial."
68 (do ((q plist)
69 (found t))
70 ((not found) q)
71 ;;1) Find p in Q such that lm(p) is in LM(Q\{p})
72 ;;2) Set Q <- Q\{p}
73 (setf found nil)
74 ;; NOTE: Below we rely on the fact that NIL is not of type POLY
75 (let ((x (find-if
76 #'(lambda (y)
77 (find-if #'(lambda (p)
78 (monom-divides-p
79 (poly-lm p)
80 (poly-lm y)))
81 (remove y q)))
82 q)))
83 (when x
84 (setf found t
85 q (delete x q))))))
86
Note: See TracBrowser for help on using the repository browser.