Changeset b96d71 in git
- Timestamp:
- Sep 20, 2006, 6:47:15 PM (17 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- 6676a2b8e0c7ca9c1c8dc46f3bfc1c4f9c26c441
- Parents:
- fe25f03c99072f6b5d83cbb4102c0a185cfd14d3
- Location:
- kernel
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/hdegree.cc
rfe25f03 rb96d71 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: hdegree.cc,v 1. 6 2005-10-31 17:35:36Singular Exp $ */4 /* $Id: hdegree.cc,v 1.7 2006-09-20 16:47:14 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT - dimension, multiplicity, HC, kbase … … 700 700 return; 701 701 } 702 hWeight();702 //hWeight(); 703 703 hwork = (scfmon)omAlloc(hNexist * sizeof(scmon)); 704 704 hvar = (varset)omAlloc((pVariables + 1) * sizeof(int)); -
kernel/hilb.cc
rfe25f03 rb96d71 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: hilb.cc,v 1. 2 2005-04-26 08:58:13Singular Exp $ */4 /* $Id: hilb.cc,v 1.3 2006-09-20 16:47:14 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT - Hilbert series … … 223 223 } 224 224 225 #if 0 225 226 if (wdegree == NULL) 226 227 hWeight(); 227 228 else 228 229 hWDegree(wdegree); 230 #else 231 if (wdegree != NULL) hWDegree(wdegree); 232 #endif 229 233 230 234 p0 = (int *)omAllocBin(int_bin); -
kernel/hutil.cc
rfe25f03 rb96d71 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: hutil.cc,v 1. 8 2005-06-09 08:30:02Singular Exp $ */4 /* $Id: hutil.cc,v 1.9 2006-09-20 16:47:15 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT: Utilities for staircase operations … … 109 109 } 110 110 111 #if 0 111 112 void hWeight() 112 113 { … … 133 134 } 134 135 } 136 #endif 135 137 136 138 void hDelete(scfmon ev, int ev_length) -
kernel/hutil.h
rfe25f03 rb96d71 34 34 35 35 scfmon hInit(ideal S, ideal Q, int * Nexist, ring tailRing = currRing); 36 void hWeight();37 36 void hDelete(scfmon ev, int ev_length); 38 37 void hComp(scfmon exist, int Nexist, int ak, scfmon stc, int * Nstc);
Note: See TracChangeset
for help on using the changeset viewer.