Changeset 818958f in git


Ignore:
Timestamp:
Feb 15, 2007, 12:13:40 PM (16 years ago)
Author:
Michael Brickenstein <bricken@…>
Branches:
(u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
Children:
e4ad0e8e6de45042f972bec1aa6320c24864ca99
Parents:
f238523916268f4defd17e161a8279773f4fcf31
Message:
*bricken: tuning back


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

Legend:

Unmodified
Added
Removed
  • kernel/tgb.cc

    rf23852 r818958f  
    55*  Computer Algebra System SINGULAR     *
    66****************************************/
    7 /* $Id: tgb.cc,v 1.135 2007-02-15 10:57:42 bricken Exp $ */
     7/* $Id: tgb.cc,v 1.136 2007-02-15 11:13:40 bricken Exp $ */
    88/*
    99* ABSTRACT: slimgb and F4 implementation
     
    3333#define SR_HDL(A) ((long)(A))
    3434static const int bundle_size=1000;
     35static const int bundle_size_noro=1000;
    3536static const int delay_factor=3;
    3637int QlogSize(number n);
     
    29592960  c->average_length=c->average_length/c->n;
    29602961  i=0;
    2961   poly* p=(poly*) omalloc((bundle_size+1)*sizeof(poly));//nullterminated
     2962  int max_pairs=bundle_size;
     2963  if (use_noro)
     2964    max_pairs=bundle_size_noro;
     2965  poly* p=(poly*) omalloc((max_pairs+1)*sizeof(poly));//nullterminated
    29622966
    29632967  int curr_deg=-1;
    2964   while(i<bundle_size){
     2968  while(i<max_pairs){
    29652969    sorted_pair_node* s=top_pair(c);//here is actually chain criterium done
    29662970
Note: See TracChangeset for help on using the changeset viewer.