Changeset 6b29f27 in git
- Timestamp:
- Apr 5, 2019, 2:00:25 PM (4 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- bc2ffb3ac3495d903c975099bc679854cfae5a29
- Parents:
- 341943a4fa8f80ec9516fd6e7f02d9a5aee90f47
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/combinatorics/hilb.cc
r341943 r6b29f27 1396 1396 } 1397 1397 1398 static void hPrintHilb(intvec *hseries )1398 static void hPrintHilb(intvec *hseries,intvec *modul_weight) 1399 1399 { 1400 1400 int i, j, l, k; … … 1403 1403 l = hseries->length()-1; 1404 1404 k = (*hseries)[l]; 1405 if ((modul_weight!=NULL)&&(modul_weight->compare(0)!=0)) 1406 { 1407 char *s=modul_weight->ivString(1,0,1); 1408 Print("module weights:%s\n",s); 1409 omFree(s); 1410 } 1405 1411 for (i = 0; i < l; i++) 1406 1412 { … … 1423 1429 if (errorreported) return; 1424 1430 1425 hPrintHilb(hseries1 );1431 hPrintHilb(hseries1,modulweight); 1426 1432 1427 1433 const int l = hseries1->length()-1; … … 1433 1439 1434 1440 PrintLn(); 1435 hPrintHilb(hseries2 );1441 hPrintHilb(hseries2,modulweight); 1436 1442 if ((l == 1) &&(mu == 0)) 1437 1443 scPrintDegree(rVar(currRing)+1, 0);
Note: See TracChangeset
for help on using the changeset viewer.