Changeset 4e803e in git for kernel/lpolynomial.h


Ignore:
Timestamp:
Nov 27, 2008, 6:19:22 PM (15 years ago)
Author:
Christian Eder
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
8c66fb0e0dc173c2eb5aff1e988308a8527bc045
Parents:
244ed5b722de4df004fddd3ed09ac68c69199316
Message:
updated header inclusions due to lplist, new get()


git-svn-id: file:///usr/local/Singular/svn/trunk@11210 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/lpolynomial.h

    r244ed5 r4e803e  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: lpolynomial.h,v 1.1 2008-11-22 20:47:27 ederc Exp $ */
     4/* $Id: lpolynomial.h,v 1.2 2008-11-27 17:19:22 ederc Exp $ */
    55/*
    6 * ABSTRACT: f5gb interface
     6* ABSTRACT: labeled polynomial interface
    77*/
    88#ifndef LPOLYNOMIAL_HEADER
     
    1313
    1414// class of a labeled polynomial
    15 class lpoly
     15class LPoly
    1616{
    1717        private:
     
    2020                poly    polynomial; //standard polynomial data
    2121                bool    del; //for deletion in TopReduction Subalgorithm
    22                 lpoly   *next; //pointer on the next labeled polynomial in the list
     22                LPoly   *next; //pointer on the next labeled polynomial in the list
    2323        public:
    2424                void    setPoly(poly p);
     
    3030                void    setDel(bool b);
    3131                bool    getDel();
    32                 void    setNext(lpoly *l);
    33                 lpoly   *getNext();
     32                void    setNext(LPoly *l);
     33                LPoly   *getNext();
     34                int     compare(const LPoly& lp);
     35                void    get();
    3436};
    3537
     
    3840struct critpair
    3941{
    40         lpoly       *cp1;   // first  component
    41         lpoly       *cp2;   // second component
     42        LPoly       *cp1;   // first  component
     43        LPoly       *cp2;   // second component
    4244        critpair    *next;  // next critical pair
    4345};
Note: See TracChangeset for help on using the changeset viewer.