Changeset df744f in git


Ignore:
Timestamp:
Jun 8, 2006, 10:12:51 AM (18 years ago)
Author:
Michael Brickenstein <bricken@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
a48e1999411528d3925391351d47f42ca54765b4
Parents:
9cf06bf5bb055050a3eb4ad285a06b788c79823c
Message:
+ more consequent usage of wlen_type


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

Legend:

Unmodified
Added
Removed
  • kernel/tgb.cc

    r9cf06bf rdf744f  
    55*  Computer Algebra System SINGULAR     *
    66****************************************/
    7 /* $Id: tgb.cc,v 1.95 2006-06-08 08:01:51 bricken Exp $ */
     7/* $Id: tgb.cc,v 1.96 2006-06-08 08:12:51 bricken Exp $ */
    88/*
    99* ABSTRACT: slimgb and F4 implementation
     
    320320}
    321321#endif
    322 static int do_pELength(poly p, slimgb_alg* c, int dlm=-1){
     322static wlen_type do_pELength(poly p, slimgb_alg* c, int dlm=-1){
    323323  if(p==NULL) return 0;
    324   int s=0;
     324  wlen_type s=0;
    325325  poly pi=p;
    326326  if(dlm<0){
     
    343343wlen_type pELength(poly p, ring r){
    344344  if(p==NULL) return 0;
    345   int s=0;
     345  wlen_type s=0;
    346346  poly pi=p;
    347347  int dlm;
     
    362362}
    363363
    364 int kEBucketLength(kBucket* b, poly lm,slimgb_alg* ca)
     364wlen_type kEBucketLength(kBucket* b, poly lm,slimgb_alg* ca)
    365365{
    366   int s=0;
     366  wlen_type s=0;
    367367  if(lm==NULL){
    368368    lm=kBucketGetLm(b);
Note: See TracChangeset for help on using the changeset viewer.