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/criterion.lisp@ 4124

Last change on this file since 4124 was 4124, checked in by Marek Rychlik, 8 years ago

* empty log message *

File size: 3.5 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;; Pair selection criteria
25;;
26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
27
28(defpackage "CRITERION"
29 (:use :cl :monom :pair-queue :grobner-debug :polynomial)
30 (:export "CRITERION-1"
31 "CRITERION-2"
32 ))
33
34(in-package :criterion)
35
36(proclaim '(optimize (speed 3) (space 0) (safety 0) (debug 0)))
37
38(defun criterion-1 (pair)
39 "Returns T if the leading monomials of the two polynomials
40in G pointed to by the integers in PAIR have disjoint (relatively prime)
41monomials. This test is known as the first Buchberger criterion."
42 (declare (type critical-pair pair))
43 (let ((f (critical-pair-first pair))
44 (g (critical-pair-second pair)))
45 (when (rel-prime-p (leading-monomial f) (leading-monomial g))
46 (debug-cgb ":1")
47 (return-from criterion-1 t))))
48
49(defun criterion-2 (pair b-done partial-basis
50 &aux (f (critical-pair-first pair)) (g (critical-pair-second pair))
51 (place :before))
52 "Returns T if the leading monomial of some element P of
53PARTIAL-BASIS divides the LCM of the leading monomials of the two
54polynomials in the polynomial list PARTIAL-BASIS, and P paired with
55each of the polynomials pointed to by the the PAIR has already been
56treated, as indicated by the absence in the hash table B-done."
57 (declare (type critical-pair pair) (type hash-table b-done)
58 (type poly f g))
59 ;; In the code below we assume that pairs are ordered as follows:
60 ;; if PAIR is (I J) then I appears before J in the PARTIAL-BASIS.
61 ;; We traverse the list PARTIAL-BASIS and keep track of where we
62 ;; are, so that we can produce the pairs in the correct order
63 ;; when we check whether they have been processed, i.e they
64 ;; appear in the hash table B-done
65 (dolist (h partial-basis nil)
66 (cond
67 ((eq h f)
68 #+grobner-check(assert (eq place :before))
69 (setf place :in-the-middle))
70 ((eq h g)
71 #+grobner-check(assert (eq place :in-the-middle))
72 (setf place :after))
73 ((and (divides-lcm-p (leading-monomial h) (leading-monomial f) (leading-monomial g))
74 (gethash (case place
75 (:before (list h f))
76 ((:in-the-middle :after) (list f h)))
77 b-done)
78 (gethash (case place
79 ((:before :in-the-middle) (list h g))
80 (:after (list g h)))
81 b-done))
82 (debug-cgb ":2")
83 (return-from criterion-2 t)))))
84
Note: See TracBrowser for help on using the repository browser.