From a8369235e23acbacbad414dc1675be8c279e27a2 Mon Sep 17 00:00:00 2001 From: Richard Kreckel Date: Wed, 23 Jun 2004 21:11:21 +0000 Subject: [PATCH] * Change all C include headers to ISO style within C++ code. --- ChangeLog | 41 +++++++++++++++++++ benchmarks/timebench1.cc | 4 +- benchmarks/timebench2a.LiDIA.cc | 4 +- benchmarks/timebench2a.cc | 4 +- benchmarks/timebench2ap.cc | 4 +- benchmarks/timebench2b.LiDIA.cc | 4 +- benchmarks/timebench2b.cc | 4 +- examples/atan_recip.cc | 6 +-- examples/atanh_recip.cc | 4 +- examples/contfrac.cc | 2 +- examples/e.cc | 2 +- examples/legendre.cc | 2 +- examples/lucaslehmer.cc | 2 +- examples/pi.cc | 6 +-- include/cln/GV.h | 2 +- include/cln/SV.h | 2 +- include/cln/malloc.h | 2 +- include/cln/modules.h | 2 +- include/cln/object.h | 2 +- include/cln/string.h | 2 +- src/base/cl_abort.cc | 2 +- src/base/cl_alloca.h | 2 +- src/base/cl_malloc.cc | 2 +- src/base/random/cl_random_from.cc | 4 +- src/base/string/cl_spushstring_append.cc | 2 +- src/base/string/cl_spushstring_push.cc | 2 +- src/base/string/cl_st_debug.cc | 2 +- src/base/string/input/cl_st_gettoken.cc | 2 +- src/complex/input/cl_N_read.cc | 2 +- src/float/input/cl_F_read.cc | 2 +- src/float/output/cl_F_dprint.cc | 2 +- src/integer/input/cl_I_read.cc | 2 +- src/rational/input/cl_RA_read.cc | 2 +- src/real/format-output/cl_fmt_integer.cc | 2 +- src/real/format-output/cl_fmt_paddedstring.cc | 2 +- src/real/input/cl_R_read.cc | 2 +- src/timing/cl_t_current.cc | 6 +-- src/timing/cl_t_current2.cc | 4 +- tests/exam.cc | 2 +- tests/tests.cc | 4 +- tests/timeLFRAmul.cc | 4 +- tests/timeLFatan-compare.cc | 4 +- tests/timeLFatan.cc | 4 +- tests/timeLFatanh-compare.cc | 4 +- tests/timeLFatanh.cc | 4 +- tests/timeLFcos-compare.cc | 4 +- tests/timeLFcos.cc | 4 +- tests/timeLFcosh.cc | 4 +- tests/timeLFexp-compare.cc | 4 +- tests/timeLFexp.cc | 4 +- tests/timeLFln-compare.cc | 4 +- tests/timeLFln.cc | 4 +- tests/timeLFsin-compare.cc | 4 +- tests/timeLFsin.cc | 4 +- tests/timeLFsinh.cc | 4 +- tests/timeLFsqrt.cc | 4 +- tests/timeMImisc5.cc | 4 +- tests/timeMIpow2div.cc | 4 +- tests/timeMIpow2recip.cc | 4 +- tests/timeRALFdiv.cc | 4 +- tests/timeRAtoLF.cc | 4 +- tests/timeUPMImul.cc | 4 +- tests/timecatalan.cc | 4 +- tests/timediv.cc | 4 +- tests/timediv2adic-compare.cc | 4 +- tests/timediv2adic.cc | 4 +- tests/timeeuler.cc | 4 +- tests/timeexp1.cc | 4 +- tests/timefact.cc | 4 +- tests/timegcd.cc | 4 +- tests/timemul-compare.cc | 4 +- tests/timemul.cc | 4 +- tests/timepi.cc | 4 +- tests/timeprint-compare.cc | 4 +- tests/timeprint.cc | 4 +- tests/timerecip2adic-compare.cc | 4 +- tests/timerecip2adic.cc | 4 +- tests/timesqrt.cc | 4 +- tests/timesqrtmodp.cc | 4 +- tests/timesquare.cc | 4 +- tests/timezeta3.cc | 4 +- 81 files changed, 178 insertions(+), 137 deletions(-) diff --git a/ChangeLog b/ChangeLog index a58c766..d2c4732 100644 --- a/ChangeLog +++ b/ChangeLog @@ -8,6 +8,47 @@ * rational/transcendental/cl_RA_logp.cc: fix bug where base is reciprocal of an integer. +2004-06-17 Ralf Wildenhues + + * benchmarks/timebench1.cc, benchmarks/timebench2a.LiDIA.cc, + benchmarks/timebench2a.cc, benchmarks/timebench2ap.cc, + benchmarks/timebench2b.LiDIA.cc, benchmarks/timebench2b.cc, + examples/atan_recip.cc, examples/atanh_recip.cc, + examples/contfrac.cc, examples/e.cc, examples/legendre.cc, + examples/lucaslehmer.cc, examples/pi.cc, include/cln/GV.h, + include/cln/SV.h, include/cln/malloc.h, include/cln/modules.h, + include/cln/object.h, include/cln/string.h, src/base/cl_abort.cc, + src/base/cl_alloca.h, src/base/cl_malloc.cc, + src/base/random/cl_random_from.cc, + src/base/string/cl_spushstring_append.cc, + src/base/string/cl_spushstring_push.cc, + src/base/string/cl_st_debug.cc, + src/base/string/input/cl_st_gettoken.cc, + src/complex/input/cl_N_read.cc, src/float/input/cl_F_read.cc, + src/float/output/cl_F_dprint.cc, src/integer/input/cl_I_read.cc, + src/rational/input/cl_RA_read.cc, + src/real/format-output/cl_fmt_integer.cc, + src/real/format-output/cl_fmt_paddedstring.cc, + src/real/input/cl_R_read.cc, src/timing/cl_t_current.cc, + src/timing/cl_t_current2.cc, tests/exam.cc, tests/tests.cc, + tests/timeLFRAmul.cc, tests/timeLFatan-compare.cc, + tests/timeLFatan.cc, tests/timeLFatanh-compare.cc, + tests/timeLFatanh.cc, tests/timeLFcos-compare.cc, tests/timeLFcos.cc, + tests/timeLFcosh.cc, tests/timeLFexp-compare.cc, tests/timeLFexp.cc, + tests/timeLFln-compare.cc, tests/timeLFln.cc, + tests/timeLFsin-compare.cc, tests/timeLFsin.cc, tests/timeLFsinh.cc, + tests/timeLFsqrt.cc, tests/timeMImisc5.cc, tests/timeMIpow2div.cc, + tests/timeMIpow2recip.cc, tests/timeRALFdiv.cc, tests/timeRAtoLF.cc, + tests/timeUPMImul.cc, tests/timecatalan.cc, tests/timediv.cc, + tests/timediv2adic-compare.cc, tests/timediv2adic.cc, + tests/timeeuler.cc, tests/timeexp1.cc, tests/timefact.cc, + tests/timegcd.cc, tests/timemul-compare.cc, tests/timemul.cc, + tests/timepi.cc, tests/timeprint-compare.cc, tests/timeprint.cc, + tests/timerecip2adic-compare.cc, tests/timerecip2adic.cc, + tests/timesqrt.cc, tests/timesqrtmodp.cc, tests/timesquare.cc, + tests/timezeta3.cc: Change all C include headers to ISO style + within C++ code. + 2004-06-10 Richard B. Kreckel * examples/perfnum.cc: update to presumed 41st Mersenne prime. diff --git a/benchmarks/timebench1.cc b/benchmarks/timebench1.cc index 3f73653..a626bf3 100644 --- a/benchmarks/timebench1.cc +++ b/benchmarks/timebench1.cc @@ -9,8 +9,8 @@ #include #include #include -#include -#include +#include +#include #include // Timings on Linux i486 33 MHz, 1000 decimal places = 104 32-bit words. diff --git a/benchmarks/timebench2a.LiDIA.cc b/benchmarks/timebench2a.LiDIA.cc index 1662cac..3f7ecb7 100644 --- a/benchmarks/timebench2a.LiDIA.cc +++ b/benchmarks/timebench2a.LiDIA.cc @@ -1,8 +1,8 @@ #include #include #include -#include -#include +#include +#include int main (int argc, char * argv[]) { diff --git a/benchmarks/timebench2a.cc b/benchmarks/timebench2a.cc index 93222c4..7573c13 100644 --- a/benchmarks/timebench2a.cc +++ b/benchmarks/timebench2a.cc @@ -4,8 +4,8 @@ #include #include #include -#include -#include +#include +#include #include using namespace std; diff --git a/benchmarks/timebench2ap.cc b/benchmarks/timebench2ap.cc index 7254c1d..679a5f4 100644 --- a/benchmarks/timebench2ap.cc +++ b/benchmarks/timebench2ap.cc @@ -1,8 +1,8 @@ #include #include #include -#include -#include +#include +#include #include using namespace std; diff --git a/benchmarks/timebench2b.LiDIA.cc b/benchmarks/timebench2b.LiDIA.cc index c71ed45..29e6a54 100644 --- a/benchmarks/timebench2b.LiDIA.cc +++ b/benchmarks/timebench2b.LiDIA.cc @@ -1,8 +1,8 @@ #include #include #include -#include -#include +#include +#include int main (int argc, char * argv[]) { diff --git a/benchmarks/timebench2b.cc b/benchmarks/timebench2b.cc index 0e8e1c4..a5be5dc 100644 --- a/benchmarks/timebench2b.cc +++ b/benchmarks/timebench2b.cc @@ -7,8 +7,8 @@ #include #include #include -#include -#include +#include +#include #include using namespace std; diff --git a/examples/atan_recip.cc b/examples/atan_recip.cc index 188e7e7..1540bd5 100644 --- a/examples/atan_recip.cc +++ b/examples/atan_recip.cc @@ -7,12 +7,12 @@ #include "cl_LF.h" #include "cl_LF_tran.h" #include "cl_alloca.h" -#include -#include +#include +#include #include "cln/timing.h" #undef floor -#include +#include #define floor cln_floor using namespace cln; diff --git a/examples/atanh_recip.cc b/examples/atanh_recip.cc index ae3aa10..991cc30 100644 --- a/examples/atanh_recip.cc +++ b/examples/atanh_recip.cc @@ -8,8 +8,8 @@ #include "cl_LF.h" #include "cl_LF_tran.h" #include "cl_alloca.h" -#include -#include +#include +#include #include "cln/timing.h" #undef floor diff --git a/examples/contfrac.cc b/examples/contfrac.cc index e716f05..b80c661 100644 --- a/examples/contfrac.cc +++ b/examples/contfrac.cc @@ -12,7 +12,7 @@ using namespace std; using namespace cln; // Our private error handling: return to the main program. -#include +#include jmp_buf restartpoint; namespace cln { void cl_abort (void) { longjmp(restartpoint,1); } diff --git a/examples/e.cc b/examples/e.cc index b0e9730..f552622 100644 --- a/examples/e.cc +++ b/examples/e.cc @@ -35,7 +35,7 @@ #include #include #include -#include +#include #include #include diff --git a/examples/legendre.cc b/examples/legendre.cc index c0e4b90..3d3066a 100644 --- a/examples/legendre.cc +++ b/examples/legendre.cc @@ -8,7 +8,7 @@ #include #include #include -#include +#include using namespace std; using namespace cln; diff --git a/examples/lucaslehmer.cc b/examples/lucaslehmer.cc index 3df392e..7c546e7 100644 --- a/examples/lucaslehmer.cc +++ b/examples/lucaslehmer.cc @@ -51,7 +51,7 @@ bool mersenne_prime_p_modint (int q) } #include // we do I/O -#include // declares exit() +#include // declares exit() #include int main (int argc, char* argv[]) diff --git a/examples/pi.cc b/examples/pi.cc index 19ec86b..a2768b5 100644 --- a/examples/pi.cc +++ b/examples/pi.cc @@ -3,9 +3,9 @@ #include #include #include -#include -#include -#include +#include +#include +#include using namespace std; using namespace cln; diff --git a/include/cln/GV.h b/include/cln/GV.h index 113766b..ed83e27 100644 --- a/include/cln/GV.h +++ b/include/cln/GV.h @@ -6,7 +6,7 @@ #include "cln/object.h" #include "cln/V.h" #include "cln/abort.h" -#include +#include namespace cln { diff --git a/include/cln/SV.h b/include/cln/SV.h index 87845f1..7c05e80 100644 --- a/include/cln/SV.h +++ b/include/cln/SV.h @@ -6,7 +6,7 @@ #include "cln/object.h" #include "cln/V.h" #include "cln/abort.h" -#include +#include namespace cln { diff --git a/include/cln/malloc.h b/include/cln/malloc.h index d894ee4..c187375 100644 --- a/include/cln/malloc.h +++ b/include/cln/malloc.h @@ -3,7 +3,7 @@ #ifndef _CL_MALLOC_H #define _CL_MALLOC_H -#include +#include namespace cln { diff --git a/include/cln/modules.h b/include/cln/modules.h index 8555c32..26fc291 100644 --- a/include/cln/modules.h +++ b/include/cln/modules.h @@ -259,7 +259,7 @@ // // CL_FORCE_LINK(dummy,external_variable) // forces a link time reference to the external_variable. -#include +#include #if 0 // This definition does not work. It gets optimized away by g++ 3.1. #define CL_FORCE_LINK(dummy,external_variable) \ diff --git a/include/cln/object.h b/include/cln/object.h index 5e9e516..169a6aa 100644 --- a/include/cln/object.h +++ b/include/cln/object.h @@ -5,7 +5,7 @@ #include "cln/types.h" #include "cln/modules.h" -#include +#include namespace cln { diff --git a/include/cln/string.h b/include/cln/string.h index 2c4239d..cfd8b49 100644 --- a/include/cln/string.h +++ b/include/cln/string.h @@ -6,7 +6,7 @@ #include "cln/object.h" #include "cln/io.h" #include "cln/abort.h" -#include +#include namespace cln { diff --git a/src/base/cl_abort.cc b/src/base/cl_abort.cc index dee0be3..45cb016 100644 --- a/src/base/cl_abort.cc +++ b/src/base/cl_abort.cc @@ -9,7 +9,7 @@ // Implementation. -#include +#include namespace cln { diff --git a/src/base/cl_alloca.h b/src/base/cl_alloca.h index bff2c56..e593be6 100644 --- a/src/base/cl_alloca.h +++ b/src/base/cl_alloca.h @@ -4,7 +4,7 @@ #define _CL_ALLOCA_H #include "cl_macros.h" -#include +#include namespace cln { diff --git a/src/base/cl_malloc.cc b/src/base/cl_malloc.cc index 4ca4fc3..ef6d8b6 100644 --- a/src/base/cl_malloc.cc +++ b/src/base/cl_malloc.cc @@ -9,7 +9,7 @@ // Implementation. -#include +#include #include "cln/io.h" #include "cln/abort.h" diff --git a/src/base/random/cl_random_from.cc b/src/base/random/cl_random_from.cc index 546bd3e..1b2ad60 100644 --- a/src/base/random/cl_random_from.cc +++ b/src/base/random/cl_random_from.cc @@ -16,7 +16,7 @@ #include #include // declares getpid() -#include // declares rand() +#include // declares rand() #if defined(HAVE_GETTIMEOFDAY) @@ -36,7 +36,7 @@ inline uint32 get_seed (void) #elif defined(HAVE_TIMES_CLOCK) -#include +#include #ifndef CLK_TCK #include #endif diff --git a/src/base/string/cl_spushstring_append.cc b/src/base/string/cl_spushstring_append.cc index 56a69bf..8f36f49 100644 --- a/src/base/string/cl_spushstring_append.cc +++ b/src/base/string/cl_spushstring_append.cc @@ -9,7 +9,7 @@ // Implementation. -#include // declares memcpy() +#include // declares memcpy() namespace cln { diff --git a/src/base/string/cl_spushstring_push.cc b/src/base/string/cl_spushstring_push.cc index c45197c..336c75e 100644 --- a/src/base/string/cl_spushstring_push.cc +++ b/src/base/string/cl_spushstring_push.cc @@ -9,7 +9,7 @@ // Implementation. -#include // declares memcpy() +#include // declares memcpy() namespace cln { diff --git a/src/base/string/cl_st_debug.cc b/src/base/string/cl_st_debug.cc index 948c5ec..7a7a05c 100644 --- a/src/base/string/cl_st_debug.cc +++ b/src/base/string/cl_st_debug.cc @@ -10,7 +10,7 @@ #include "cln/string.h" #include "cln/io.h" -#include +#include namespace cln { diff --git a/src/base/string/input/cl_st_gettoken.cc b/src/base/string/input/cl_st_gettoken.cc index 1201f91..e845c13 100644 --- a/src/base/string/input/cl_st_gettoken.cc +++ b/src/base/string/input/cl_st_gettoken.cc @@ -11,7 +11,7 @@ #include "cln/io.h" #include "cl_spushstring.h" -#include +#include namespace cln { diff --git a/src/complex/input/cl_N_read.cc b/src/complex/input/cl_N_read.cc index f54b270..bd884b0 100644 --- a/src/complex/input/cl_N_read.cc +++ b/src/complex/input/cl_N_read.cc @@ -9,7 +9,7 @@ // Implementation. -#include +#include #include "cln/input.h" #include "cln/real_io.h" #include "cln/float_io.h" diff --git a/src/float/input/cl_F_read.cc b/src/float/input/cl_F_read.cc index 43ae773..afa56bf 100644 --- a/src/float/input/cl_F_read.cc +++ b/src/float/input/cl_F_read.cc @@ -11,7 +11,7 @@ // Implementation. -#include +#include #include "cln/input.h" #include "cln/integer.h" #include "cl_I.h" diff --git a/src/float/output/cl_F_dprint.cc b/src/float/output/cl_F_dprint.cc index b50ef4b..4d5e6c7 100644 --- a/src/float/output/cl_F_dprint.cc +++ b/src/float/output/cl_F_dprint.cc @@ -30,7 +30,7 @@ CL_REQUIRE(cl_F_ln2_var) CL_REQUIRE(cl_F_ln10_var) -#include +#include #include "cln/output.h" #include "cl_sstring.h" #include "cln/float.h" diff --git a/src/integer/input/cl_I_read.cc b/src/integer/input/cl_I_read.cc index 893dbf7..4819953 100644 --- a/src/integer/input/cl_I_read.cc +++ b/src/integer/input/cl_I_read.cc @@ -11,7 +11,7 @@ // Implementation. -#include +#include #include "cln/input.h" #include "cln/integer.h" #include "cl_I.h" diff --git a/src/rational/input/cl_RA_read.cc b/src/rational/input/cl_RA_read.cc index 5bf2ac9..db0a544 100644 --- a/src/rational/input/cl_RA_read.cc +++ b/src/rational/input/cl_RA_read.cc @@ -12,7 +12,7 @@ // Implementation. -#include +#include #include "cln/input.h" #include "cln/integer.h" #include "cln/integer_io.h" diff --git a/src/real/format-output/cl_fmt_integer.cc b/src/real/format-output/cl_fmt_integer.cc index 5dc24cb..5446773 100644 --- a/src/real/format-output/cl_fmt_integer.cc +++ b/src/real/format-output/cl_fmt_integer.cc @@ -10,7 +10,7 @@ // Implementation. #include "cln/integer_io.h" -#include +#include #include "cl_I.h" namespace cln { diff --git a/src/real/format-output/cl_fmt_paddedstring.cc b/src/real/format-output/cl_fmt_paddedstring.cc index 43e41d8..1dd9879 100644 --- a/src/real/format-output/cl_fmt_paddedstring.cc +++ b/src/real/format-output/cl_fmt_paddedstring.cc @@ -9,7 +9,7 @@ // Implementation. -#include +#include namespace cln { diff --git a/src/real/input/cl_R_read.cc b/src/real/input/cl_R_read.cc index 5eaf8b5..0538f48 100644 --- a/src/real/input/cl_R_read.cc +++ b/src/real/input/cl_R_read.cc @@ -11,7 +11,7 @@ // Implementation. -#include +#include #include "cln/input.h" #include "cln/rational_io.h" #include "cln/integer_io.h" diff --git a/src/timing/cl_t_current.cc b/src/timing/cl_t_current.cc index de1cdc4..ee05dae 100644 --- a/src/timing/cl_t_current.cc +++ b/src/timing/cl_t_current.cc @@ -20,11 +20,11 @@ extern "C" int gettimeofday (struct timeval * tp, GETTIMEOFDAY_TZP_T tzp); #endif #else - #include + #include #endif #ifdef HAVE_PERROR_DECL - #include - #include + #include + #include #else extern "C" int perror (const char *); #endif diff --git a/src/timing/cl_t_current2.cc b/src/timing/cl_t_current2.cc index 6a86883..904a738 100644 --- a/src/timing/cl_t_current2.cc +++ b/src/timing/cl_t_current2.cc @@ -23,8 +23,8 @@ extern "C" clock_t times (struct tms * buffer); #endif #ifdef HAVE_PERROR_DECL - #include - #include + #include + #include #else extern "C" int perror (const char *); #endif diff --git a/tests/exam.cc b/tests/exam.cc index 683a631..ca1be02 100644 --- a/tests/exam.cc +++ b/tests/exam.cc @@ -1,4 +1,4 @@ -#include +#include #include #include diff --git a/tests/tests.cc b/tests/tests.cc index fdf9484..d13fd58 100644 --- a/tests/tests.cc +++ b/tests/tests.cc @@ -1,5 +1,5 @@ -#include -#include +#include +#include #include extern int test_I (int iterations); diff --git a/tests/timeLFRAmul.cc b/tests/timeLFRAmul.cc index 4191110..af6a41f 100644 --- a/tests/timeLFRAmul.cc +++ b/tests/timeLFRAmul.cc @@ -6,8 +6,8 @@ #include #include #include -#include -#include +#include +#include #include using namespace cln; diff --git a/tests/timeLFatan-compare.cc b/tests/timeLFatan-compare.cc index 38e4853..1f27540 100644 --- a/tests/timeLFatan-compare.cc +++ b/tests/timeLFatan-compare.cc @@ -5,8 +5,8 @@ #include "cl_LF.h" #include #include -#include -#include +#include +#include #include using namespace cln; diff --git a/tests/timeLFatan.cc b/tests/timeLFatan.cc index 81e231a..ee2ac78 100644 --- a/tests/timeLFatan.cc +++ b/tests/timeLFatan.cc @@ -6,8 +6,8 @@ #include "cl_LF.h" #include #include -#include -#include +#include +#include #include using namespace cln; diff --git a/tests/timeLFatanh-compare.cc b/tests/timeLFatanh-compare.cc index 03f45b4..fc6415d 100644 --- a/tests/timeLFatanh-compare.cc +++ b/tests/timeLFatanh-compare.cc @@ -6,8 +6,8 @@ #include #include #include -#include -#include +#include +#include #include int main (int argc, char * argv[]) diff --git a/tests/timeLFatanh.cc b/tests/timeLFatanh.cc index d502b6c..1d46238 100644 --- a/tests/timeLFatanh.cc +++ b/tests/timeLFatanh.cc @@ -7,8 +7,8 @@ #include #include #include -#include -#include +#include +#include #include using namespace cln; diff --git a/tests/timeLFcos-compare.cc b/tests/timeLFcos-compare.cc index 29e874c..aefbd56 100644 --- a/tests/timeLFcos-compare.cc +++ b/tests/timeLFcos-compare.cc @@ -5,8 +5,8 @@ #include "cl_LF.h" #include #include -#include -#include +#include +#include #include int main (int argc, char * argv[]) diff --git a/tests/timeLFcos.cc b/tests/timeLFcos.cc index 7d86421..1681351 100644 --- a/tests/timeLFcos.cc +++ b/tests/timeLFcos.cc @@ -6,8 +6,8 @@ #include "cl_LF.h" #include #include -#include -#include +#include +#include #include using namespace cln; diff --git a/tests/timeLFcosh.cc b/tests/timeLFcosh.cc index 1077a8d..9f346ca 100644 --- a/tests/timeLFcosh.cc +++ b/tests/timeLFcosh.cc @@ -6,8 +6,8 @@ #include "cl_LF.h" #include #include -#include -#include +#include +#include #include using namespace cln; diff --git a/tests/timeLFexp-compare.cc b/tests/timeLFexp-compare.cc index b35abdc..16fd06a 100644 --- a/tests/timeLFexp-compare.cc +++ b/tests/timeLFexp-compare.cc @@ -5,8 +5,8 @@ #include "cl_LF.h" #include #include -#include -#include +#include +#include #include int main (int argc, char * argv[]) diff --git a/tests/timeLFexp.cc b/tests/timeLFexp.cc index 60ac74c..18c6fab 100644 --- a/tests/timeLFexp.cc +++ b/tests/timeLFexp.cc @@ -6,8 +6,8 @@ #include "cl_LF.h" #include #include -#include -#include +#include +#include #include int main (int argc, char * argv[]) diff --git a/tests/timeLFln-compare.cc b/tests/timeLFln-compare.cc index 1753041..ba82b6d 100644 --- a/tests/timeLFln-compare.cc +++ b/tests/timeLFln-compare.cc @@ -5,8 +5,8 @@ #include "cl_LF.h" #include #include -#include -#include +#include +#include #include int main (int argc, char * argv[]) diff --git a/tests/timeLFln.cc b/tests/timeLFln.cc index 5d40f40..224258c 100644 --- a/tests/timeLFln.cc +++ b/tests/timeLFln.cc @@ -6,8 +6,8 @@ #include "cl_LF.h" #include #include -#include -#include +#include +#include #include int main (int argc, char * argv[]) diff --git a/tests/timeLFsin-compare.cc b/tests/timeLFsin-compare.cc index 6fb42c8..eda9b7d 100644 --- a/tests/timeLFsin-compare.cc +++ b/tests/timeLFsin-compare.cc @@ -5,8 +5,8 @@ #include "cl_LF.h" #include #include -#include -#include +#include +#include #include int main (int argc, char * argv[]) diff --git a/tests/timeLFsin.cc b/tests/timeLFsin.cc index cd7139a..2df7ab1 100644 --- a/tests/timeLFsin.cc +++ b/tests/timeLFsin.cc @@ -6,8 +6,8 @@ #include "cl_LF.h" #include #include -#include -#include +#include +#include #include using namespace cln; diff --git a/tests/timeLFsinh.cc b/tests/timeLFsinh.cc index 46ac3ea..c8f7170 100644 --- a/tests/timeLFsinh.cc +++ b/tests/timeLFsinh.cc @@ -6,8 +6,8 @@ #include "cl_LF.h" #include #include -#include -#include +#include +#include #include using namespace cln; diff --git a/tests/timeLFsqrt.cc b/tests/timeLFsqrt.cc index cd660ba..5ace735 100644 --- a/tests/timeLFsqrt.cc +++ b/tests/timeLFsqrt.cc @@ -6,8 +6,8 @@ #include "cl_LF.h" #include #include -#include -#include +#include +#include #include using namespace cln; diff --git a/tests/timeMImisc5.cc b/tests/timeMImisc5.cc index 03a373e..45baa0b 100644 --- a/tests/timeMImisc5.cc +++ b/tests/timeMImisc5.cc @@ -2,8 +2,8 @@ #include #include #include -#include -#include +#include +#include #include using namespace cln; diff --git a/tests/timeMIpow2div.cc b/tests/timeMIpow2div.cc index a57f733..5f4f805 100644 --- a/tests/timeMIpow2div.cc +++ b/tests/timeMIpow2div.cc @@ -2,8 +2,8 @@ #include #include #include -#include -#include +#include +#include #include using namespace cln; diff --git a/tests/timeMIpow2recip.cc b/tests/timeMIpow2recip.cc index dd9ce70..ca29194 100644 --- a/tests/timeMIpow2recip.cc +++ b/tests/timeMIpow2recip.cc @@ -2,8 +2,8 @@ #include #include #include -#include -#include +#include +#include #include using namespace cln; diff --git a/tests/timeRALFdiv.cc b/tests/timeRALFdiv.cc index 68d3621..74e79f8 100644 --- a/tests/timeRALFdiv.cc +++ b/tests/timeRALFdiv.cc @@ -6,8 +6,8 @@ #include #include #include -#include -#include +#include +#include #include using namespace cln; diff --git a/tests/timeRAtoLF.cc b/tests/timeRAtoLF.cc index 4d37d2d..2d56994 100644 --- a/tests/timeRAtoLF.cc +++ b/tests/timeRAtoLF.cc @@ -5,8 +5,8 @@ #include #include #include -#include -#include +#include +#include #include using namespace cln; diff --git a/tests/timeUPMImul.cc b/tests/timeUPMImul.cc index be900cd..272d618 100644 --- a/tests/timeUPMImul.cc +++ b/tests/timeUPMImul.cc @@ -3,8 +3,8 @@ #include #include #include -#include -#include +#include +#include #include using namespace cln; diff --git a/tests/timecatalan.cc b/tests/timecatalan.cc index da9b80a..a0cb822 100644 --- a/tests/timecatalan.cc +++ b/tests/timecatalan.cc @@ -3,8 +3,8 @@ #include #include #include -#include -#include +#include +#include #include #include "cl_LF.h" using namespace cln; diff --git a/tests/timediv.cc b/tests/timediv.cc index cbd6de3..1e35f7b 100644 --- a/tests/timediv.cc +++ b/tests/timediv.cc @@ -2,8 +2,8 @@ #include #include #include -#include -#include +#include +#include #include using namespace cln; diff --git a/tests/timediv2adic-compare.cc b/tests/timediv2adic-compare.cc index 84ff3f2..a87984a 100644 --- a/tests/timediv2adic-compare.cc +++ b/tests/timediv2adic-compare.cc @@ -6,8 +6,8 @@ #include #include "cl_random_impl.h" #include -#include -#include +#include +#include #include using namespace cln; diff --git a/tests/timediv2adic.cc b/tests/timediv2adic.cc index 4327c49..4f6896a 100644 --- a/tests/timediv2adic.cc +++ b/tests/timediv2adic.cc @@ -6,8 +6,8 @@ #include #include "cl_random_impl.h" #include -#include -#include +#include +#include #include using namespace cln; diff --git a/tests/timeeuler.cc b/tests/timeeuler.cc index cadc8a8..5d2633b 100644 --- a/tests/timeeuler.cc +++ b/tests/timeeuler.cc @@ -3,8 +3,8 @@ #include #include #include -#include -#include +#include +#include #include #include "cl_LF.h" using namespace cln; diff --git a/tests/timeexp1.cc b/tests/timeexp1.cc index 171d6c1..fac40e3 100644 --- a/tests/timeexp1.cc +++ b/tests/timeexp1.cc @@ -3,8 +3,8 @@ #include #include #include -#include -#include +#include +#include #include using namespace cln; diff --git a/tests/timefact.cc b/tests/timefact.cc index c7af4e0..20bdc7d 100644 --- a/tests/timefact.cc +++ b/tests/timefact.cc @@ -3,8 +3,8 @@ #include #include #include "cl_I.h" -#include -#include +#include +#include #include using namespace cln; diff --git a/tests/timegcd.cc b/tests/timegcd.cc index 324829b..916e373 100644 --- a/tests/timegcd.cc +++ b/tests/timegcd.cc @@ -2,8 +2,8 @@ #include #include #include -#include -#include +#include +#include #include using namespace cln; diff --git a/tests/timemul-compare.cc b/tests/timemul-compare.cc index b4586ee..71dc184 100644 --- a/tests/timemul-compare.cc +++ b/tests/timemul-compare.cc @@ -2,8 +2,8 @@ #include #include #include -#include -#include +#include +#include #include int main (int argc, char * argv[]) diff --git a/tests/timemul.cc b/tests/timemul.cc index b12e9ac..677b9e8 100644 --- a/tests/timemul.cc +++ b/tests/timemul.cc @@ -2,8 +2,8 @@ #include #include #include -#include -#include +#include +#include #include using namespace cln; diff --git a/tests/timepi.cc b/tests/timepi.cc index ff5850a..3889f64 100644 --- a/tests/timepi.cc +++ b/tests/timepi.cc @@ -4,8 +4,8 @@ #include #include #include -#include -#include +#include +#include #include using namespace std; diff --git a/tests/timeprint-compare.cc b/tests/timeprint-compare.cc index 7ef4441..a231c9c 100644 --- a/tests/timeprint-compare.cc +++ b/tests/timeprint-compare.cc @@ -2,8 +2,8 @@ #include #include #include -#include -#include +#include +#include #include #include #include diff --git a/tests/timeprint.cc b/tests/timeprint.cc index fb7b317..799872d 100644 --- a/tests/timeprint.cc +++ b/tests/timeprint.cc @@ -3,8 +3,8 @@ #include #include #include -#include -#include +#include +#include #include #include #include diff --git a/tests/timerecip2adic-compare.cc b/tests/timerecip2adic-compare.cc index b6f7364..6c6e9ef 100644 --- a/tests/timerecip2adic-compare.cc +++ b/tests/timerecip2adic-compare.cc @@ -6,8 +6,8 @@ #include #include "cl_random_impl.h" #include -#include -#include +#include +#include #include using namespace cln; diff --git a/tests/timerecip2adic.cc b/tests/timerecip2adic.cc index 361b22b..366f79b 100644 --- a/tests/timerecip2adic.cc +++ b/tests/timerecip2adic.cc @@ -5,8 +5,8 @@ #include "cl_2DS.h" #include #include "cl_random_impl.h" -#include -#include +#include +#include #include using namespace cln; diff --git a/tests/timesqrt.cc b/tests/timesqrt.cc index 7596a17..e8e8a97 100644 --- a/tests/timesqrt.cc +++ b/tests/timesqrt.cc @@ -2,8 +2,8 @@ #include #include #include -#include -#include +#include +#include #include using namespace cln; diff --git a/tests/timesqrtmodp.cc b/tests/timesqrtmodp.cc index a744ec4..c30b7bb 100644 --- a/tests/timesqrtmodp.cc +++ b/tests/timesqrtmodp.cc @@ -4,8 +4,8 @@ #include #include #include -#include -#include +#include +#include #include using namespace cln; diff --git a/tests/timesquare.cc b/tests/timesquare.cc index 000e0c3..f8bc979 100644 --- a/tests/timesquare.cc +++ b/tests/timesquare.cc @@ -2,8 +2,8 @@ #include #include #include -#include -#include +#include +#include #include using namespace cln; diff --git a/tests/timezeta3.cc b/tests/timezeta3.cc index 56baf77..b0f8608 100644 --- a/tests/timezeta3.cc +++ b/tests/timezeta3.cc @@ -2,8 +2,8 @@ #include #include #include -#include -#include +#include +#include #include #include "cl_LF.h" using namespace cln; -- 2.46.2