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/grobner-wrap.lisp@ 511

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

* empty log message *

File size: 2.3 KB
Line 
1;;; -*- Mode: Lisp; Package: Maxima; Syntax: Common-Lisp; Base: 10 -*-
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;; Selection of algorithm and pair heuristic
25;;
26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
27
28
29(defpackage "GROBNER-WRAP"
30 (:use :cl :buchberger :gebauer-moeller :gb-postprocessing)
31 (:export "GROBNER" "REDUCED-GROBNER"))
32
33(in-package :grobner-wrap)
34
35(defun find-grobner-function (algorithm)
36 "Return a function which calculates Grobner basis, based on its
37names. Names currently used are either Lisp symbols, Maxima symbols or
38keywords."
39 (ecase algorithm
40 ((buchberger :buchberger $buchberger) #'buchberger)
41 ((parallel-buchberger :parallel-buchberger $parallel_buchberger) #'parallel-buchberger)
42 ((gebauer-moeller :gebauer_moeller $gebauer_moeller) #'gebauer-moeller)))
43
44(defun grobner (ring f &optional (start 0) (top-reduction-only nil))
45 ;;(setf F (sort F #'< :key #'sugar))
46 (funcall
47 (find-grobner-function $poly_grobner_algorithm)
48 ring f start top-reduction-only))
49
50(defun reduced-grobner (ring f &optional (start 0) (top-reduction-only $poly_top_reduction_only))
51 (reduction ring (grobner ring f start top-reduction-only)))
Note: See TracBrowser for help on using the repository browser.