Changeset 8bdaab in git for kernel/gfan.cc
- Timestamp:
- Feb 25, 2009, 3:30:25 PM (15 years ago)
- Branches:
- (u'spielwiese', 'a7324b6e0b44a1a8ed3fa4d9ca3e2ff210ddd52c')
- Children:
- d5f35098e5ff96b29b884a0163b8da1d417b7de6
- Parents:
- 7012d0f08e30c9406b7eb002fa6bd6b55e8cd1cd
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/gfan.cc
r7012d0 r8bdaab 2 2 Compute the Groebner fan of an ideal 3 3 Author: $Author: monerjan $ 4 Date: $Date: 2009-02-2 3 15:12:49$5 Header: $Header: /exports/cvsroot-2/cvsroot/kernel/gfan.cc,v 1.1 5 2009-02-23 15:12:49monerjan Exp $6 Id: $Id: gfan.cc,v 1.1 5 2009-02-23 15:12:49monerjan Exp $4 Date: $Date: 2009-02-25 14:30:25 $ 5 Header: $Header: /exports/cvsroot-2/cvsroot/kernel/gfan.cc,v 1.16 2009-02-25 14:30:25 monerjan Exp $ 6 Id: $Id: gfan.cc,v 1.16 2009-02-25 14:30:25 monerjan Exp $ 7 7 */ 8 8 … … 23 23 #endif 24 24 25 class facet 26 { 27 private: 28 intvec fnormal; //inner normal, describing the facet uniquely 29 public: 30 facet(); //constructor 31 bool isflippable; //flippable facet? 32 }; 33 34 /*class gcone 35 finally this should become s.th. like gconelib.{h,cc} to provide an API 36 */ 37 class gcone 38 { 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 44 45 void flip(); //Compute "the other side" 46 47 };//class gcone 48 25 49 ideal getGB(ideal inputIdeal) 26 50 { 27 51 #ifdef gfan_DEBUG 28 printf(" Now in getGB\n");52 printf("Computing a groebner basis...\n"); 29 53 #endif 30 54
Note: See TracChangeset
for help on using the changeset viewer.