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.

Changeset 97


Ignore:
Timestamp:
2015-06-05T11:58:31-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/grobner.lisp

    r96 r97  
    3030;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
    3131
    32 (defmvar $poly_monomial_order '$lex
     32(defvar $poly_monomial_order '$lex
    3333  "This switch controls which monomial order is used in polynomial
    3434and Grobner basis calculations. If not set, LEX will be used")
    3535
    36 (defmvar $poly_coefficient_ring '$expression_ring
     36(defvar $poly_coefficient_ring '$expression_ring
    3737  "This switch indicates the coefficient ring of the polynomials
    3838that will be used in grobner calculations. If not set, Maxima's
     
    4040to RING_OF_INTEGERS if desired.")
    4141
    42 (defmvar $poly_primary_elimination_order nil
     42(defvar $poly_primary_elimination_order nil
    4343  "Name of the default order for eliminated variables in elimination-based functions.
    4444If not set, LEX will be used.")
    4545
    46 (defmvar $poly_secondary_elimination_order nil
     46(defvar $poly_secondary_elimination_order nil
    4747  "Name of the default order for kept variables in elimination-based functions.
    4848If not set, LEX will be used.")
    4949
    50 (defmvar $poly_elimination_order nil
     50(defvar $poly_elimination_order nil
    5151  "Name of the default elimination order used in elimination calculations.
    5252If set, it overrides the settings in variables POLY_PRIMARY_ELIMINATION_ORDER
     
    5454elimination order valid for the number of eliminated variables.")
    5555
    56 (defmvar $poly_return_term_list nil
     56(defvar $poly_return_term_list nil
    5757  "If set to T, all functions in this package will return each polynomial as a
    5858list of terms in the current monomial order rather than a Maxima general expression.")
    5959
    60 (defmvar $poly_grobner_debug nil
     60(defvar $poly_grobner_debug nil
    6161  "If set to TRUE, produce debugging and tracing output.")
    6262
    63 (defmvar $poly_grobner_algorithm '$buchberger
     63(defvar $poly_grobner_algorithm '$buchberger
    6464  "The name of the algorithm used to find grobner bases.")
    6565
    66 (defmvar $poly_top_reduction_only nil
     66(defvar $poly_top_reduction_only nil
    6767  "If not FALSE, use top reduction only whenever possible.
    6868Top reduction means that division algorithm stops after the first reduction.")
Note: See TracChangeset for help on using the changeset viewer.