Changeset 9d48243 in git
- Timestamp:
- May 20, 1998, 1:48:00 AM (25 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- abe1c73c353d42e8bb8ac5b5ee7a7009a4be5691
- Parents:
- 8e1a915be7cd46687b971d26f73af78f0c2921c9
- Location:
- Singular
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/intvec.h
r8e1a91 r9d48243 4 4 * Computer Algebra System SINGULAR * 5 5 ****************************************/ 6 /* $Id: intvec.h,v 1. 4 1997-04-30 15:25:29 SingularExp $ */6 /* $Id: intvec.h,v 1.5 1998-05-19 23:47:57 obachman Exp $ */ 7 7 /* 8 8 * ABSTRACT: class intvec: lists/vectors of integers … … 35 35 if((i<0)||(i>=row*col)) 36 36 { 37 Print("wrongindex:%d\n",i);37 Werror("wrong intvec index:%d\n",i); 38 38 } 39 39 return v[i];} -
Singular/iparith.cc
r8e1a91 r9d48243 2515 2515 if (p!=NULL) 2516 2516 { 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); 2520 2520 } 2521 2521 } -
Singular/polys.cc
r8e1a91 r9d48243 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: polys.cc,v 1.2 6 1998-05-06 12:44:08 pohlExp $ */4 /* $Id: polys.cc,v 1.27 1998-05-19 23:48:00 obachman Exp $ */ 5 5 6 6 /* … … 352 352 return 0; 353 353 } 354 355 354 356 355 /*---------------------------------------------------*/
Note: See TracChangeset
for help on using the changeset viewer.