Changeset e89ff5 in git for Singular/LIB/schreyer.lib


Ignore:
Timestamp:
May 11, 2012, 5:39:56 PM (12 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
5428647f3ac13d90ef45d257602f128804d6920a
Parents:
ed31a6cf71be2add371af4493e8c396c256ca950
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-05-11 17:39:56+02:00
git-committer:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-05-15 15:49:50+02:00
Message:
moved proc Tail to the dyn. module

add: Tail command within syzextra (for poly/vector/ideal/module)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/schreyer.lib

    red31a6 re89ff5  
    447447LIB "general.lib"; // for sort
    448448
    449 // TODO: in C++!
    450 static proc Tail(def M)
     449/* static proc Tail(def M) // DONE: in C++ (dyn. module: syzextra)!
    451450{
    452451  int i = ncols(M); def m;
     
    454453  {
    455454    m = M[i];
    456 
    457     m = m - lead(m); // m = tail(m)
    458    
    459     M[i] = m;
    460    
     455    m = m - lead(m); // m = tail(m)   
     456    M[i] = m;   
    461457    i--;
    462458  }
    463459  return (M);
    464 }
     460}*/
     461
    465462
    466463/* static */ proc SSinit(def M)
     
    14261423//      exportto(Schreyer, Syzextra::p_Content);
    14271424
     1425      exportto(Schreyer, Syzextra::Tail);
    14281426    }
    14291427    else
     
    14581456//      exportto(Schreyer, Syzextra_g::p_Content);
    14591457
     1458      exportto(Schreyer, Syzextra_g::Tail);
    14601459     
    14611460    }
Note: See TracChangeset for help on using the changeset viewer.