Changeset 9ea76a in git for Singular/LIB/qhmoduli.lib


Ignore:
Timestamp:
Apr 14, 2009, 1:51:43 PM (15 years ago)
Author:
Frank Seelisch <seelisch@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
2c3a5db391a25c28449b80c5f27e1dd77ed2c30f
Parents:
635e4e877aa071bdb73967ac97deb8370b135487
Message:
bug fix: ContainedQ --> containedQ prior to release 3-1-0


git-svn-id: file:///usr/local/Singular/svn/trunk@11693 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/qhmoduli.lib

    r635e4e r9ea76a  
    11///////////////////////////////////////////////////////////////////////////////
    2 version="$Id: qhmoduli.lib,v 1.15 2009-04-14 08:36:17 Singular Exp $";
     2version="$Id: qhmoduli.lib,v 1.16 2009-04-14 11:51:43 seelisch Exp $";
    33category="Singularities";
    44info="
     
    11651165  mma = Max(wt);
    11661166
     1167<<<<<<< qhmoduli.lib
     1168  for(i = mi; i <= ma; i = i + 1) {
     1169    if(containedQ(wt, i)) {    // find variables of weight i
     1170=======
    11671171  for(ii = mmi; ii <= mma; ii++)
    11681172  {
    1169     if(ContainedQ(wt, ii))
     1173    if(containedQ(wt, ii))
    11701174    {    // find variables of weight ii
     1175>>>>>>> 1.15
    11711176      k = 0;
    11721177      index = 0;
     
    12091214    }
    12101215  }
     1216  "type of i:", typeof(i);
    12111217  combList[1] = linearSubs;
    12121218  combList[2] = nonlinearSubs;
     
    13631369      {
    13641370        newP = temp + decP[j];        // new partition
    1365         if(!ContainedQ(parts, newP, 1))
     1371<<<<<<< qhmoduli.lib
     1372        if(!containedQ(parts, newP, 1)) {
     1373=======
     1374        if(!containedQ(parts, newP, 1))
    13661375        {
     1376>>>>>>> 1.15
    13671377          k = k + 1;
    13681378          parts[k] = newP;
     
    14411451  c = 1;
    14421452
     1453<<<<<<< qhmoduli.lib
     1454  for(int i = 1; i <= size(l1); i = i + 1) {
     1455    b = containedQ(l2, l1[i]);
     1456    if(b == 1) {
     1457=======
    14431458  for(int i = 1; i <= size(l1); i++)
    14441459  {
    1445     b = ContainedQ(l2, l1[i]);
     1460    b = containedQ(l2, l1[i]);
    14461461    if(b == 1)
    14471462    {
     1463>>>>>>> 1.15
    14481464      l[c] = l1[i];
    14491465      c++;
Note: See TracChangeset for help on using the changeset viewer.