Changeset fe919c in git


Ignore:
Timestamp:
Mar 24, 2009, 10:31:49 PM (15 years ago)
Author:
Martin Monerjan
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
76afcdc23066a190fc8c0d2d82b16b5fd08c0215
Parents:
aba53ce3c77ba50e34a7922b440ad0d9b503f81d
Message:
started doxygenization


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

Legend:

Unmodified
Added
Removed
  • kernel/gfan.cc

    raba53c rfe919c  
    22Compute the Groebner fan of an ideal
    33$Author: monerjan $
    4 $Date: 2009-03-24 17:37:40 $
    5 $Header: /exports/cvsroot-2/cvsroot/kernel/gfan.cc,v 1.19 2009-03-24 17:37:40 monerjan Exp $
    6 $Id: gfan.cc,v 1.19 2009-03-24 17:37:40 monerjan Exp $
     4$Date: 2009-03-24 21:31:49 $
     5$Header: /exports/cvsroot-2/cvsroot/kernel/gfan.cc,v 1.20 2009-03-24 21:31:49 monerjan Exp $
     6$Id: gfan.cc,v 1.20 2009-03-24 21:31:49 monerjan Exp $
    77*/
    88
     
    3939#define gfan_DEBUG
    4040#endif
    41 
     41/**
     42*\brief Class facet
     43*       Implements the facet structure
     44*
     45*/
    4246class facet
    4347{
    4448        private:
    45                 intvec fNormal;         //inner normal, describing the facet uniquely
     49                /** inner normal, describing the facet uniquely  */
     50                intvec fNormal;         
    4651        public:
    47                 facet()                 //default constructor. Do I need a constructor of type facet(intvec) ?
     52                /** The default constructor. Do I need a constructor of type facet(intvec)? */
     53                facet()                 
    4854                {
    4955                        //fNormal = FN;
    50                         this->next=NULL;        //By default each facet is last
     56                        // Pointer to next facet.  */
     57                        /* Defaults to NULL. This way there is no need to check explicitly */
     58                        this->next=NULL;
    5159                }
    5260               
    53                 ~facet(){;}             //destructor
     61                /** The default destructor */
     62                ~facet(){;}
     63               
    5464                void setFacetNormal(intvec iv){
    5565                        fNormal = iv;
     
    6272};
    6373
     74/**
     75*\brief Class gcone
     76*       Implements the cone structure
     77*/
    6478/*class gcone
    6579finally this should become s.th. like gconelib.{h,cc} to provide an API
     
    98112}
    99113
     114/**
     115*\brief Compute the representation of a cone
     116*
     117*       Detailed description goes here
     118*
     119*\param An ideal
     120*
     121*\return A pointer to a facet
     122*/
    100123/****** getConeNormals computes the inequalities ***/
    101124/*INPUT_TYPE: ideal                             */
Note: See TracChangeset for help on using the changeset viewer.