Changeset a9c298 in git for kernel/f5lists.h


Ignore:
Timestamp:
Nov 20, 2013, 4:54:25 PM (10 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
0de0509972719531e2a4b51ec9fd0e44a66fd2fd
Parents:
e4014563a82388c4b39dfa37db24cbe159b24a35
git-author:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2013-11-20 16:54:25+01:00
git-committer:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2013-11-20 16:54:42+01:00
Message:
format stuff
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/f5lists.h

    re40145 ra9c298  
    1313============================
    1414============================
    15 classes for lists used in F5 
     15classes for lists used in F5
    1616============================
    1717============================
     
    3535 */
    3636class PNode {
    37   private: 
     37  private:
    3838    poly   data;
    3939    PNode*  next;
     
    5656    bool check(poly p);
    5757    void print();
    58 }; 
    59    
     58};
     59
    6060/*
    6161=======================================
     
    102102        poly    getPoly();
    103103        poly    getTerm();
    104         int     getIndex(); 
     104        int     getIndex();
    105105        RuleOld*   getRuleOld();
    106106        bool    getDel();
     
    209209/*
    210210======================================================================================
    211 class TopRed(return values of subalgorithm TopRed in f5gb.cc), i.e. the first elements 
     211class TopRed(return values of subalgorithm TopRed in f5gb.cc), i.e. the first elements
    212212             of the lists LList* completed & LList* sPolyList
    213213======================================================================================
     
    238238                CNode(CPairOld* c);
    239239                CNode(CPairOld* c, CNode* n);
    240                 ~CNode(); 
    241         CNode*  insert(CPairOld* c); 
    242         CNode*  insertWithoutSort(CPairOld* cp); 
     240                ~CNode();
     241        CNode*  insert(CPairOld* c);
     242        CNode*  insertWithoutSort(CPairOld* cp);
    243243        CNode*  getMinDeg();
    244244        CPairOld*  getData();
     
    250250        poly    getLp1Term();
    251251        poly    getLp2Term();
    252         poly    getT1(); 
    253         poly*   getAdT1(); 
    254         poly    getT2(); 
    255         poly*   getAdT2(); 
     252        poly    getT1();
     253        poly*   getAdT1();
     254        poly    getT2();
     255        poly*   getAdT2();
    256256        int     getLp1Index();
    257257        int     getLp2Index();
     
    272272    public:
    273273                // for initialization of CListOlds, last element alwas has data=NULL and next=NULL
    274                 CListOld(); 
    275                 CListOld(CPairOld* c); 
    276                 ~CListOld(); 
     274                CListOld();
     275                CListOld(CPairOld* c);
     276                ~CListOld();
    277277        CNode*  getFirst();
    278278        void    insert(CPairOld* c);
Note: See TracChangeset for help on using the changeset viewer.