Changeset 18765e in git
- Timestamp:
- Mar 2, 2009, 3:44:49 PM (14 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '0604212ebb110535022efecad887940825b97c3f')
- Children:
- 65a4ba06d1f40243c71a75ec4979640b8db0684e
- Parents:
- 338842d01fe627d4e6675ec8df5900eef6af97af
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/gfan.cc
r338842d r18765e 2 2 Compute the Groebner fan of an ideal 3 3 Author: $Author: monerjan $ 4 Date: $Date: 2009-0 2-25 14:30:25$5 Header: $Header: /exports/cvsroot-2/cvsroot/kernel/gfan.cc,v 1.1 6 2009-02-25 14:30:25monerjan Exp $6 Id: $Id: gfan.cc,v 1.1 6 2009-02-25 14:30:25monerjan Exp $4 Date: $Date: 2009-03-02 14:44:49 $ 5 Header: $Header: /exports/cvsroot-2/cvsroot/kernel/gfan.cc,v 1.17 2009-03-02 14:44:49 monerjan Exp $ 6 Id: $Id: gfan.cc,v 1.17 2009-03-02 14:44:49 monerjan Exp $ 7 7 */ 8 8 … … 26 26 { 27 27 private: 28 intvec f normal; //inner normal, describing the facet uniquely28 intvec fNormal; //inner normal, describing the facet uniquely 29 29 public: 30 30 facet(); //constructor 31 bool isflippable; //flippable facet? 31 bool isFlippable; //flippable facet? Want to have cone->isflippable.facet[i] 32 bool isIncoming; //Is the facet incoming or outgoing? 32 33 }; 33 34 … … 37 38 class gcone 38 39 { 39 public: 40 gcone(int); //constructor with dimension 41 poly gc_marked_term; //marked terms of the cone's Gröbner basis 42 ideal gc_basis; //GB of the cone 43 gcone *next; //Pointer to *previous* cone in search tree 40 private: 41 int numFacets; //#of facets of the cone 42 43 public: 44 gcone(int); //constructor with dimension 45 poly gcMarkedTerm; //marked terms of the cone's Gröbner basis 46 ideal gcBasis; //GB of the cone 47 gcone *next; //Pointer to *previous* cone in search tree 44 48 45 void flip(); //Compute "the other side" 49 void flip(); //Compute "the other side" 50 void remRedFacets(); //Remove redundant facets of the cone 51 46 52 47 53 };//class gcone
Note: See TracChangeset
for help on using the changeset viewer.