Changeset 334c21f in git
- Timestamp:
- Apr 14, 2009, 2:08:36 PM (14 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 797d4f19229a77bdf9613bc5ed8a5f46eaebabe4
- Parents:
- 3360fb21d69c352925dd6bc1692b4f0bd0c595c1
- Location:
- Singular/LIB
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/LIB/freegb.lib
r3360fb r334c21f 1 1 ////////////////////////////////////////////////////////////////////////////// 2 version="$Id: freegb.lib,v 1.2 2 2009-04-14 12:00:14Singular Exp $";2 version="$Id: freegb.lib,v 1.23 2009-04-14 12:08:36 Singular Exp $"; 3 3 category="Noncommutative"; 4 4 info=" … … 36 36 37 37 LIB "qhmoduli.lib"; // for Max 38 39 proc testfreegblib()40 {41 example makeLetterplaceRing;42 example freeGBasis;43 example setLetterplaceAttributes;44 "AUXILIARY PROCEDURES: ";45 example shiftPoly;46 example lpMult;47 example lp2lstr;48 example lst2str;49 example mod2str;50 example vct2str;51 example lieBracket;52 example serreRelations;53 example isVar;54 }55 56 38 57 39 proc setLetterplaceAttributes(def R, int uptodeg, int lV) … … 2545 2527 return(0); 2546 2528 } 2547 2548 // alias libs for compatibility with older examples2549 proc freegbRing(int d)2550 {2551 return(makeLetterplaceRing(d));2552 }2553 2554 proc freegbasis( list L, int n)2555 {2556 return(freeGBasis(L, n));2557 } -
Singular/LIB/qhmoduli.lib
r3360fb r334c21f 1 1 /////////////////////////////////////////////////////////////////////////////// 2 version="$Id: qhmoduli.lib,v 1.1 6 2009-04-14 11:51:43 seelischExp $";2 version="$Id: qhmoduli.lib,v 1.17 2009-04-14 12:08:36 Singular Exp $"; 3 3 category="Singularities"; 4 4 info=" … … 1165 1165 mma = Max(wt); 1166 1166 1167 <<<<<<< qhmoduli.lib1168 for(i = mi; i <= ma; i = i + 1) {1169 if(containedQ(wt, i)) { // find variables of weight i1170 =======1171 1167 for(ii = mmi; ii <= mma; ii++) 1172 1168 { 1173 1169 if(containedQ(wt, ii)) 1174 1170 { // find variables of weight ii 1175 >>>>>>> 1.151176 1171 k = 0; 1177 1172 index = 0; … … 1369 1364 { 1370 1365 newP = temp + decP[j]; // new partition 1371 <<<<<<< qhmoduli.lib1372 if(!containedQ(parts, newP, 1)) {1373 =======1374 1366 if(!containedQ(parts, newP, 1)) 1375 1367 { 1376 >>>>>>> 1.151377 1368 k = k + 1; 1378 1369 parts[k] = newP; … … 1451 1442 c = 1; 1452 1443 1453 <<<<<<< qhmoduli.lib1454 for(int i = 1; i <= size(l1); i = i + 1) {1455 b = containedQ(l2, l1[i]);1456 if(b == 1) {1457 =======1458 1444 for(int i = 1; i <= size(l1); i++) 1459 1445 { … … 1461 1447 if(b == 1) 1462 1448 { 1463 >>>>>>> 1.151464 1449 l[c] = l1[i]; 1465 1450 c++;
Note: See TracChangeset
for help on using the changeset viewer.