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 1810


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

* empty log message *

File:
1 edited

Legend:

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

    r1809 r1810  
    405405
    406406;;Simple operators
    407 (define-binop ($poly_add poly-add)
     407(define-binop ($poly_add poly-add (p q))
    408408  "Adds two polynomials P and Q")
    409409
    410 (define-binop ($poly_subtract poly-sub)
     410(define-binop ($poly_subtract poly-sub (p q))
    411411  "Subtracts a polynomial Q from P.")
    412412
    413 (define-binop ($poly_multiply poly-mul)
     413(define-binop ($poly_multiply poly-mul (p q))
    414414  "Returns the product of polynomials P and Q.")
    415415
    416 (define-binop ($poly_s_polynomial spoly)
     416(define-binop ($poly_s_polynomial spoly (p q))
    417417  "Returns the syzygy polynomial (S-polynomial) of two polynomials P and Q.")
    418418
    419 (define-unop ($poly_primitive_part poly-primitive-part :env :ring)
     419(define-unop ($poly_primitive_part poly-primitive-part (p) :env :ring)
    420420  "Returns the polynomial P divided by GCD of its coefficients.")
    421421
    422 (define-unop ($poly_normalize poly-normalize :env :ring)
     422(define-unop ($poly_normalize poly-normalize (p) :env :ring)
    423423  "Returns the polynomial P divided by the leading coefficient.")
    424424
Note: See TracChangeset for help on using the changeset viewer.