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 1805


Ignore:
Timestamp:
2015-06-15T12:42:32-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/mx-grobner.lisp

    r1804 r1805  
    399399
    400400;;Simple operators
    401 (define-binop $poly_add poly-add
     401(define-binop ($poly_add poly-add)
    402402  "Adds two polynomials P and Q")
    403403
    404 (define-binop $poly_subtract poly-sub
     404(define-binop ($poly_subtract poly-sub)
    405405  "Subtracts a polynomial Q from P.")
    406406
    407 (define-binop $poly_multiply poly-mul
     407(define-binop ($poly_multiply poly-mul)
    408408  "Returns the product of polynomials P and Q.")
    409409
    410 (define-binop $poly_s_polynomial spoly
     410(define-binop ($poly_s_polynomial spoly)
    411411  "Returns the syzygy polynomial (S-polynomial) of two polynomials P and Q.")
    412412
    413 (define-unop $poly_primitive_part poly-primitive-part
     413(define-unop ($poly_primitive_part poly-primitive-part)
    414414  "Returns the polynomial P divided by GCD of its coefficients.")
    415415
    416 (define-unop $poly_normalize poly-normalize
     416(define-unop ($poly_normalize poly-normalize)
    417417  "Returns the polynomial P divided by the leading coefficient.")
    418418
Note: See TracChangeset for help on using the changeset viewer.