Changeset 1b45a8 in git
- Timestamp:
- Apr 17, 1998, 9:53:43 AM (25 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 802a185c386e17c781afd6e24d51aa81c7555151
- Parents:
- 66be51317f9400a7183a651dba28b63c4ebbdf83
- Location:
- Singular
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/getopt.c
r66be513 r1b45a8 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $ id:$ */4 /* $Id: getopt.c,v 1.2 1998-04-17 07:53:41 Singular Exp $ */ 5 5 6 6 /* Getopt for GNU. -
Singular/longrat.cc
r66be513 r1b45a8 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: longrat.cc,v 1.1 5 1998-01-12 17:32:47Singular Exp $ */4 /* $Id: longrat.cc,v 1.16 1998-04-17 07:53:43 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT: computation with long rational numbers (Hubert Grassmann) … … 24 24 #endif 25 25 26 static int nlPrimeM; 26 27 static number nlMapP(number from) 27 28 { 28 29 number to; 30 int save=npPrimeM; 31 npPrimeM=nlPrimeM; 29 32 to = nlInit(npInt(from)); 33 npPrimeM=save; 30 34 return to; 31 35 } … … 42 46 if (par==NULL) 43 47 { 44 n pPrimeM=c;48 nlPrimeM=c; 45 49 nMap = nlMapP; /* Z/p -> Q */ 46 50 return TRUE;
Note: See TracChangeset
for help on using the changeset viewer.