Changeset fe919c in git
- Timestamp:
- Mar 24, 2009, 10:31:49 PM (14 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 76afcdc23066a190fc8c0d2d82b16b5fd08c0215
- Parents:
- aba53ce3c77ba50e34a7922b440ad0d9b503f81d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/gfan.cc
raba53c rfe919c 2 2 Compute the Groebner fan of an ideal 3 3 $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:40monerjan Exp $6 $Id: gfan.cc,v 1. 19 2009-03-24 17:37:40monerjan 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 $ 7 7 */ 8 8 … … 39 39 #define gfan_DEBUG 40 40 #endif 41 41 /** 42 *\brief Class facet 43 * Implements the facet structure 44 * 45 */ 42 46 class facet 43 47 { 44 48 private: 45 intvec fNormal; //inner normal, describing the facet uniquely 49 /** inner normal, describing the facet uniquely */ 50 intvec fNormal; 46 51 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() 48 54 { 49 55 //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; 51 59 } 52 60 53 ~facet(){;} //destructor 61 /** The default destructor */ 62 ~facet(){;} 63 54 64 void setFacetNormal(intvec iv){ 55 65 fNormal = iv; … … 62 72 }; 63 73 74 /** 75 *\brief Class gcone 76 * Implements the cone structure 77 */ 64 78 /*class gcone 65 79 finally this should become s.th. like gconelib.{h,cc} to provide an API … … 98 112 } 99 113 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 */ 100 123 /****** getConeNormals computes the inequalities ***/ 101 124 /*INPUT_TYPE: ideal */
Note: See TracChangeset
for help on using the changeset viewer.