Changeset 4f3177 in git for Singular/ipshell.cc


Ignore:
Timestamp:
May 5, 2005, 12:42:00 PM (18 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
Children:
54e28fc2679933ca28cd8feded2139df758fa3d8
Parents:
0b8c8d54328b4dab061ef0b1fd53fda79ac62739
Message:
*hannes: frwalk


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

Legend:

Unmodified
Added
Removed
  • Singular/ipshell.cc

    r0b8c8d r4f3177  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: ipshell.cc,v 1.107 2005-04-30 15:31:34 Singular Exp $ */
     4/* $Id: ipshell.cc,v 1.108 2005-05-05 10:41:59 Singular Exp $ */
    55/*
    66* ABSTRACT:
     
    40454045      n--;
    40464046    }
    4047     else if ((*iv)[1]!=ringorder_a) o++;
     4047    else if (((*iv)[1]!=ringorder_a)
     4048    && ((*iv)[1]!=ringorder_a64)) o++;
    40484049    n++;
    40494050    sl=sl->next;
     
    41374138            }
    41384139            break;
     4140          case ringorder_a64:
     4141          {
     4142            R->block0[n] = last+1;
     4143            R->block1[n] = min(last+iv->length()-2 , R->N);
     4144            R->wvhdl[n] = (int*)omAlloc((iv->length()-1)*sizeof(int64));
     4145            int64 *w=(int64 *)R->wvhdl[n];
     4146            for (i=2; i<iv->length(); i++)
     4147            {
     4148              w[i-2]=(*iv)[i];
     4149              if ((*iv)[i]<0) typ=-1;
     4150            }
     4151            break;
     4152          }
    41394153          case ringorder_M:
    41404154          {
     
    45514565  return NULL;
    45524566}
    4553 
Note: See TracChangeset for help on using the changeset viewer.