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/ngrobner-package.lisp@ 552

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

* empty log message *

File size: 3.3 KB
RevLine 
[198]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(defpackage "NGROBNER"
[525]23 (:use :cl :ring :monomial :order :term :polynomial :grobner-debug
24 :division :buchberger :gebauer-moeller :gb-postprocessing :ideal
[529]25 :utils :grobner-wrap)
[212]26 (:export
[534]27 ;;
28 ;; Global switches valid at maxima level
29 ;;
[540]30 "$LEX" "$GRLEX" "$GREVLEX" "$INVLEX" ;names of monomial orders
31 "$RING_OF_INTEGERS" ;name of ring of integers
[537]32 "$POLY_ELIMINATION_ORDER" "$POLY_MONOMIAL_ORDER"
[228]33 "$POLY_MONOMIAL_ORDER" "$POLY_PRIMARY_ELIMINATION_ORDER"
[537]34 "$POLY_PRIMARY_ELIMINATION_ORDER"
[534]35 "$POLY_SECONDARY_ELIMINATION_ORDER"
[537]36 "$POLY_RETURN_TERM_LIST"
[534]37 "$POLY_COEFFICIENT_RING"
[538]38 "$POLY_GROBNER_DEBUG" ;debugging switch
[534]39 ;;
40 ;; Global variables
41 ;;
42 "*EXPRESSION-RING*"
[538]43 "*ELIMINATION-ORDER*"
44 "*MONOMIAL-ORDER*"
45 "*PRIMARY-ELIMINATION-ORDER*"
46 "*SECONDARY-ELIMINATION-ORDER*"
[534]47 "*RATDISREP-FUN*"
48 ;;
[535]49 ;; Polynomial ring operations
[534]50 ;;
[539]51 "POLY-ADD" "POLY-SUB" "POLY-UMINUS"
52 "POLY-MUL" "POLY-EXPT"
53 "POLY-ZEROP" "POLY-LM" "POLY-LT"
54 "POLY-PSEUDO-DIVIDE"
55 "POLY-NORMALIZE" "POLY-NORMALIZE-LIST"
[534]56 ;;
57 ;; High-level Groebner Basis related functions
58 ;;
[539]59 "FIND-ORDER" "FIND-RING"
[534]60 "NORMAL-FORM"
61 "POLY-EXACT-DIVIDE"
62 "COLON-IDEAL" "ELIMINATION-IDEAL"
[535]63 "GROBNER"
64 "REDUCED-GROBNER"
[539]65 "MINIMIZATION" "REDUCTION"
66 "POLY-LCM"
[226]67 "GROBNER-EQUAL" "GROBNER-MEMBER" "GROBNER-SUBSETP"
68 "IDEAL-INTERSECTION" "IDEAL-POLYSATURATION"
69 "IDEAL-POLYSATURATION-1" "IDEAL-SATURATION" "IDEAL-SATURATION-1"
[534]70 ;;
71 ;; Low-level functions
72 ;;
73 "COERCE-COEFF" "MAKE-POLY-FROM-TERMLIST" "MAKE-POLY-ZERO" "MAKE-RING" "MAKE-TERM"
74 "MAKE-VARIABLE"
[246]75 "MONOM-EXPONENTS" "POLY-CONTENT" "POLY-DEPENDS-P"
[535]76 "POLY-PRIMITIVE-PART"
[534]77 "POLYSATURATION-EXTENSION" "POLY-TERMLIST"
[535]78 "RING-UNIT" "SATURATION-EXTENSION"
[534]79 "SPOLY" "$POLY_ELIMINATION_ORDER"
[536]80 "TERM-COEFF" "TERM-MONOM" "MAKELIST-1" "MAKELIST"
[348]81 "MAKE-MONOM" "LEX>" "GRLEX>" "GREVLEX>" "REVLEX>" "INVLEX>"
[350]82 "ELIMINATION-ORDER" "ELIMINATION-ORDER-1"
[351]83 "*PRIMARY-ELIMINATION-ORDER*"
84 "*SECONDARY-ELIMINATION-ORDER*"
[533]85 "*ELIMINATION-ORDER*"
[225]86))
[324]87
88(in-package :ngrobner)
89
90
Note: See TracBrowser for help on using the repository browser.