Changeset 650f2d8 in git
- Timestamp:
- May 10, 2011, 4:26:31 PM (13 years ago)
- Branches:
- (u'spielwiese', 'd1b01e9d51ade4b46b745d3bada5c5f3696be3a8')
- Children:
- 468b57665e41eeb23c67a98dd6a2f85ccce65137
- Parents:
- b58d4735ba8885b68e60e175df833c691cd3c04e
- git-author:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-05-10 16:26:31+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:31:43+01:00
- Location:
- factory
- Files:
-
- 78 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
factory/CMakeLists.txt
rb58d47 r650f2d8 197 197 # factory header files 198 198 set(basefactory_hdrs 199 assert.h199 cf_assert.h 200 200 canonicalform.h 201 201 cf_algorithm.h -
factory/ChangeLog
rb58d47 r650f2d8 920 920 Fri Sep 26 12:54:41 1997 Jens Schmidt <schmidt@mathematik.uni-kl.de> 921 921 922 * assert.h: prints the function now where the assrtion occured if922 * cf_assert.h: prints the function now where the assrtion occured if 923 923 we are translating with gcc 924 924 … … 1606 1606 If we refer to the "DEBOUT macros", the "ASSERT macros", or the 1607 1607 "TIMING macros" we mean one (or more) of the macros defined in 1608 debug.h, assert.h, and timing.h, resp.1609 1610 * assert.h (NOASSERT, NDEBUG): #define NDEBUG to switch off1608 debug.h, cf_assert.h, and timing.h, resp. 1609 1610 * cf_assert.h (NOASSERT, NDEBUG): #define NDEBUG to switch off 1611 1611 assertions replaced by #define NOASSERT. For sake of backward 1612 1612 compatibility NDEBUG works, too. 1613 1613 1614 * assert.h (DEBINCLEVEL, DEBDECLEVEL, DEBOUTSL, DEBOUT, DEBOUTLN):1614 * cf_assert.h (DEBINCLEVEL, DEBDECLEVEL, DEBOUTSL, DEBOUT, DEBOUTLN): 1615 1615 DEBOUT macros moved to debug.h 1616 1616 * assert.cc: renamed to debug.cc 1617 1617 * debug.h, debug.cc: new files. DEBOUT macros moved from 1618 assert.h/assert.cc to debug.h/debug.cc. All source files which1618 cf_assert.h/assert.cc to debug.h/debug.cc. All source files which 1619 1619 need these macros include debug.h. 1620 1620 1621 * assert.h (PVIRT_VOID, PVIRT_INTCF, PVIRT_BOOL, PVIRT_INT,1622 PVIRT_CHARCC): PVIRT_*-macros moved from int_cf.h to assert.h1621 * cf_assert.h (PVIRT_VOID, PVIRT_INTCF, PVIRT_BOOL, PVIRT_INT, 1622 PVIRT_CHARCC): PVIRT_*-macros moved from int_cf.h to cf_assert.h 1623 1623 * int_cf.h (PVIRT_VOID, PVIRT_INTCF, PVIRT_BOOL, PVIRT_INT, 1624 PVIRT_CHARCC): PVIRT_*-macros moved to assert.h1625 1626 * assert.h (__ASSERT, __STICKYASSERT): the preprocessor instead of1624 PVIRT_CHARCC): PVIRT_*-macros moved to cf_assert.h 1625 1626 * cf_assert.h (__ASSERT, __STICKYASSERT): the preprocessor instead of 1627 1627 fprintf() pastes the message into the format string now 1628 1628 1629 * assert.h (__ASSERT1, ASSERT1, STICKYASSERT1): new macros1630 1631 * assert.h (__WARN, WARN, STICKYWARN): new macros1629 * cf_assert.h (__ASSERT1, ASSERT1, STICKYASSERT1): new macros 1630 1631 * cf_assert.h (__WARN, WARN, STICKYWARN): new macros 1632 1632 1633 1633 * canonicalform.cc (operator>>): dependency on #define SINGULAR -
factory/DegreePattern.h
rb58d47 r650f2d8 17 17 #include <config.h> 18 18 19 #include " assert.h"19 #include "cf_assert.h" 20 20 21 21 #include "canonicalform.h" -
factory/GNUmakefile.in
rb58d47 r650f2d8 225 225 # factory header files 226 226 basefactoryincl := \ 227 assert.h \227 cf_assert.h \ 228 228 canonicalform.h \ 229 229 cf_algorithm.h \ -
factory/Makefile.am
rb58d47 r650f2d8 80 80 # factory header files 81 81 HEADERS := \ 82 assert.h \82 cf_assert.h \ 83 83 canonicalform.h \ 84 84 cf_algorithm.h \ -
factory/NTLconvert.cc
rb58d47 r650f2d8 2 2 #include <config.h> 3 3 4 #include " assert.h"4 #include "cf_assert.h" 5 5 6 6 #include "cf_defs.h" -
factory/NTLconvert.h
rb58d47 r650f2d8 7 7 #include "cf_gmp.h" 8 8 9 #include " assert.h"9 #include "cf_assert.h" 10 10 11 11 #include "cf_defs.h" -
factory/README
rb58d47 r650f2d8 200 200 ====================== 201 201 Factory has three types of diagnostic messages: 202 o Assertions (implemented by the "ASSERT macros" in ` assert.h') are used to202 o Assertions (implemented by the "ASSERT macros" in `cf_assert.h') are used to 203 203 ensure preconditions before running some algorithm. A typical example is 204 204 to test f != 0 before dividing by f. … … 524 524 newdelete.cc - C++ interface to the memory managers 525 525 526 assert.h - the "ASSERT macros"526 cf_assert.h - the "ASSERT macros" 527 527 debug.h 528 528 debug.cc - the "DEBOUT macros" -
factory/canonicalform.cc
rb58d47 r650f2d8 4 4 #include <config.h> 5 5 6 #include " assert.h"6 #include "cf_assert.h" 7 7 8 8 #include "cf_factory.h" -
factory/cf_algorithm.cc
rb58d47 r650f2d8 21 21 #include <config.h> 22 22 23 #include " assert.h"23 #include "cf_assert.h" 24 24 25 25 #include "cf_factory.h" -
factory/cf_assert.h
rb58d47 r650f2d8 2 2 /* $Id$ */ 3 3 4 /* This is for compatibility with standard assert.h */4 /* This is for compatibility with standard cf_assert.h */ 5 5 #if defined (NDEBUG) && ! defined (NOASSERT) 6 6 #define NOASSERT -
factory/cf_binom.cc
rb58d47 r650f2d8 4 4 #include <config.h> 5 5 6 #include " assert.h"6 #include "cf_assert.h" 7 7 8 8 #include "cf_defs.h" -
factory/cf_char.cc
rb58d47 r650f2d8 4 4 #include <config.h> 5 5 6 #include " assert.h"6 #include "cf_assert.h" 7 7 8 8 #include "cf_defs.h" -
factory/cf_chinese.cc
rb58d47 r650f2d8 14 14 #include <config.h> 15 15 16 #include " assert.h"16 #include "cf_assert.h" 17 17 #include "debug.h" 18 18 -
factory/cf_eval.cc
rb58d47 r650f2d8 4 4 #include <config.h> 5 5 6 #include " assert.h"6 #include "cf_assert.h" 7 7 8 8 #include "cf_defs.h" -
factory/cf_factor.cc
rb58d47 r650f2d8 14 14 #include <config.h> 15 15 16 #include " assert.h"16 #include "cf_assert.h" 17 17 18 18 #include "cf_defs.h" -
factory/cf_factory.cc
rb58d47 r650f2d8 4 4 #include <config.h> 5 5 6 #include " assert.h"6 #include "cf_assert.h" 7 7 8 8 #include "cf_defs.h" -
factory/cf_gcd.cc
rb58d47 r650f2d8 4 4 #include <config.h> 5 5 6 #include " assert.h"6 #include "cf_assert.h" 7 7 #include "debug.h" 8 8 -
factory/cf_gcd_smallp.cc
-
Property
mode
changed from
100755
to100644
rb58d47 r650f2d8 21 21 #include <config.h> 22 22 23 #include " assert.h"23 #include "cf_assert.h" 24 24 #include "debug.h" 25 25 #include "timing.h" -
Property
mode
changed from
-
factory/cf_gcd_smallp.h
rb58d47 r650f2d8 24 24 25 25 #include <config.h> 26 #include " assert.h"26 #include "cf_assert.h" 27 27 28 28 CanonicalForm GCD_Fp_extension (const CanonicalForm& F, const CanonicalForm& G, -
factory/cf_generator.cc
rb58d47 r650f2d8 4 4 #include <config.h> 5 5 6 #include " assert.h"6 #include "cf_assert.h" 7 7 8 8 #include "cf_defs.h" -
factory/cf_inline.cc
rb58d47 r650f2d8 77 77 #include <config.h> 78 78 79 #include " assert.h"79 #include "cf_assert.h" 80 80 81 81 // temporarily switch off `CF_USE_INLINE' and include -
factory/cf_irred.cc
rb58d47 r650f2d8 4 4 #include <config.h> 5 5 6 #include " assert.h"6 #include "cf_assert.h" 7 7 8 8 #include "cf_defs.h" -
factory/cf_iter.cc
rb58d47 r650f2d8 4 4 #include <config.h> 5 5 6 #include " assert.h"6 #include "cf_assert.h" 7 7 8 8 #include "cf_defs.h" -
factory/cf_iter_inline.cc
rb58d47 r650f2d8 24 24 #include <config.h> 25 25 26 #include " assert.h"26 #include "cf_assert.h" 27 27 28 28 // regular include file -
factory/cf_linsys.cc
rb58d47 r650f2d8 4 4 #include <config.h> 5 5 6 #include " assert.h"6 #include "cf_assert.h" 7 7 #include "debug.h" 8 8 #include "timing.h" -
factory/cf_map_ext.cc
rb58d47 r650f2d8 19 19 #include <config.h> 20 20 21 #include " assert.h"21 #include "cf_assert.h" 22 22 #include "debug.h" 23 23 -
factory/cf_ops.cc
rb58d47 r650f2d8 22 22 #include <config.h> 23 23 24 #include " assert.h"24 #include "cf_assert.h" 25 25 26 26 #include "canonicalform.h" -
factory/cf_primes.cc
rb58d47 r650f2d8 4 4 #include <config.h> 5 5 6 #include " assert.h"6 #include "cf_assert.h" 7 7 8 8 #include "cf_defs.h" -
factory/cf_random.cc
rb58d47 r650f2d8 6 6 #include <time.h> 7 7 8 #include " assert.h"8 #include "cf_assert.h" 9 9 10 10 #include "cf_defs.h" -
factory/cf_resultant.cc
rb58d47 r650f2d8 12 12 #include <config.h> 13 13 14 #include " assert.h"14 #include "cf_assert.h" 15 15 16 16 #include "canonicalform.h" -
factory/cf_reval.cc
rb58d47 r650f2d8 6 6 #include <config.h> 7 7 8 #include " assert.h"8 #include "cf_assert.h" 9 9 10 10 #include "cf_defs.h" -
factory/facAlgExt.cc
-
Property
mode
changed from
100755
to100644
rb58d47 r650f2d8 20 20 #include <config.h> 21 21 22 #include " assert.h"22 #include "cf_assert.h" 23 23 #include "debug.h" 24 24 #include "timing.h" -
Property
mode
changed from
-
factory/facAlgExt.h
-
Property
mode
changed from
100755
to100644
rb58d47 r650f2d8 22 22 #define FAC_ALG_EXT_H 23 23 24 #include " assert.h"24 #include "cf_assert.h" 25 25 26 26 #include "canonicalform.h" -
Property
mode
changed from
-
factory/facFqBivar.cc
rb58d47 r650f2d8 21 21 #include <config.h> 22 22 23 #include " assert.h"23 #include "cf_assert.h" 24 24 #include "debug.h" 25 25 #include "timing.h" -
factory/facFqBivar.h
rb58d47 r650f2d8 19 19 #include <config.h> 20 20 21 #include " assert.h"21 #include "cf_assert.h" 22 22 23 23 #include "facFqBivarUtil.h" -
factory/facFqFactorize.cc
rb58d47 r650f2d8 20 20 #include <config.h> 21 21 22 #include " assert.h"22 #include "cf_assert.h" 23 23 #include "debug.h" 24 24 #include "timing.h" -
factory/facFqSquarefree.h
rb58d47 r650f2d8 17 17 #define FAC_FQ_SQUAREFREE_H 18 18 19 #include " assert.h"19 #include "cf_assert.h" 20 20 21 21 -
factory/facHensel.cc
rb58d47 r650f2d8 20 20 /*****************************************************************************/ 21 21 22 #include " assert.h"22 #include "cf_assert.h" 23 23 #include "debug.h" 24 24 #include "timing.h" -
factory/facHensel.h
rb58d47 r650f2d8 20 20 21 21 #include <config.h> 22 #include " assert.h"22 #include "cf_assert.h" 23 23 #include "debug.h" 24 24 #include "timing.h" -
factory/fac_berlekamp.cc
rb58d47 r650f2d8 4 4 #include <config.h> 5 5 6 #include " assert.h"6 #include "cf_assert.h" 7 7 #include "debug.h" 8 8 -
factory/fac_cantzass.cc
rb58d47 r650f2d8 4 4 #include <config.h> 5 5 6 #include " assert.h"6 #include "cf_assert.h" 7 7 8 8 #include "cf_defs.h" -
factory/fac_distrib.cc
rb58d47 r650f2d8 4 4 #include <config.h> 5 5 6 #include " assert.h"6 #include "cf_assert.h" 7 7 #include "debug.h" 8 8 -
factory/fac_ezgcd.cc
rb58d47 r650f2d8 4 4 #include <config.h> 5 5 6 #include " assert.h"6 #include "cf_assert.h" 7 7 #include "debug.h" 8 8 -
factory/fac_iterfor.cc
rb58d47 r650f2d8 4 4 #include <config.h> 5 5 6 #include " assert.h"6 #include "cf_assert.h" 7 7 8 8 #include "cf_defs.h" -
factory/fac_multihensel.cc
rb58d47 r650f2d8 4 4 #include <config.h> 5 5 6 #include " assert.h"6 #include "cf_assert.h" 7 7 #include "debug.h" 8 8 #include "timing.h" -
factory/fac_multivar.cc
rb58d47 r650f2d8 4 4 #include <config.h> 5 5 6 #include " assert.h"6 #include "cf_assert.h" 7 7 #include "debug.h" 8 8 #include "timing.h" -
factory/fac_sqrfree.cc
rb58d47 r650f2d8 4 4 #include <config.h> 5 5 6 #include " assert.h"6 #include "cf_assert.h" 7 7 8 8 #include "cf_defs.h" -
factory/fac_univar.cc
rb58d47 r650f2d8 6 6 #include <math.h> 7 7 8 #include " assert.h"8 #include "cf_assert.h" 9 9 #include "debug.h" 10 10 #include "timing.h" -
factory/fac_util.cc
rb58d47 r650f2d8 4 4 #include <config.h> 5 5 6 #include " assert.h"6 #include "cf_assert.h" 7 7 8 8 #include "cf_defs.h" -
factory/factoryconf.template
rb58d47 r650f2d8 13 13 * way as `config.h' serves as a configuration file for the 14 14 * source files from which the library is build. Additionally, 15 * we paste a copy of our ` assert.h' into this file which is15 * we paste a copy of our `cf_assert.h' into this file which is 16 16 * necessary for the templates to translate. 17 17 * … … 23 23 24 24 /*MAKEHEADER*/ 25 #include " assert.h"25 #include "cf_assert.h" 26 26 27 27 #endif /* ! INCL_FACTORYCONF_H */ -
factory/ffops.cc
rb58d47 r650f2d8 6 6 #include <string.h> 7 7 8 #include " assert.h"8 #include "cf_assert.h" 9 9 10 10 #include "cf_defs.h" -
factory/ftest/ntl_util.cc
rb58d47 r650f2d8 20 20 #include <strstream.h> 21 21 22 #include < assert.h>22 #include <cf_assert.h> 23 23 24 24 #include "ntl_util.h" -
factory/gengftables-conway.cc
rb58d47 r650f2d8 18 18 #include <factory.h> 19 19 20 #include < assert.h>20 #include <cf_assert.h> 21 21 #include <gf_tabutil.h> 22 22 -
factory/gengftables.cc
rb58d47 r650f2d8 23 23 #include <factory.h> 24 24 25 #include < assert.h>25 #include <cf_assert.h> 26 26 #include <gf_tabutil.h> 27 27 -
factory/gf_tabutil.cc
rb58d47 r650f2d8 4 4 #include <config.h> 5 5 6 #include " assert.h"6 #include "cf_assert.h" 7 7 8 8 #include "cf_defs.h" -
factory/gfops.cc
rb58d47 r650f2d8 13 13 #include <string.h> 14 14 15 #include " assert.h"15 #include "cf_assert.h" 16 16 17 17 #include "cf_defs.h" -
factory/gfops.h
rb58d47 r650f2d8 17 17 #endif /* NOSTREAMIO */ 18 18 19 #include " assert.h"19 #include "cf_assert.h" 20 20 21 21 #include "cf_defs.h" -
factory/imm.h
rb58d47 r650f2d8 17 17 #endif /* NOSTREAMIO */ 18 18 19 #include " assert.h"19 #include "cf_assert.h" 20 20 21 21 #include "cf_defs.h" -
factory/initgmp.cc
rb58d47 r650f2d8 4 4 #include <config.h> 5 5 6 #include " assert.h"6 #include "cf_assert.h" 7 7 8 8 #include "cf_gmp.h" -
factory/int_cf.cc
rb58d47 r650f2d8 4 4 #include <config.h> 5 5 6 #include " assert.h"6 #include "cf_assert.h" 7 7 8 8 #include "cf_defs.h" -
factory/int_cf.h
rb58d47 r650f2d8 17 17 #endif /* NOSTREAMIO */ 18 18 19 #include " assert.h"19 #include "cf_assert.h" 20 20 21 21 #include "cf_defs.h" -
factory/int_int.h
rb58d47 r650f2d8 17 17 #endif /* NOSTREAMIO */ 18 18 19 #include " assert.h"19 #include "cf_assert.h" 20 20 21 21 #include "int_cf.h" -
factory/int_poly.cc
rb58d47 r650f2d8 18 18 #endif /* NOSTREAMIO */ 19 19 20 #include " assert.h"20 #include "cf_assert.h" 21 21 22 22 #include "cf_defs.h" -
factory/int_pp.cc
rb58d47 r650f2d8 4 4 #include <config.h> 5 5 6 #include " assert.h"6 #include "cf_assert.h" 7 7 8 8 #include "cf_defs.h" -
factory/int_pp.h
rb58d47 r650f2d8 19 19 #endif /* NOSTREAMIO */ 20 20 21 #include " assert.h"21 #include "cf_assert.h" 22 22 23 23 #include "int_cf.h" -
factory/int_rat.cc
rb58d47 r650f2d8 4 4 #include <config.h> 5 5 6 #include " assert.h"6 #include "cf_assert.h" 7 7 8 8 #include "cf_defs.h" -
factory/int_rat.h
rb58d47 r650f2d8 17 17 #endif /* NOSTREAMIO */ 18 18 19 #include " assert.h"19 #include "cf_assert.h" 20 20 21 21 #include "canonicalform.h" -
factory/memutil.c
rb58d47 r650f2d8 8 8 #include <stdlib.h> 9 9 10 #include " assert.h"10 #include "cf_assert.h" 11 11 12 12 #include "memutil.h" -
factory/newdelete.cc
rb58d47 r650f2d8 5 5 #include <new> 6 6 7 #include " assert.h"7 #include "cf_assert.h" 8 8 9 9 #ifdef USE_OLD_MEMMAN -
factory/parseutil.cc
rb58d47 r650f2d8 7 7 #include <stdlib.h> 8 8 9 #include " assert.h"9 #include "cf_assert.h" 10 10 11 11 #include "cf_defs.h" -
factory/readcf.cc
rb58d47 r650f2d8 103 103 104 104 105 #include " assert.h"105 #include "cf_assert.h" 106 106 107 107 #include "canonicalform.h" -
factory/readcf.y
rb58d47 r650f2d8 25 25 26 26 27 #include " assert.h"27 #include "cf_assert.h" 28 28 29 29 #include "canonicalform.h" -
factory/singext.cc
rb58d47 r650f2d8 4 4 #include <config.h> 5 5 6 #include " assert.h"6 #include "cf_assert.h" 7 7 8 8 #include "cf_defs.h" -
factory/sm_sparsemod.cc
rb58d47 r650f2d8 14 14 #include <config.h> 15 15 16 #include " assert.h"16 #include "cf_assert.h" 17 17 #include "debug.h" 18 18 -
factory/sm_util.cc
rb58d47 r650f2d8 14 14 #include <config.h> 15 15 16 #include " assert.h"16 #include "cf_assert.h" 17 17 #include "debug.h" 18 18 -
factory/var_intglobal.cc
rb58d47 r650f2d8 17 17 #include <config.h> 18 18 19 #include " assert.h"19 #include "cf_assert.h" 20 20 21 21 #include <string.h> -
factory/variable.cc
rb58d47 r650f2d8 6 6 #include <string.h> 7 7 8 #include " assert.h"8 #include "cf_assert.h" 9 9 10 10 #include "cf_defs.h" -
factory/winnt/factoryconf.h
rb58d47 r650f2d8 14 14 * way as `config.h' serves as a configuration file for the 15 15 * source files from which the library is build. Additionally, 16 * we paste a copy of our ` assert.h' into this file which is16 * we paste a copy of our `cf_assert.h' into this file which is 17 17 * necessary for the templates to translate. 18 18 * … … 102 102 #endif /* ! INCL_CONFIG_H */ 103 103 104 /* stuff included from ./ assert.h */104 /* stuff included from ./cf_assert.h */ 105 105 106 106 /* emacs edit mode for this file is -*- C -*- */ 107 107 /* $Id$ */ 108 108 109 /* This is for compatibility with standard assert.h */109 /* This is for compatibility with standard cf_assert.h */ 110 110 #if defined (NDEBUG) && ! defined (NOASSERT) 111 111 #define NOASSERT
Note: See TracChangeset
for help on using the changeset viewer.