Changeset 90753b in git


Ignore:
Timestamp:
Jan 25, 2017, 9:38:05 AM (6 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
Children:
cd6f8d22526e61cffd63354b5f245ce64bcd288b
Parents:
aacc4afb6628a4bd0bdffdd5f1f5db0d0f154a28
Message:
fix: nesting too deep by G. Pfister in sagbiNF
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/classify_aeq.lib

    raacc4a r90753b  
    13221322//computes the Sagbi normal form
    13231323   list L=1;
     1324   poly re;
    13241325   map psi;
    13251326   f=jet(f,b);
    13261327   if(f==0){return(f);}
    1327    while((f!=0) && (L[1]!=0))
     1328   while(f!=0)
    13281329   {
    13291330     L= algebra_containment(lead(f),lead(I),1);
     
    13351336        kill S;
    13361337     }
    1337    }
    1338    return (lead(f)+sagbiNF(f-lead(f),I,b));
     1338     else
     1339     {
     1340        re=re+lead(f);
     1341        f=f-lead(f);
     1342     }
     1343   }
     1344   return (re);
    13391345}
    13401346
Note: See TracChangeset for help on using the changeset viewer.