Changeset a43bd1 in git
- Timestamp:
- Aug 4, 2000, 1:10:15 PM (23 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'c18334b998a8adbf0013b8e1ce0824774019443e')
- Children:
- 862bf0fa99f4048155b201aedb8868506e480e94
- Parents:
- b2c82d56a99be3873926891ad64df931a8c18bdd
- Location:
- factory
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/ChangeLog
rb2c82d ra43bd1 1 2000-08-04 Olaf Bachmann <obachman@mathematik.uni-kl.de> 2 3 * ffops.cc: initialize ff_prime to 0, so that first call to 4 ff_setprime always initializes ff_invtab. 5 1 6 Tue Feb 16 19:00:03 1999 Jens Schmidt <schmidt@mathematik.uni-kl.de> 2 7 -
factory/ffops.cc
rb2c82d ra43bd1 1 1 /* emacs edit mode for this file is -*- C++ -*- */ 2 /* $Id: ffops.cc,v 1. 8 1998-04-14 15:17:16 pohlExp $ */2 /* $Id: ffops.cc,v 1.9 2000-08-04 11:10:15 obachman Exp $ */ 3 3 4 4 #include <config.h> … … 11 11 #include "ffops.h" 12 12 13 int ff_prime = 31991;14 int ff_halfprime = 31991 / 2;13 int ff_prime = 0; 14 int ff_halfprime = 0; 15 15 bool ff_big = false; 16 16 short * ff_invtab = new short [32767];
Note: See TracChangeset
for help on using the changeset viewer.