Changeset 9d48243 in git


Ignore:
Timestamp:
May 20, 1998, 1:48:00 AM (25 years ago)
Author:
Olaf Bachmann <obachman@…>
Branches:
(u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
Children:
abe1c73c353d42e8bb8ac5b5ee7a7009a4be5691
Parents:
8e1a915be7cd46687b971d26f73af78f0c2921c9
Message:
* fix 2 of leadExp bug


git-svn-id: file:///usr/local/Singular/svn/trunk@1907 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
Singular
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • Singular/intvec.h

    r8e1a91 r9d48243  
    44*  Computer Algebra System SINGULAR     *
    55****************************************/
    6 /* $Id: intvec.h,v 1.4 1997-04-30 15:25:29 Singular Exp $ */
     6/* $Id: intvec.h,v 1.5 1998-05-19 23:47:57 obachman Exp $ */
    77/*
    88* ABSTRACT: class intvec: lists/vectors of integers
     
    3535       if((i<0)||(i>=row*col))
    3636       {
    37           Print("wrong index:%d\n",i);
     37          Werror("wrong intvec index:%d\n",i);
    3838       }
    3939       return v[i];}
  • Singular/iparith.cc

    r8e1a91 r9d48243  
    25152515  if (p!=NULL)
    25162516  {
    2517     for(int i=pVariables-1;i;i--)
    2518     {
    2519       (*iv)[i]=pGetExp(p,i);
     2517    for(int i = pVariables;i;i--)
     2518    {
     2519      (*iv)[i-1]=pGetExp(p,i);
    25202520    }
    25212521  }
  • Singular/polys.cc

    r8e1a91 r9d48243  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: polys.cc,v 1.26 1998-05-06 12:44:08 pohl Exp $ */
     4/* $Id: polys.cc,v 1.27 1998-05-19 23:48:00 obachman Exp $ */
    55
    66/*
     
    352352  return 0;
    353353}
    354 
    355354
    356355/*---------------------------------------------------*/
Note: See TracChangeset for help on using the changeset viewer.