Changeset 388fe1e in git for factory/ChangeLog


Ignore:
Timestamp:
Jun 12, 1997, 2:53:28 PM (27 years ago)
Author:
Jens Schmidt <schmidt@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
58bbdacad88ff9de4ed066f5a3d77c43c2f7386e
Parents:
3e4591d94bb44722a8e9aa61957fca49e4d3b092
Message:
o just a security check in


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

Legend:

Unmodified
Added
Removed
  • factory/ChangeLog

    r3e4591 r388fe1e  
    4545          about a missing autoconf any longer
    4646
    47         * canonicalform.cc (operator >>): returns 0 now when compiled with
    48           Singular and with stream IO enabled
     47        * canonicalform.cc (operator >>, SINGULAR): returns 0 again when
     48          compiled with Singular and with stream IO enabled
    4949
    5050Before Mon Jun  4 1997 Jens Schmidt <schmidt@mathematik.uni-kl.de>
     
    9898
    9999        * mpext.cc, mpext.h, mpfactory.h: removed from distribution.  No
    100           more MP support.
     100          more MULTIPROTOCOL support.
    101101
    102102        * readcf.cc: added to distribution since not all users have
     
    105105
    106106        Now for the changes at organization level:
     107
     108        * canonicalform.cc (operator >>, SINGULAR): removed dependency on
     109          #define SINGULAR
     110
     111        * cf_factor.cc (factorize, MULTIFACTOR): removed dependency on
     112          #define MULTIFACTOR
     113
     114        * cf_defs.h (incl_cf_defs_H, INCL_CF_DEFS_H): #define renamed so
     115          cf_defs.h is included only once
    107116
    108117        * cf_gcd.cc (DEBOUT): debug output changed to calls of DEBOUT
     
    118127          DEBUGOUTPUT (instead of NDEBUG, as before).  All callers
    119128          changed.
     129        * timing.h (iostream.h stdio.h): stream IO changed to std IO
    120130
    121131        * cf_linsys.cc (TIMING): #define TIMING removed
     
    130140          #define's and #include's removed
    131141
     142        * config.h.in (MDEBUG, NOASSERT, TIMING, DEBUGOUTPUT): new
     143          #defines
     144
     145        * config.h.in (MULTIPROTOCOL): #define removed.  No more
     146          MULTIPROTOCOL support.
     147        * int_int.h (class InternalInteger, MULTIPROTOCOL): removed
     148          declarations dependent on #define MULTIPROTOCOL
     149        * int_rat.h (class InternalRational, MULTIPROTOCOL): removed
     150          declarations dependent on #define MULTIPROTOCOL
     151
    132152        * config.h.in (NOSTREAMIO): new define NOSTREAMIO to switch off
    133153          stream IO.  Operators <<, >>, and related stuff wrapped by
    134154          #ifndef where necessary
    135155
    136         * fac_univar.cc (TIMING, timing.h): timing stuff changed to calls
    137           of TIMING macros
     156        * cf_factory.cc (CFFactory::basic ( int, int ), ASSERT1): error
     157          message changed to call of ASSERT1 macro
     158        * fac_util.cc: (crossprod, ASSERT): error message changed to
     159          call of ASSERT macro
     160        * int_cf.cc: (ASSERT, ASSERT1): error messages changed to calls of
     161          ASSERT1 macro
     162        * int_cf.h (InternalCF::InternalCF( InternalCF& ), ASSERT): error
     163          message changed to call of ASSERT macro
     164        * int_poly.cc (InternalPoly::InternalPoly( InternalPoly& ),
     165          ASSERT): error message changed to call of ASSERT macro
     166
     167        * fac_univar.cc (TIMING, TIMING_END_AND_PRINT, timing.h): timing
     168          stuff changed to calls of TIMING macros
     169
     170        * initgmp.cc (initializeGMP, SINGULAR): dependency on
     171          #define SINGULAR removed
     172
     173        * int_cf.h (PVIRT_VOID, PVIRT_INTCF, PVIRT_BOOL, PVIRT_INT,
     174          PVIRT_CHARCC): PVIRT_-*functionality moved to assert.h
     175
     176        * mmallocb.c (TEST, MM_TEST): references to #define TEST changed
     177          to MM_TEST
     178
     179        * timing.h (TIMING_END_AND_PRINT): new macro
     180
     181        * timing.h (HZ, CLOCKS_PER_SEC, time.h): ticks per second
     182          calculated in a hopefully more portable way
     183
     184        * timing.h: doc fix
    138185
    139186
    140187        Last not least, changes at source code level:
    141188
     189        * canonicalform.cc (mapinto): fixed mapping from int to GF
     190
     191        * cf_defs.h (SW_USE_SPARSEMOD): new switch
     192
     193        * cf_factor.cc, cf_factor.h (sqrFree( CanonicalForm, boolean )):
     194          new function which sorts output if desired
     195        * cf_factor.cc (sqrFree): simply calls the new function now
     196
     197        * cf_globals.cc (factoryVersion, FACTORYVERSION): version string
     198          added
     199        * cf_globals.h (factoryVersion): version string added
     200        * config.h.in (FACTORYVERSION): new #define to initialize
     201          factoryVersion
     202
    142203        * cf_linsys.cc (linearSystemSolve, determinant, determinant2):
    143           typedefs int_ptr introduced and used
     204          typedef int_ptr introduced and used
    144205
    145206        * cf_random.cc (RandomGenerator, RanGen): new class
     
    147208          poorly programmed stdlib-random generator
    148209
     210        * cf_iter.h (iostream.h): spurious #include <iostream.h> removed
     211        * cf_factor.h (iostream.h): spurious #include <iostream.h> removed
    149212        * cf_reval.h (iostream.h): spurious #include <iostream.h> removed
    150 
    151213        * cf_switches.h (RATTIONAL): spurious #define RATIONAL removed
     214        * int_int.cc (IntInt): spurious #define IntInt removed
     215        * int_pp.cc (IntPP): spurious #define IntPP removed
     216        * memutil.c (stdio.h): spurious #include <stdio.h> removed
     217        * mmalloc.c (stdio.h): spurious #include <stdio.h> removed
    152218
    153219        * fac_univar.cc (MAX_FP_FAC, max_fp_fac): #define changed to const int
     
    167233
    168234        * fac_univar.cc: doc fix
     235
     236        * int_int.cc (InternalInteger::genOne): Ruedigers last fryday
     237          afternoon fix
    169238
    170239        * variable.cc (Variable::Variable( char ), Variable::Variable( int, char ),
Note: See TracChangeset for help on using the changeset viewer.