Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r73743 - in sandbox/e_float: boost/e_float libs/e_float/build libs/e_float/example libs/e_float/src/e_float libs/e_float/src/e_float/efx libs/e_float/src/e_float/gmp libs/e_float/src/e_float/mpfr libs/e_float/src/functions/constants libs/e_float/src/functions/elementary libs/e_float/src/functions/gamma libs/e_float/src/functions/integer libs/e_float/src/functions/tables libs/e_float/src/functions/zeta libs/e_float/src/generic_functions/constants libs/e_float/src/generic_functions/elementary libs/e_float/src/utility libs/e_float/test libs/e_float/test/imag/cases libs/e_float/test/linpack_test libs/e_float/test/linpack_test/libf2c/vc9/p4 libs/e_float/test/linpack_test/libf2c/vc9/x64 libs/e_float/test/real/cases libs/e_float/test/spot
From: e_float_at_[hidden]
Date: 2011-08-14 12:20:05


Author: christopher_kormanyos
Date: 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
New Revision: 73743
URL: http://svn.boost.org/trac/boost/changeset/73743

Log:
- Changed include directory for future consistency with boost.
- Added LINPACK test stuff for GMP's native mpf_class.
Binary files modified:
   sandbox/e_float/libs/e_float/test/linpack_test/libf2c/vc9/p4/libf2c.lib
   sandbox/e_float/libs/e_float/test/linpack_test/libf2c/vc9/x64/libf2c.lib
Text files modified:
   sandbox/e_float/boost/e_float/e_float.hpp | 10 +++---
   sandbox/e_float/boost/e_float/e_float_base.hpp | 2
   sandbox/e_float/boost/e_float/e_float_complex.hpp | 2
   sandbox/e_float/boost/e_float/e_float_constants.hpp | 2
   sandbox/e_float/boost/e_float/e_float_efx.hpp | 2
   sandbox/e_float/boost/e_float/e_float_elementary.hpp | 6 +-
   sandbox/e_float/boost/e_float/e_float_elementary_complex.hpp | 2
   sandbox/e_float/boost/e_float/e_float_functions.hpp | 14 ++++----
   sandbox/e_float/boost/e_float/e_float_gamma.hpp | 2
   sandbox/e_float/boost/e_float/e_float_gmp.hpp | 2
   sandbox/e_float/boost/e_float/e_float_integer.hpp | 2
   sandbox/e_float/boost/e_float/e_float_mpfr.hpp | 2
   sandbox/e_float/boost/e_float/e_float_prime.hpp | 2
   sandbox/e_float/boost/e_float/e_float_zeta.hpp | 4 +-
   sandbox/e_float/libs/e_float/build/e_float.vcxproj | 38 ++++++++++++++++-------
   sandbox/e_float/libs/e_float/build/e_float.vcxproj.filters | 9 +++++
   sandbox/e_float/libs/e_float/example/example_001_basic_usage_real.cpp | 4 +-
   sandbox/e_float/libs/e_float/example/example_002_basic_usage_imag.cpp | 4 +-
   sandbox/e_float/libs/e_float/example/example_005_recursive_trapezoid_integral.cpp | 4 +-
   sandbox/e_float/libs/e_float/example/example_008_gauss_laguerre.cpp | 4 +-
   sandbox/e_float/libs/e_float/example/examples.h | 4 +-
   sandbox/e_float/libs/e_float/src/e_float/e_float.cpp | 2
   sandbox/e_float/libs/e_float/src/e_float/e_float_base.cpp | 2
   sandbox/e_float/libs/e_float/src/e_float/efx/e_float_efx.cpp | 6 +-
   sandbox/e_float/libs/e_float/src/e_float/gmp/e_float_gmp.cpp | 6 +-
   sandbox/e_float/libs/e_float/src/e_float/mpfr/e_float_mpfr.cpp | 6 +-
   sandbox/e_float/libs/e_float/src/functions/constants/constants.cpp | 6 +-
   sandbox/e_float/libs/e_float/src/functions/elementary/elementary_complex.cpp | 10 +++---
   sandbox/e_float/libs/e_float/src/functions/elementary/elementary_hyper_g.cpp | 6 +-
   sandbox/e_float/libs/e_float/src/functions/elementary/elementary_math.cpp | 4 +-
   sandbox/e_float/libs/e_float/src/functions/elementary/elementary_trans.cpp | 6 +-
   sandbox/e_float/libs/e_float/src/functions/elementary/elementary_trig.cpp | 6 +-
   sandbox/e_float/libs/e_float/src/functions/gamma/factorial.cpp | 8 ++--
   sandbox/e_float/libs/e_float/src/functions/gamma/factorial2.cpp | 6 +-
   sandbox/e_float/libs/e_float/src/functions/gamma/gamma.cpp | 10 +++---
   sandbox/e_float/libs/e_float/src/functions/gamma/gamma_util.cpp | 8 ++--
   sandbox/e_float/libs/e_float/src/functions/gamma/gamma_util.h | 2
   sandbox/e_float/libs/e_float/src/functions/gamma/pochhammer.cpp | 6 +-
   sandbox/e_float/libs/e_float/src/functions/integer/bernoulli_b.cpp | 10 +++---
   sandbox/e_float/libs/e_float/src/functions/integer/prime.cpp | 2
   sandbox/e_float/libs/e_float/src/functions/integer/prime_factor.cpp | 2
   sandbox/e_float/libs/e_float/src/functions/tables/tables.h | 2
   sandbox/e_float/libs/e_float/src/functions/zeta/zeta.cpp | 16 ++++----
   sandbox/e_float/libs/e_float/src/generic_functions/constants/generic_functions_constants.h | 2
   sandbox/e_float/libs/e_float/src/generic_functions/elementary/generic_functions_elementary.h | 2
   sandbox/e_float/libs/e_float/src/utility/util_digit_scale.cpp | 2
   sandbox/e_float/libs/e_float/src/utility/util_find_root_bisect.h | 2
   sandbox/e_float/libs/e_float/src/utility/util_power_j_pow_x.cpp | 8 ++--
   sandbox/e_float/libs/e_float/src/utility/util_power_j_pow_x.h | 2
   sandbox/e_float/libs/e_float/test/imag/cases/test_case_02101_z_sin.cpp | 2
   sandbox/e_float/libs/e_float/test/imag/cases/test_case_02102_z_cos.cpp | 2
   sandbox/e_float/libs/e_float/test/imag/cases/test_case_02103_z_exp.cpp | 2
   sandbox/e_float/libs/e_float/test/imag/cases/test_case_02104_z_log.cpp | 2
   sandbox/e_float/libs/e_float/test/imag/cases/test_case_02105_z_sqrt.cpp | 2
   sandbox/e_float/libs/e_float/test/imag/cases/test_case_02106_z_rootn.cpp | 2
   sandbox/e_float/libs/e_float/test/imag/cases/test_case_02111_z_asin.cpp | 2
   sandbox/e_float/libs/e_float/test/imag/cases/test_case_02112_z_acos.cpp | 2
   sandbox/e_float/libs/e_float/test/imag/cases/test_case_02113_z_atan.cpp | 2
   sandbox/e_float/libs/e_float/test/imag/cases/test_case_02114_z_various_trig.cpp | 2
   sandbox/e_float/libs/e_float/test/imag/cases/test_case_02115_z_various_elem_trans_log.cpp | 2
   sandbox/e_float/libs/e_float/test/imag/cases/test_case_02116_z_various_elem.cpp | 2
   sandbox/e_float/libs/e_float/test/imag/cases/test_case_02121_z_sinh.cpp | 2
   sandbox/e_float/libs/e_float/test/imag/cases/test_case_02122_z_cosh.cpp | 2
   sandbox/e_float/libs/e_float/test/imag/cases/test_case_02123_z_tanh.cpp | 2
   sandbox/e_float/libs/e_float/test/imag/cases/test_case_02124_z_asinh.cpp | 2
   sandbox/e_float/libs/e_float/test/imag/cases/test_case_02125_z_acosh.cpp | 2
   sandbox/e_float/libs/e_float/test/imag/cases/test_case_02126_z_atanh.cpp | 2
   sandbox/e_float/libs/e_float/test/imag/cases/test_case_02201_z_gamma.cpp | 2
   sandbox/e_float/libs/e_float/test/imag/cases/test_case_02202_z_gamma_medium_x.cpp | 2
   sandbox/e_float/libs/e_float/test/imag/cases/test_case_02901_z_zeta_small_x.cpp | 2
   sandbox/e_float/libs/e_float/test/imag/cases/test_case_02902_z_zeta_all_x.cpp | 2
   sandbox/e_float/libs/e_float/test/imag/cases/test_case_02903_z_zeta_neg_x.cpp | 2
   sandbox/e_float/libs/e_float/test/imag/cases/test_case_02911_z_zeta_crit_strip.cpp | 2
   sandbox/e_float/libs/e_float/test/linpack_test/linpack-benchmark.cpp | 65 +++++++++++++++++++++------------------
   sandbox/e_float/libs/e_float/test/real/cases/test_case_0000x_overflow_underflow.cpp | 2
   sandbox/e_float/libs/e_float/test/real/cases/test_case_0000y_write_to_ostream.cpp | 2
   sandbox/e_float/libs/e_float/test/real/cases/test_case_0000z_global_ops_pod.cpp | 4 +-
   sandbox/e_float/libs/e_float/test/real/cases/test_case_00011_various_elem_math.cpp | 2
   sandbox/e_float/libs/e_float/test/real/cases/test_case_00021_bernoulli.cpp | 2
   sandbox/e_float/libs/e_float/test/real/cases/test_case_00051_factorial.cpp | 2
   sandbox/e_float/libs/e_float/test/real/cases/test_case_00052_factorial2.cpp | 2
   sandbox/e_float/libs/e_float/test/real/cases/test_case_00071_various_int_func.cpp | 2
   sandbox/e_float/libs/e_float/test/real/cases/test_case_00101_sin.cpp | 2
   sandbox/e_float/libs/e_float/test/real/cases/test_case_00102_cos.cpp | 2
   sandbox/e_float/libs/e_float/test/real/cases/test_case_00103_exp.cpp | 2
   sandbox/e_float/libs/e_float/test/real/cases/test_case_00104_log.cpp | 2
   sandbox/e_float/libs/e_float/test/real/cases/test_case_00105_sqrt.cpp | 2
   sandbox/e_float/libs/e_float/test/real/cases/test_case_00106_rootn.cpp | 2
   sandbox/e_float/libs/e_float/test/real/cases/test_case_00111_sin_small_x.cpp | 2
   sandbox/e_float/libs/e_float/test/real/cases/test_case_00112_cos_x_near_pi_half.cpp | 2
   sandbox/e_float/libs/e_float/test/real/cases/test_case_00113_atan_x_small_to_large.cpp | 2
   sandbox/e_float/libs/e_float/test/real/cases/test_case_00114_various_trig.cpp | 2
   sandbox/e_float/libs/e_float/test/real/cases/test_case_00115_various_elem_trans.cpp | 2
   sandbox/e_float/libs/e_float/test/real/cases/test_case_00121_sinh.cpp | 2
   sandbox/e_float/libs/e_float/test/real/cases/test_case_00122_cosh.cpp | 2
   sandbox/e_float/libs/e_float/test/real/cases/test_case_00123_tanh.cpp | 2
   sandbox/e_float/libs/e_float/test/real/cases/test_case_00124_asinh.cpp | 2
   sandbox/e_float/libs/e_float/test/real/cases/test_case_00125_acosh.cpp | 2
   sandbox/e_float/libs/e_float/test/real/cases/test_case_00126_atanh.cpp | 2
   sandbox/e_float/libs/e_float/test/real/cases/test_case_00201_gamma.cpp | 2
   sandbox/e_float/libs/e_float/test/real/cases/test_case_00202_gamma_medium_x.cpp | 2
   sandbox/e_float/libs/e_float/test/real/cases/test_case_00203_gamma_small_x.cpp | 2
   sandbox/e_float/libs/e_float/test/real/cases/test_case_00204_gamma_tiny_x.cpp | 2
   sandbox/e_float/libs/e_float/test/real/cases/test_case_00205_gamma_near_neg_n.cpp | 2
   sandbox/e_float/libs/e_float/test/real/cases/test_case_00221_various_gamma_func.cpp | 2
   sandbox/e_float/libs/e_float/test/real/cases/test_case_00901_zeta_small_x.cpp | 2
   sandbox/e_float/libs/e_float/test/real/cases/test_case_00902_zeta_all_x.cpp | 2
   sandbox/e_float/libs/e_float/test/real/cases/test_case_00903_zeta_neg_x.cpp | 2
   sandbox/e_float/libs/e_float/test/spot/test_spot.cpp | 4 +-
   sandbox/e_float/libs/e_float/test/test_case_base.cpp | 4 +-
   sandbox/e_float/libs/e_float/test/test_case_base.h | 2
   111 files changed, 246 insertions(+), 218 deletions(-)

Modified: sandbox/e_float/boost/e_float/e_float.hpp
==============================================================================
--- sandbox/e_float/boost/e_float/e_float.hpp (original)
+++ sandbox/e_float/boost/e_float/e_float.hpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -16,16 +16,16 @@
   // as a compiler defined preprocessor macro.
 
   #if defined(E_FLOAT_TYPE_EFX)
- #include <e_float/e_float_efx.hpp>
+ #include <boost/e_float/e_float_efx.hpp>
   #elif defined(E_FLOAT_TYPE_GMP)
- #include <e_float/e_float_gmp.hpp>
+ #include <boost/e_float/e_float_gmp.hpp>
   #elif defined(E_FLOAT_TYPE_MPFR)
- #include <e_float/e_float_mpfr.hpp>
+ #include <boost/e_float/e_float_mpfr.hpp>
   #else
     #error e_float type undefined!
   #endif
 
- #include <e_float/e_float_global_math.hpp>
- #include <e_float/e_float_limits.hpp>
+ #include <boost/e_float/e_float_global_math.hpp>
+ #include <boost/e_float/e_float_limits.hpp>
 
 #endif // _E_FLOAT_HPP_

Modified: sandbox/e_float/boost/e_float/e_float_base.hpp
==============================================================================
--- sandbox/e_float/boost/e_float/e_float_base.hpp (original)
+++ sandbox/e_float/boost/e_float/e_float_base.hpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -22,7 +22,7 @@
   #include <string>
   #include <cmath>
 
- #include <e_float/e_float_types.hpp>
+ #include <boost/e_float/e_float_types.hpp>
 
   // Select the number of decimal digits in e_float
   // by setting the value of E_FLOAT_DIGITS10.

Modified: sandbox/e_float/boost/e_float/e_float_complex.hpp
==============================================================================
--- sandbox/e_float/boost/e_float/e_float_complex.hpp (original)
+++ sandbox/e_float/boost/e_float/e_float_complex.hpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -11,7 +11,7 @@
 #ifndef _E_FLOAT_COMPLEX_HPP_
   #define _E_FLOAT_COMPLEX_HPP_
 
- #include <e_float/e_float.hpp>
+ #include <boost/e_float/e_float.hpp>
 
   // A separate complex class for e_float has been created. Even though
   // a generic template class std::complex<T> exists, the C++ specification

Modified: sandbox/e_float/boost/e_float/e_float_constants.hpp
==============================================================================
--- sandbox/e_float/boost/e_float/e_float_constants.hpp (original)
+++ sandbox/e_float/boost/e_float/e_float_constants.hpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -11,7 +11,7 @@
 #ifndef _E_FLOAT_CONSTANTS_HPP_
   #define _E_FLOAT_CONSTANTS_HPP_
 
- #include <e_float/e_float.hpp>
+ #include <boost/e_float/e_float.hpp>
 
   namespace ef
   {

Modified: sandbox/e_float/boost/e_float/e_float_efx.hpp
==============================================================================
--- sandbox/e_float/boost/e_float/e_float_efx.hpp (original)
+++ sandbox/e_float/boost/e_float/e_float_efx.hpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -18,7 +18,7 @@
   #include <cmath>
   #include <string>
 
- #include <e_float/e_float_base.hpp>
+ #include <boost/e_float/e_float_base.hpp>
 
   namespace efx
   {

Modified: sandbox/e_float/boost/e_float/e_float_elementary.hpp
==============================================================================
--- sandbox/e_float/boost/e_float/e_float_elementary.hpp (original)
+++ sandbox/e_float/boost/e_float/e_float_elementary.hpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -11,8 +11,8 @@
 #ifndef _E_FLOAT_ELEMENTARY_HPP_
   #define _E_FLOAT_ELEMENTARY_HPP_
 
- #include <e_float/e_float_elementary_complex.hpp>
- #include <e_float/e_float_elementary_math.hpp>
- #include <e_float/e_float_elementary_trans.hpp>
+ #include <boost/e_float/e_float_elementary_complex.hpp>
+ #include <boost/e_float/e_float_elementary_math.hpp>
+ #include <boost/e_float/e_float_elementary_trans.hpp>
 
 #endif // _E_FLOAT_ELEMENTARY_HPP_

Modified: sandbox/e_float/boost/e_float/e_float_elementary_complex.hpp
==============================================================================
--- sandbox/e_float/boost/e_float/e_float_elementary_complex.hpp (original)
+++ sandbox/e_float/boost/e_float/e_float_elementary_complex.hpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -13,7 +13,7 @@
 
   #include <complex>
 
- #include <e_float/e_float_complex.hpp>
+ #include <boost/e_float/e_float_complex.hpp>
 
   namespace efz
   {

Modified: sandbox/e_float/boost/e_float/e_float_functions.hpp
==============================================================================
--- sandbox/e_float/boost/e_float/e_float_functions.hpp (original)
+++ sandbox/e_float/boost/e_float/e_float_functions.hpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -11,12 +11,12 @@
 #ifndef _E_FLOAT_FUNCTIONS_HPP_
   #define _E_FLOAT_FUNCTIONS_HPP_
 
- #include <e_float/e_float_complex.hpp>
- #include <e_float/e_float_constants.hpp>
- #include <e_float/e_float_integer.hpp>
- #include <e_float/e_float_prime.hpp>
- #include <e_float/e_float_elementary.hpp>
- #include <e_float/e_float_gamma.hpp>
- #include <e_float/e_float_zeta.hpp>
+ #include <boost/e_float/e_float_complex.hpp>
+ #include <boost/e_float/e_float_constants.hpp>
+ #include <boost/e_float/e_float_integer.hpp>
+ #include <boost/e_float/e_float_prime.hpp>
+ #include <boost/e_float/e_float_elementary.hpp>
+ #include <boost/e_float/e_float_gamma.hpp>
+ #include <boost/e_float/e_float_zeta.hpp>
 
 #endif // _E_FLOAT_FUNCTIONS_HPP_

Modified: sandbox/e_float/boost/e_float/e_float_gamma.hpp
==============================================================================
--- sandbox/e_float/boost/e_float/e_float_gamma.hpp (original)
+++ sandbox/e_float/boost/e_float/e_float_gamma.hpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -11,7 +11,7 @@
 #ifndef _E_FLOAT_GAMMA_HPP_
   #define _E_FLOAT_GAMMA_HPP_
 
- #include <e_float/e_float_complex.hpp>
+ #include <boost/e_float/e_float_complex.hpp>
 
   namespace ef
   {

Modified: sandbox/e_float/boost/e_float/e_float_gmp.hpp
==============================================================================
--- sandbox/e_float/boost/e_float/e_float_gmp.hpp (original)
+++ sandbox/e_float/boost/e_float/e_float_gmp.hpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -30,7 +30,7 @@
     #include <array>
   #endif
 
- #include <e_float/e_float_base.hpp>
+ #include <boost/e_float/e_float_base.hpp>
 
   // Declare the types of GMP.
   extern "C"

Modified: sandbox/e_float/boost/e_float/e_float_integer.hpp
==============================================================================
--- sandbox/e_float/boost/e_float/e_float_integer.hpp (original)
+++ sandbox/e_float/boost/e_float/e_float_integer.hpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -13,7 +13,7 @@
 
   #include <vector>
 
- #include <e_float/e_float.hpp>
+ #include <boost/e_float/e_float.hpp>
 
   namespace ef
   {

Modified: sandbox/e_float/boost/e_float/e_float_mpfr.hpp
==============================================================================
--- sandbox/e_float/boost/e_float/e_float_mpfr.hpp (original)
+++ sandbox/e_float/boost/e_float/e_float_mpfr.hpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -21,7 +21,7 @@
     #include <array>
   #endif
 
- #include <e_float/e_float_base.hpp>
+ #include <boost/e_float/e_float_base.hpp>
 
   // Declare the types of MPFR.
   extern "C"

Modified: sandbox/e_float/boost/e_float/e_float_prime.hpp
==============================================================================
--- sandbox/e_float/boost/e_float/e_float_prime.hpp (original)
+++ sandbox/e_float/boost/e_float/e_float_prime.hpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -13,7 +13,7 @@
 
   #include <deque>
 
- #include <e_float/e_float.hpp>
+ #include <boost/e_float/e_float.hpp>
 
   namespace ef
   {

Modified: sandbox/e_float/boost/e_float/e_float_zeta.hpp
==============================================================================
--- sandbox/e_float/boost/e_float/e_float_zeta.hpp (original)
+++ sandbox/e_float/boost/e_float/e_float_zeta.hpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -11,8 +11,8 @@
 #ifndef _E_FLOAT_ZETA_HPP_
   #define _E_FLOAT_ZETA_HPP_
 
- #include <e_float/e_float.hpp>
- #include <e_float/e_float_complex.hpp>
+ #include <boost/e_float/e_float.hpp>
+ #include <boost/e_float/e_float_complex.hpp>
 
   namespace ef
   {

Modified: sandbox/e_float/libs/e_float/build/e_float.vcxproj
==============================================================================
--- sandbox/e_float/libs/e_float/build/e_float.vcxproj (original)
+++ sandbox/e_float/libs/e_float/build/e_float.vcxproj 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -241,7 +241,7 @@
       <Optimization>MaxSpeed</Optimization>
       <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
       <FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
- <AdditionalIncludeDirectories>$(SolutionDir)..\..\..\boost;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+ <AdditionalIncludeDirectories>$(SolutionDir)../../../;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
       <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;E_FLOAT_TYPE_GMP;_SECURE_SCL=0;%(PreprocessorDefinitions)</PreprocessorDefinitions>
       <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
       <PrecompiledHeader>
@@ -284,7 +284,7 @@
       <Optimization>MaxSpeed</Optimization>
       <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
       <FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
- <AdditionalIncludeDirectories>$(SolutionDir)..\..\..\boost;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+ <AdditionalIncludeDirectories>$(SolutionDir)../../../;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
       <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;E_FLOAT_TYPE_GMP;_SECURE_SCL=0;%(PreprocessorDefinitions)</PreprocessorDefinitions>
       <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
       <PrecompiledHeader>
@@ -326,7 +326,7 @@
       <Optimization>MaxSpeed</Optimization>
       <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
       <FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
- <AdditionalIncludeDirectories>$(SolutionDir)..\..\..\boost;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+ <AdditionalIncludeDirectories>$(SolutionDir)../../../;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
       <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;E_FLOAT_TYPE_EFX;_SECURE_SCL=0;%(PreprocessorDefinitions)</PreprocessorDefinitions>
       <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
       <PrecompiledHeader>
@@ -368,7 +368,7 @@
       <Optimization>MaxSpeed</Optimization>
       <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
       <FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
- <AdditionalIncludeDirectories>$(SolutionDir)..\..\..\boost;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+ <AdditionalIncludeDirectories>$(SolutionDir)../../../;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
       <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;E_FLOAT_TYPE_EFX;_SECURE_SCL= 0;%(PreprocessorDefinitions)</PreprocessorDefinitions>
       <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
       <PrecompiledHeader>
@@ -408,7 +408,7 @@
     </Midl>
     <ClCompile>
       <Optimization>Disabled</Optimization>
- <AdditionalIncludeDirectories>$(SolutionDir)..\..\..\boost;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+ <AdditionalIncludeDirectories>$(SolutionDir)../../../;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
       <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;E_FLOAT_TYPE_GMP;%(PreprocessorDefinitions)</PreprocessorDefinitions>
       <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
       <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
@@ -455,7 +455,7 @@
     </Midl>
     <ClCompile>
       <Optimization>Disabled</Optimization>
- <AdditionalIncludeDirectories>$(SolutionDir)..\..\..\boost;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+ <AdditionalIncludeDirectories>$(SolutionDir)../../../;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
       <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;E_FLOAT_TYPE_GMP;%(PreprocessorDefinitions)</PreprocessorDefinitions>
       <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
       <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
@@ -501,7 +501,7 @@
     </Midl>
     <ClCompile>
       <Optimization>Disabled</Optimization>
- <AdditionalIncludeDirectories>$(SolutionDir)..\..\..\boost;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+ <AdditionalIncludeDirectories>$(SolutionDir)../../../;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
       <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;E_FLOAT_TYPE_EFX;%(PreprocessorDefinitions)</PreprocessorDefinitions>
       <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
       <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
@@ -546,7 +546,7 @@
     </Midl>
     <ClCompile>
       <Optimization>Disabled</Optimization>
- <AdditionalIncludeDirectories>$(SolutionDir)..\..\..\boost;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+ <AdditionalIncludeDirectories>$(SolutionDir)../../../;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
       <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;E_FLOAT_TYPE_EFX;%(PreprocessorDefinitions)</PreprocessorDefinitions>
       <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
       <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
@@ -592,7 +592,7 @@
       <Optimization>MaxSpeed</Optimization>
       <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
       <FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
- <AdditionalIncludeDirectories>$(SolutionDir)..\..\..\boost;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+ <AdditionalIncludeDirectories>$(SolutionDir)../../../;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
       <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;E_FLOAT_TYPE_MPFR;_SECURE_SCL=0;%(PreprocessorDefinitions)</PreprocessorDefinitions>
       <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
       <PrecompiledHeader>
@@ -635,7 +635,7 @@
       <Optimization>MaxSpeed</Optimization>
       <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
       <FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
- <AdditionalIncludeDirectories>$(SolutionDir)..\..\..\boost;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+ <AdditionalIncludeDirectories>$(SolutionDir)../../../;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
       <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;E_FLOAT_TYPE_MPFR;_SECURE_SCL=0;%(PreprocessorDefinitions)</PreprocessorDefinitions>
       <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
       <PrecompiledHeader>
@@ -675,7 +675,7 @@
     </Midl>
     <ClCompile>
       <Optimization>Disabled</Optimization>
- <AdditionalIncludeDirectories>$(SolutionDir)..\..\..\boost;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+ <AdditionalIncludeDirectories>$(SolutionDir)../../../;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
       <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;E_FLOAT_TYPE_MPFR;%(PreprocessorDefinitions)</PreprocessorDefinitions>
       <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
       <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
@@ -723,7 +723,7 @@
     </Midl>
     <ClCompile>
       <Optimization>Disabled</Optimization>
- <AdditionalIncludeDirectories>$(SolutionDir)..\..\..\boost;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+ <AdditionalIncludeDirectories>$(SolutionDir)../../../;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
       <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;E_FLOAT_TYPE_MPFR;%(PreprocessorDefinitions)</PreprocessorDefinitions>
       <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
       <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
@@ -1035,6 +1035,18 @@
     <ClCompile Include="..\test\imag\cases\test_case_02911_z_zeta_crit_strip.cpp" />
     <ClCompile Include="..\test\imag\test_imag.cpp" />
     <ClCompile Include="..\test\linpack_test\linpack-benchmark.cpp">
+ <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='release-gmp|x64'">C:\boost\boost_1_47;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+ <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='release-mpfr|x64'">C:\boost\boost_1_47;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+ <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='debug-efx|Win32'">C:\boost\boost_1_47;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+ <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='debug-gmp|Win32'">C:\boost\boost_1_47;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+ <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='debug-mpfr|Win32'">C:\boost\boost_1_47;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+ <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='release-efx|Win32'">C:\boost\boost_1_47;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+ <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='release-gmp|Win32'">C:\boost\boost_1_47;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+ <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='release-mpfr|Win32'">C:\boost\boost_1_47;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+ <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='debug-efx|x64'">C:\boost\boost_1_47;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+ <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='debug-gmp|x64'">C:\boost\boost_1_47;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+ <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='debug-mpfr|x64'">C:\boost\boost_1_47;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+ <AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='release-efx|x64'">C:\boost\boost_1_47;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='debug-efx|Win32'">true</ExcludedFromBuild>
       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='debug-gmp|Win32'">true</ExcludedFromBuild>
       <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='debug-mpfr|Win32'">true</ExcludedFromBuild>
@@ -1123,6 +1135,8 @@
     <ClInclude Include="..\src\functions\integer\prime_factors.h" />
     <ClInclude Include="..\test\imag\test_case_imag.h" />
     <ClInclude Include="..\test\imag\test_imag.h" />
+ <ClInclude Include="..\test\linpack_test\gmp\gmp.h" />
+ <ClInclude Include="..\test\linpack_test\gmp\gmpxx.h" />
     <ClInclude Include="..\test\linpack_test\libf2c\f2c.h" />
     <ClInclude Include="..\test\real\test_case_real.h" />
     <ClInclude Include="..\test\real\test_real.h" />

Modified: sandbox/e_float/libs/e_float/build/e_float.vcxproj.filters
==============================================================================
--- sandbox/e_float/libs/e_float/build/e_float.vcxproj.filters (original)
+++ sandbox/e_float/libs/e_float/build/e_float.vcxproj.filters 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -101,6 +101,9 @@
     <Filter Include="libs\e_float\test\linpack_test\libf2c">
       <UniqueIdentifier>{73700a00-2458-408c-a554-8352b1fcf152}</UniqueIdentifier>
     </Filter>
+ <Filter Include="libs\e_float\test\linpack_test\gmp">
+ <UniqueIdentifier>{8ed1a5cd-3ea1-4fc5-b19d-1ad9517e07d2}</UniqueIdentifier>
+ </Filter>
   </ItemGroup>
   <ItemGroup>
     <ClCompile Include="..\src\e_float\e_float.cpp">
@@ -549,6 +552,12 @@
     <ClInclude Include="..\test\linpack_test\libf2c\f2c.h">
       <Filter>libs\e_float\test\linpack_test\libf2c</Filter>
     </ClInclude>
+ <ClInclude Include="..\test\linpack_test\gmp\gmp.h">
+ <Filter>libs\e_float\test\linpack_test\gmp</Filter>
+ </ClInclude>
+ <ClInclude Include="..\test\linpack_test\gmp\gmpxx.h">
+ <Filter>libs\e_float\test\linpack_test\gmp</Filter>
+ </ClInclude>
   </ItemGroup>
   <ItemGroup>
     <CustomBuildStep Include="..\src\e_float\gmp\e_float_gmp_protos.h">

Modified: sandbox/e_float/libs/e_float/example/example_001_basic_usage_real.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/example/example_001_basic_usage_real.cpp (original)
+++ sandbox/e_float/libs/e_float/example/example_001_basic_usage_real.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -13,8 +13,8 @@
 #include <algorithm>
 #include <iterator>
 
-#include <e_float/e_float.hpp>
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "examples.h"
 #include "../src/utility/util_timer.h"
 

Modified: sandbox/e_float/libs/e_float/example/example_002_basic_usage_imag.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/example/example_002_basic_usage_imag.cpp (original)
+++ sandbox/e_float/libs/e_float/example/example_002_basic_usage_imag.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -13,8 +13,8 @@
 #include <algorithm>
 #include <iterator>
 
-#include <e_float/e_float.hpp>
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 
 #include "examples.h"
 #include "../src/utility/util_timer.h"

Modified: sandbox/e_float/libs/e_float/example/example_005_recursive_trapezoid_integral.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/example/example_005_recursive_trapezoid_integral.cpp (original)
+++ sandbox/e_float/libs/e_float/example/example_005_recursive_trapezoid_integral.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -8,8 +8,8 @@
 // "Algorithm 910: A Portable C++ Multiple-Precision System for Special-Function Calculations",
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
-#include <e_float/e_float.hpp>
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 
 #include "examples.h"
 #include "../src/utility/util_lexical_cast.h"

Modified: sandbox/e_float/libs/e_float/example/example_008_gauss_laguerre.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/example/example_008_gauss_laguerre.cpp (original)
+++ sandbox/e_float/libs/e_float/example/example_008_gauss_laguerre.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -10,8 +10,8 @@
 
 #include <vector>
 
-#include <e_float/e_float.hpp>
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 
 #include "examples.h"
 #include "../src/utility/util_digit_scale.h"

Modified: sandbox/e_float/libs/e_float/example/examples.h
==============================================================================
--- sandbox/e_float/libs/e_float/example/examples.h (original)
+++ sandbox/e_float/libs/e_float/example/examples.h 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -11,8 +11,8 @@
 #ifndef _EXAMPLES_2010_01_02_H_
   #define _EXAMPLES_2010_01_02_H_
 
- #include <e_float/e_float.hpp>
- #include <e_float/e_float_complex.hpp>
+ #include <boost/e_float/e_float.hpp>
+ #include <boost/e_float/e_float_complex.hpp>
 
   namespace examples
   {

Modified: sandbox/e_float/libs/e_float/src/e_float/e_float.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/src/e_float/e_float.cpp (original)
+++ sandbox/e_float/libs/e_float/src/e_float/e_float.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -8,7 +8,7 @@
 // "Algorithm 910: A Portable C++ Multiple-Precision System for Special-Function Calculations",
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
-#include <e_float/e_float.hpp>
+#include <boost/e_float/e_float.hpp>
 #include "../utility/util_lexical_cast.h"
 
 const e_float& ef::value_nan(void) { static const e_float val = e_float().my_value_nan(); return val; }

Modified: sandbox/e_float/libs/e_float/src/e_float/e_float_base.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/src/e_float/e_float_base.cpp (original)
+++ sandbox/e_float/libs/e_float/src/e_float/e_float_base.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -10,7 +10,7 @@
 
 #include <algorithm>
 
-#include <e_float/e_float.hpp>
+#include <boost/e_float/e_float.hpp>
 #include "../utility/util_lexical_cast.h"
 
 namespace

Modified: sandbox/e_float/libs/e_float/src/e_float/efx/e_float_efx.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/src/e_float/efx/e_float_efx.cpp (original)
+++ sandbox/e_float/libs/e_float/src/e_float/efx/e_float_efx.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -25,9 +25,9 @@
 #include <cmath>
 #include <utility>
 
-#include <e_float/e_float.hpp>
-#include <e_float/e_float_constants.hpp>
-#include <e_float/e_float_elementary.hpp>
+#include <boost/e_float/e_float.hpp>
+#include <boost/e_float/e_float_constants.hpp>
+#include <boost/e_float/e_float_elementary.hpp>
 
 #include "../../utility/util_lexical_cast.h"
 #include "../../utility/util_numeric_cast.h"

Modified: sandbox/e_float/libs/e_float/src/e_float/gmp/e_float_gmp.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/src/e_float/gmp/e_float_gmp.cpp (original)
+++ sandbox/e_float/libs/e_float/src/e_float/gmp/e_float_gmp.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -14,9 +14,9 @@
 #include <algorithm>
 #include <cfloat>
 
-#include <e_float/e_float.hpp>
-#include <e_float/e_float_constants.hpp>
-#include <e_float/e_float_elementary.hpp>
+#include <boost/e_float/e_float.hpp>
+#include <boost/e_float/e_float_constants.hpp>
+#include <boost/e_float/e_float_elementary.hpp>
 
 #include "e_float_gmp_protos.h"
 #include "../../utility/util_lexical_cast.h"

Modified: sandbox/e_float/libs/e_float/src/e_float/mpfr/e_float_mpfr.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/src/e_float/mpfr/e_float_mpfr.cpp (original)
+++ sandbox/e_float/libs/e_float/src/e_float/mpfr/e_float_mpfr.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -13,9 +13,9 @@
 #include <cstdio>
 #include <cstdarg>
 
-#include <e_float/e_float.hpp>
-#include <e_float/e_float_constants.hpp>
-#include <e_float/e_float_elementary.hpp>
+#include <boost/e_float/e_float.hpp>
+#include <boost/e_float/e_float_constants.hpp>
+#include <boost/e_float/e_float_elementary.hpp>
 
 #include "e_float_mpfr_protos.h"
 #include "../../utility/util_lexical_cast.h"

Modified: sandbox/e_float/libs/e_float/src/functions/constants/constants.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/src/functions/constants/constants.cpp (original)
+++ sandbox/e_float/libs/e_float/src/functions/constants/constants.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -8,9 +8,9 @@
 // "Algorithm 910: A Portable C++ Multiple-Precision System for Special-Function Calculations",
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
-#include <e_float/e_float.hpp>
-#include <e_float/e_float_elementary_trans.hpp>
-#include <e_float/e_float_constants.hpp>
+#include <boost/e_float/e_float.hpp>
+#include <boost/e_float/e_float_elementary_trans.hpp>
+#include <boost/e_float/e_float_constants.hpp>
 
 const e_float& ef::two (void) { static const e_float val( 2u); return val; }
 const e_float& ef::three (void) { static const e_float val( 3u); return val; }

Modified: sandbox/e_float/libs/e_float/src/functions/elementary/elementary_complex.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/src/functions/elementary/elementary_complex.cpp (original)
+++ sandbox/e_float/libs/e_float/src/functions/elementary/elementary_complex.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -8,11 +8,11 @@
 // "Algorithm 910: A Portable C++ Multiple-Precision System for Special-Function Calculations",
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
-#include <e_float/e_float_complex.hpp>
-#include <e_float/e_float_constants.hpp>
-#include <e_float/e_float_elementary_complex.hpp>
-#include <e_float/e_float_elementary_math.hpp>
-#include <e_float/e_float_elementary_trans.hpp>
+#include <boost/e_float/e_float_complex.hpp>
+#include <boost/e_float/e_float_constants.hpp>
+#include <boost/e_float/e_float_elementary_complex.hpp>
+#include <boost/e_float/e_float_elementary_math.hpp>
+#include <boost/e_float/e_float_elementary_trans.hpp>
 
 #include "../../utility/util_power_x_pow_n.h"
 

Modified: sandbox/e_float/libs/e_float/src/functions/elementary/elementary_hyper_g.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/src/functions/elementary/elementary_hyper_g.cpp (original)
+++ sandbox/e_float/libs/e_float/src/functions/elementary/elementary_hyper_g.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -13,9 +13,9 @@
 #include <numeric>
 #include <functional>
 
-#include <e_float/e_float.hpp>
-#include <e_float/e_float_constants.hpp>
-#include <e_float/e_float_elementary.hpp>
+#include <boost/e_float/e_float.hpp>
+#include <boost/e_float/e_float_constants.hpp>
+#include <boost/e_float/e_float_elementary.hpp>
 
 e_float ef::hyp0F0(const e_float& x)
 {

Modified: sandbox/e_float/libs/e_float/src/functions/elementary/elementary_math.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/src/functions/elementary/elementary_math.cpp (original)
+++ sandbox/e_float/libs/e_float/src/functions/elementary/elementary_math.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -8,8 +8,8 @@
 // "Algorithm 910: A Portable C++ Multiple-Precision System for Special-Function Calculations",
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
-#include <e_float/e_float_complex.hpp>
-#include <e_float/e_float_elementary.hpp>
+#include <boost/e_float/e_float_complex.hpp>
+#include <boost/e_float/e_float_elementary.hpp>
 
 #if defined(__GNUC__)
   static inline int _isnan (double x) { return std::isnan <double>(x); }

Modified: sandbox/e_float/libs/e_float/src/functions/elementary/elementary_trans.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/src/functions/elementary/elementary_trans.cpp (original)
+++ sandbox/e_float/libs/e_float/src/functions/elementary/elementary_trans.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -12,9 +12,9 @@
 #include <numeric>
 #include <map>
 
-#include <e_float/e_float.hpp>
-#include <e_float/e_float_constants.hpp>
-#include <e_float/e_float_elementary.hpp>
+#include <boost/e_float/e_float.hpp>
+#include <boost/e_float/e_float_constants.hpp>
+#include <boost/e_float/e_float_elementary.hpp>
 
 #include "../../utility/util_lexical_cast.h"
 #include "../../utility/util_power_x_pow_n.h"

Modified: sandbox/e_float/libs/e_float/src/functions/elementary/elementary_trig.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/src/functions/elementary/elementary_trig.cpp (original)
+++ sandbox/e_float/libs/e_float/src/functions/elementary/elementary_trig.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -19,9 +19,9 @@
 //
 // *****************************************************************************
 
-#include <e_float/e_float.hpp>
-#include <e_float/e_float_constants.hpp>
-#include <e_float/e_float_elementary.hpp>
+#include <boost/e_float/e_float.hpp>
+#include <boost/e_float/e_float_constants.hpp>
+#include <boost/e_float/e_float_elementary.hpp>
 
 e_float ef::sin(const e_float& x)
 {

Modified: sandbox/e_float/libs/e_float/src/functions/gamma/factorial.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/src/functions/gamma/factorial.cpp (original)
+++ sandbox/e_float/libs/e_float/src/functions/gamma/factorial.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -8,10 +8,10 @@
 // "Algorithm 910: A Portable C++ Multiple-Precision System for Special-Function Calculations",
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
-#include <e_float/e_float.hpp>
-#include <e_float/e_float_constants.hpp>
-#include <e_float/e_float_elementary.hpp>
-#include <e_float/e_float_gamma.hpp>
+#include <boost/e_float/e_float.hpp>
+#include <boost/e_float/e_float_constants.hpp>
+#include <boost/e_float/e_float_elementary.hpp>
+#include <boost/e_float/e_float_gamma.hpp>
 
 #include "../tables/tables.h"
 

Modified: sandbox/e_float/libs/e_float/src/functions/gamma/factorial2.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/src/functions/gamma/factorial2.cpp (original)
+++ sandbox/e_float/libs/e_float/src/functions/gamma/factorial2.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -8,9 +8,9 @@
 // "Algorithm 910: A Portable C++ Multiple-Precision System for Special-Function Calculations",
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
-#include <e_float/e_float_complex.hpp>
-#include <e_float/e_float_elementary.hpp>
-#include <e_float/e_float_gamma.hpp>
+#include <boost/e_float/e_float_complex.hpp>
+#include <boost/e_float/e_float_elementary.hpp>
+#include <boost/e_float/e_float_gamma.hpp>
 
 #include "../tables/tables.h"
 

Modified: sandbox/e_float/libs/e_float/src/functions/gamma/gamma.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/src/functions/gamma/gamma.cpp (original)
+++ sandbox/e_float/libs/e_float/src/functions/gamma/gamma.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -10,11 +10,11 @@
 
 #include <numeric>
 
-#include <e_float/e_float_complex.hpp>
-#include <e_float/e_float_constants.hpp>
-#include <e_float/e_float_elementary.hpp>
-#include <e_float/e_float_integer.hpp>
-#include <e_float/e_float_gamma.hpp>
+#include <boost/e_float/e_float_complex.hpp>
+#include <boost/e_float/e_float_constants.hpp>
+#include <boost/e_float/e_float_elementary.hpp>
+#include <boost/e_float/e_float_integer.hpp>
+#include <boost/e_float/e_float_gamma.hpp>
 
 #include "../tables/tables.h"
 #include "../../utility/util_coefficient_expansion.h"

Modified: sandbox/e_float/libs/e_float/src/functions/gamma/gamma_util.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/src/functions/gamma/gamma_util.cpp (original)
+++ sandbox/e_float/libs/e_float/src/functions/gamma/gamma_util.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -8,10 +8,10 @@
 // "Algorithm 910: A Portable C++ Multiple-Precision System for Special-Function Calculations",
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
-#include <e_float/e_float.hpp>
-#include <e_float/e_float_constants.hpp>
-#include <e_float/e_float_elementary.hpp>
-#include <e_float/e_float_gamma.hpp>
+#include <boost/e_float/e_float.hpp>
+#include <boost/e_float/e_float_constants.hpp>
+#include <boost/e_float/e_float_elementary.hpp>
+#include <boost/e_float/e_float_gamma.hpp>
 #include "gamma_util.h"
 
 void GammaUtil::GammaOfPlusXMinusX(const e_float& x, e_float& gamma_plus_x, e_float& gamma_minus_x)

Modified: sandbox/e_float/libs/e_float/src/functions/gamma/gamma_util.h
==============================================================================
--- sandbox/e_float/libs/e_float/src/functions/gamma/gamma_util.h (original)
+++ sandbox/e_float/libs/e_float/src/functions/gamma/gamma_util.h 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -11,7 +11,7 @@
 #ifndef _GAMMA_UTIL_2008_01_10_H_
   #define _GAMMA_UTIL_2008_01_10_H_
   
- #include <e_float/e_float.hpp>
+ #include <boost/e_float/e_float.hpp>
 
   namespace GammaUtil
   {

Modified: sandbox/e_float/libs/e_float/src/functions/gamma/pochhammer.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/src/functions/gamma/pochhammer.cpp (original)
+++ sandbox/e_float/libs/e_float/src/functions/gamma/pochhammer.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -8,9 +8,9 @@
 // "Algorithm 910: A Portable C++ Multiple-Precision System for Special-Function Calculations",
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
-#include <e_float/e_float_complex.hpp>
-#include <e_float/e_float_elementary.hpp>
-#include <e_float/e_float_gamma.hpp>
+#include <boost/e_float/e_float_complex.hpp>
+#include <boost/e_float/e_float_elementary.hpp>
+#include <boost/e_float/e_float_gamma.hpp>
 
 namespace Pochhammer_Series
 {

Modified: sandbox/e_float/libs/e_float/src/functions/integer/bernoulli_b.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/src/functions/integer/bernoulli_b.cpp (original)
+++ sandbox/e_float/libs/e_float/src/functions/integer/bernoulli_b.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -8,11 +8,11 @@
 // "Algorithm 910: A Portable C++ Multiple-Precision System for Special-Function Calculations",
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
-#include <e_float/e_float.hpp>
-#include <e_float/e_float_constants.hpp>
-#include <e_float/e_float_elementary.hpp>
-#include <e_float/e_float_integer.hpp>
-#include <e_float/e_float_gamma.hpp>
+#include <boost/e_float/e_float.hpp>
+#include <boost/e_float/e_float_constants.hpp>
+#include <boost/e_float/e_float_elementary.hpp>
+#include <boost/e_float/e_float_integer.hpp>
+#include <boost/e_float/e_float_gamma.hpp>
 
 #include "../tables/tables.h"
 

Modified: sandbox/e_float/libs/e_float/src/functions/integer/prime.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/src/functions/integer/prime.cpp (original)
+++ sandbox/e_float/libs/e_float/src/functions/integer/prime.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -11,7 +11,7 @@
 #include <vector>
 #include <algorithm>
 
-#include <e_float/e_float_prime.hpp>
+#include <boost/e_float/e_float_prime.hpp>
 
 namespace Primes
 {

Modified: sandbox/e_float/libs/e_float/src/functions/integer/prime_factor.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/src/functions/integer/prime_factor.cpp (original)
+++ sandbox/e_float/libs/e_float/src/functions/integer/prime_factor.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -11,7 +11,7 @@
 #include <vector>
 #include <algorithm>
 
-#include <e_float/e_float_prime.hpp>
+#include <boost/e_float/e_float_prime.hpp>
 
 #include "prime_factors.h"
 

Modified: sandbox/e_float/libs/e_float/src/functions/tables/tables.h
==============================================================================
--- sandbox/e_float/libs/e_float/src/functions/tables/tables.h (original)
+++ sandbox/e_float/libs/e_float/src/functions/tables/tables.h 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -13,7 +13,7 @@
 
   #include <vector>
 
- #include <e_float/e_float.hpp>
+ #include <boost/e_float/e_float.hpp>
 
   namespace Tables
   {

Modified: sandbox/e_float/libs/e_float/src/functions/zeta/zeta.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/src/functions/zeta/zeta.cpp (original)
+++ sandbox/e_float/libs/e_float/src/functions/zeta/zeta.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -10,15 +10,15 @@
 
 #include <algorithm>
 
-#include <e_float/e_float.hpp>
+#include <boost/e_float/e_float.hpp>
 
-#include <e_float/e_float_complex.hpp>
-#include <e_float/e_float_constants.hpp>
-#include <e_float/e_float_elementary.hpp>
-#include <e_float/e_float_integer.hpp>
-#include <e_float/e_float_gamma.hpp>
-#include <e_float/e_float_prime.hpp>
-#include <e_float/e_float_zeta.hpp>
+#include <boost/e_float/e_float_complex.hpp>
+#include <boost/e_float/e_float_constants.hpp>
+#include <boost/e_float/e_float_elementary.hpp>
+#include <boost/e_float/e_float_integer.hpp>
+#include <boost/e_float/e_float_gamma.hpp>
+#include <boost/e_float/e_float_prime.hpp>
+#include <boost/e_float/e_float_zeta.hpp>
 
 #include "../tables/tables.h"
 #include "../../utility/util_power_j_pow_x.h"

Modified: sandbox/e_float/libs/e_float/src/generic_functions/constants/generic_functions_constants.h
==============================================================================
--- sandbox/e_float/libs/e_float/src/generic_functions/constants/generic_functions_constants.h (original)
+++ sandbox/e_float/libs/e_float/src/generic_functions/constants/generic_functions_constants.h 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -11,7 +11,7 @@
 #ifndef _GENERIC_FUNCTIONS_CONSTANTS_2011_06_18_H_
   #define _GENERIC_FUNCTIONS_CONSTANTS_2011_06_18_H_
 
- #include <e_float/e_float_constants.hpp>
+ #include <boost/e_float/e_float_constants.hpp>
 
   namespace generic_functions
   {

Modified: sandbox/e_float/libs/e_float/src/generic_functions/elementary/generic_functions_elementary.h
==============================================================================
--- sandbox/e_float/libs/e_float/src/generic_functions/elementary/generic_functions_elementary.h (original)
+++ sandbox/e_float/libs/e_float/src/generic_functions/elementary/generic_functions_elementary.h 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -15,7 +15,7 @@
   #include <limits>
   #include <regex>
 
- #include <e_float/e_float_elementary.hpp>
+ #include <boost/e_float/e_float_elementary.hpp>
 
   namespace generic_functions
   {

Modified: sandbox/e_float/libs/e_float/src/utility/util_digit_scale.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/src/utility/util_digit_scale.cpp (original)
+++ sandbox/e_float/libs/e_float/src/utility/util_digit_scale.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -10,7 +10,7 @@
 
 #include <vector>
 
-#include <e_float/e_float.hpp>
+#include <boost/e_float/e_float.hpp>
 
 #include "util_digit_scale.h"
 #include "util_interpolate.h"

Modified: sandbox/e_float/libs/e_float/src/utility/util_find_root_bisect.h
==============================================================================
--- sandbox/e_float/libs/e_float/src/utility/util_find_root_bisect.h (original)
+++ sandbox/e_float/libs/e_float/src/utility/util_find_root_bisect.h 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -12,7 +12,7 @@
   #define _UTIL_FIND_ROOT_BISECT_2009_10_31_H_
 
   #include <utility/util_find_root_base.h>
- #include <e_float/e_float.hpp>
+ #include <boost/e_float/e_float.hpp>
 
   namespace Util
   {

Modified: sandbox/e_float/libs/e_float/src/utility/util_power_j_pow_x.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/src/utility/util_power_j_pow_x.cpp (original)
+++ sandbox/e_float/libs/e_float/src/utility/util_power_j_pow_x.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -10,10 +10,10 @@
 
 #include <deque>
 
-#include <e_float/e_float_complex.hpp>
-#include <e_float/e_float_prime.hpp>
-#include <e_float/e_float_constants.hpp>
-#include <e_float/e_float_elementary.hpp>
+#include <boost/e_float/e_float_complex.hpp>
+#include <boost/e_float/e_float_prime.hpp>
+#include <boost/e_float/e_float_constants.hpp>
+#include <boost/e_float/e_float_elementary.hpp>
 
 #include "../functions/integer/prime_factors.h"
 #include "util_point.h"

Modified: sandbox/e_float/libs/e_float/src/utility/util_power_j_pow_x.h
==============================================================================
--- sandbox/e_float/libs/e_float/src/utility/util_power_j_pow_x.h (original)
+++ sandbox/e_float/libs/e_float/src/utility/util_power_j_pow_x.h 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -13,7 +13,7 @@
 
   #include <map>
 
- #include <e_float/e_float_complex.hpp>
+ #include <boost/e_float/e_float_complex.hpp>
 
   namespace Util
   {

Modified: sandbox/e_float/libs/e_float/test/imag/cases/test_case_02101_z_sin.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/imag/cases/test_case_02101_z_sin.cpp (original)
+++ sandbox/e_float/libs/e_float/test/imag/cases/test_case_02101_z_sin.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_imag.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/imag/cases/test_case_02102_z_cos.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/imag/cases/test_case_02102_z_cos.cpp (original)
+++ sandbox/e_float/libs/e_float/test/imag/cases/test_case_02102_z_cos.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_imag.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/imag/cases/test_case_02103_z_exp.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/imag/cases/test_case_02103_z_exp.cpp (original)
+++ sandbox/e_float/libs/e_float/test/imag/cases/test_case_02103_z_exp.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_imag.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/imag/cases/test_case_02104_z_log.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/imag/cases/test_case_02104_z_log.cpp (original)
+++ sandbox/e_float/libs/e_float/test/imag/cases/test_case_02104_z_log.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_imag.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/imag/cases/test_case_02105_z_sqrt.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/imag/cases/test_case_02105_z_sqrt.cpp (original)
+++ sandbox/e_float/libs/e_float/test/imag/cases/test_case_02105_z_sqrt.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_imag.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/imag/cases/test_case_02106_z_rootn.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/imag/cases/test_case_02106_z_rootn.cpp (original)
+++ sandbox/e_float/libs/e_float/test/imag/cases/test_case_02106_z_rootn.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_imag.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/imag/cases/test_case_02111_z_asin.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/imag/cases/test_case_02111_z_asin.cpp (original)
+++ sandbox/e_float/libs/e_float/test/imag/cases/test_case_02111_z_asin.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_imag.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/imag/cases/test_case_02112_z_acos.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/imag/cases/test_case_02112_z_acos.cpp (original)
+++ sandbox/e_float/libs/e_float/test/imag/cases/test_case_02112_z_acos.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_imag.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/imag/cases/test_case_02113_z_atan.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/imag/cases/test_case_02113_z_atan.cpp (original)
+++ sandbox/e_float/libs/e_float/test/imag/cases/test_case_02113_z_atan.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_imag.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/imag/cases/test_case_02114_z_various_trig.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/imag/cases/test_case_02114_z_various_trig.cpp (original)
+++ sandbox/e_float/libs/e_float/test/imag/cases/test_case_02114_z_various_trig.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_imag.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/imag/cases/test_case_02115_z_various_elem_trans_log.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/imag/cases/test_case_02115_z_various_elem_trans_log.cpp (original)
+++ sandbox/e_float/libs/e_float/test/imag/cases/test_case_02115_z_various_elem_trans_log.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_imag.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/imag/cases/test_case_02116_z_various_elem.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/imag/cases/test_case_02116_z_various_elem.cpp (original)
+++ sandbox/e_float/libs/e_float/test/imag/cases/test_case_02116_z_various_elem.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_imag.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/imag/cases/test_case_02121_z_sinh.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/imag/cases/test_case_02121_z_sinh.cpp (original)
+++ sandbox/e_float/libs/e_float/test/imag/cases/test_case_02121_z_sinh.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_imag.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/imag/cases/test_case_02122_z_cosh.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/imag/cases/test_case_02122_z_cosh.cpp (original)
+++ sandbox/e_float/libs/e_float/test/imag/cases/test_case_02122_z_cosh.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_imag.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/imag/cases/test_case_02123_z_tanh.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/imag/cases/test_case_02123_z_tanh.cpp (original)
+++ sandbox/e_float/libs/e_float/test/imag/cases/test_case_02123_z_tanh.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_imag.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/imag/cases/test_case_02124_z_asinh.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/imag/cases/test_case_02124_z_asinh.cpp (original)
+++ sandbox/e_float/libs/e_float/test/imag/cases/test_case_02124_z_asinh.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_imag.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/imag/cases/test_case_02125_z_acosh.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/imag/cases/test_case_02125_z_acosh.cpp (original)
+++ sandbox/e_float/libs/e_float/test/imag/cases/test_case_02125_z_acosh.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_imag.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/imag/cases/test_case_02126_z_atanh.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/imag/cases/test_case_02126_z_atanh.cpp (original)
+++ sandbox/e_float/libs/e_float/test/imag/cases/test_case_02126_z_atanh.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_imag.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/imag/cases/test_case_02201_z_gamma.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/imag/cases/test_case_02201_z_gamma.cpp (original)
+++ sandbox/e_float/libs/e_float/test/imag/cases/test_case_02201_z_gamma.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_imag.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/imag/cases/test_case_02202_z_gamma_medium_x.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/imag/cases/test_case_02202_z_gamma_medium_x.cpp (original)
+++ sandbox/e_float/libs/e_float/test/imag/cases/test_case_02202_z_gamma_medium_x.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_imag.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/imag/cases/test_case_02901_z_zeta_small_x.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/imag/cases/test_case_02901_z_zeta_small_x.cpp (original)
+++ sandbox/e_float/libs/e_float/test/imag/cases/test_case_02901_z_zeta_small_x.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_imag.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/imag/cases/test_case_02902_z_zeta_all_x.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/imag/cases/test_case_02902_z_zeta_all_x.cpp (original)
+++ sandbox/e_float/libs/e_float/test/imag/cases/test_case_02902_z_zeta_all_x.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_imag.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/imag/cases/test_case_02903_z_zeta_neg_x.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/imag/cases/test_case_02903_z_zeta_neg_x.cpp (original)
+++ sandbox/e_float/libs/e_float/test/imag/cases/test_case_02903_z_zeta_neg_x.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_imag.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/imag/cases/test_case_02911_z_zeta_crit_strip.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/imag/cases/test_case_02911_z_zeta_crit_strip.cpp (original)
+++ sandbox/e_float/libs/e_float/test/imag/cases/test_case_02911_z_zeta_crit_strip.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_imag.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/linpack_test/libf2c/vc9/p4/libf2c.lib
==============================================================================
Binary files. No diff available.

Modified: sandbox/e_float/libs/e_float/test/linpack_test/libf2c/vc9/x64/libf2c.lib
==============================================================================
Binary files. No diff available.

Modified: sandbox/e_float/libs/e_float/test/linpack_test/linpack-benchmark.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/linpack_test/linpack-benchmark.cpp (original)
+++ sandbox/e_float/libs/e_float/test/linpack_test/linpack-benchmark.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -18,16 +18,25 @@
 // ../test/linpack_test/libf2c/vc9/x64/libf2c.lib
 
 #define TEST_EFLOAT_NATIVE
+//#define TEST_GMPXX
 
 #include <iostream>
 #include <iomanip>
 #include <cmath>
 
 #if defined(TEST_GMPXX)
- #include <gmpxx.h>
+ #if defined(_MSC_VER)
+ #pragma warning(disable:4127)
+ #pragma warning(disable:4146)
+ #pragma warning(disable:4503)
+ #pragma warning(disable:4512)
+ #pragma warning(disable:4800)
+ #endif
+ #include "gmp/gmpxx.h"
   typedef mpf_class real_type;
+ std::ostream & operator<<(std::ostream &o, const __mpf_struct*) { return o; } // TBD: Why the linker error? What should be done here?
 #elif defined(TEST_EFLOAT_NATIVE)
- #include <e_float/e_float.hpp>
+ #include <boost/e_float/e_float.hpp>
   typedef e_float real_type;
 #define CAST_TO_RT(x) real_type(x)
 #else
@@ -62,7 +71,7 @@
 
 
 #if defined(TEST_EFLOAT_NATIVE)
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 using namespace ef;
 #endif
 
@@ -96,20 +105,15 @@
 
 extern "C" int MAIN__()
 {
-#ifdef TEST_BIG_NUMBER
- std::cout << "Testing big_number<mpf_real<100> >" << std::endl;
-#elif defined(TEST_GMPXX)
- std::cout << "Testing mpfr_class at 100 decimal degits" << std::endl;
- mpf_set_default_prec(((100 + 1) * 1000L) / 301L);
+#if defined(TEST_GMPXX)
+ std::cout << "Testing mpf_class at 100 decimal digits" << std::endl;
+ mpf_set_default_prec(((115) * 1000L) / 301L);
 #elif defined(TEST_EFLOAT_NATIVE)
- std::cout << "Testing native e_float" << std::endl;
-#elif defined(TEST_MATH_EF)
- std::cout << "Testing boost::math::ef::e_float" << std::endl;
+ std::cout << "Testing native e_float at " << std::numeric_limits<e_float>::digits10 << " digits" << std::endl;
 #else
    std::cout << "Testing double" << std::endl;
 #endif
 
-
    /* Format strings */
    static char fmt_1[] = "(\002 Please send the results of this run to:\002"
       "//\002 Jack J. Dongarra\002/\002 Computer Science Department\002/"
@@ -174,7 +178,14 @@
    d__1 = (real_type) n;
    /* Computing 2nd power */
    d__2 = (real_type) n;
+
+ #if defined(TEST_GMPXX)
+ ops = real_type(d__1 * (d__1 * d__1) * 2. / 3. + d__2 * d__2 * 2.).get_d();
+ #elif defined(TEST_EFLOAT_NATIVE)
    ops = static_cast<double>(real_type(d__1 * (d__1 * d__1) * 2. / 3. + d__2 * d__2 * 2.));
+ #else
+ ops = static_cast<double>(real_type(d__1 * (d__1 * d__1) * 2. / 3. + d__2 * d__2 * 2.));
+ #endif
 
    matgen_(a, &lda, &n, b, &norma);
 
@@ -1199,47 +1210,41 @@
 double x64 release results:
 ~~~~~~~~~~~~~~~~~~
 
-norm. resid resid machep x(1) x(n)
-6.4915 7.207e-013 2.2204e-016 1 1
-
-
 times are reported for matrices of order 1000
 factor solve total mflops unit ratio
 times for array with leading dimension of1001
-0.58 0 0.58 1152.9 0.0017348 10.357
+0.936 0.015 0.951 703.12 0.0028445 16.982
 
 efx::e_float x64 release (from sandbox) results:
 ~~~~~~~~~~~~~~~~~~
 
-norm. resid resid machep x(1) x(n)
-4.83973e-023 2.41986e-119 1e-099 1 1
-
 times are reported for matrices of order 1000
 factor solve total mflops unit ratio
 times for array with leading dimension of1001
-159.38 0.48 159.86 4.1827 0.47816 2854.7
+181.01 0.546 181.55 3.683 0.54303 3242
 
 mpfr::e_float x64 release (from sandbox) results:
 ~~~~~~~~~~~~~~~~~~
 
-norm. resid resid machep x(1) x(n)
-1.30249e-016 6.51244e-113 1e-099 1 1
-
-
 times are reported for matrices of order 1000
 factor solve total mflops unit ratio
 times for array with leading dimension of1001
-163.53 0.51 164.04 4.0763 0.49064 2929.2
+184.36 0.561 184.92 3.6159 0.55311 3302.2
 
 gmp::e_float x64 release (from sandbox) results:
 ~~~~~~~~~~~~~~~~~~
 
-norm. resid resid machep x(1) x(n)
-2.36707e-016 1.18354e-112 1e-099 1 1
-
 times are reported for matrices of order 1000
 factor solve total mflops unit ratio
 times for array with leading dimension of1001
-229.29 0.69 229.98 2.9075 0.68787 4106.7
+258.86 0.787 259.65 2.5753 0.77662 4636.6
+
+mpf_class x64 release results:
+~~~~~~~~~~~~~~~~~~
+
+times are reported for matrices of order 1000
+factor solve total mflops unit ratio
+times for array with leading dimension of1001
+173 0.515 173.52 3.8536 0.519 3098.6
 
 */

Modified: sandbox/e_float/libs/e_float/test/real/cases/test_case_0000x_overflow_underflow.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/real/cases/test_case_0000x_overflow_underflow.cpp (original)
+++ sandbox/e_float/libs/e_float/test/real/cases/test_case_0000x_overflow_underflow.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -8,7 +8,7 @@
 // "Algorithm 910: A Portable C++ Multiple-Precision System for Special-Function Calculations",
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_real.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/real/cases/test_case_0000y_write_to_ostream.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/real/cases/test_case_0000y_write_to_ostream.cpp (original)
+++ sandbox/e_float/libs/e_float/test/real/cases/test_case_0000y_write_to_ostream.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -12,7 +12,7 @@
 #include <string>
 #include <iomanip>
 
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_real.h"
 
 namespace

Modified: sandbox/e_float/libs/e_float/test/real/cases/test_case_0000z_global_ops_pod.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/real/cases/test_case_0000z_global_ops_pod.cpp (original)
+++ sandbox/e_float/libs/e_float/test/real/cases/test_case_0000z_global_ops_pod.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -13,8 +13,8 @@
 #include <limits>
 #include <iomanip>
 
-#include <e_float/e_float.hpp>
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_real.h"
 
 namespace

Modified: sandbox/e_float/libs/e_float/test/real/cases/test_case_00011_various_elem_math.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/real/cases/test_case_00011_various_elem_math.cpp (original)
+++ sandbox/e_float/libs/e_float/test/real/cases/test_case_00011_various_elem_math.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_real.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/real/cases/test_case_00021_bernoulli.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/real/cases/test_case_00021_bernoulli.cpp (original)
+++ sandbox/e_float/libs/e_float/test/real/cases/test_case_00021_bernoulli.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_real.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/real/cases/test_case_00051_factorial.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/real/cases/test_case_00051_factorial.cpp (original)
+++ sandbox/e_float/libs/e_float/test/real/cases/test_case_00051_factorial.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_real.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/real/cases/test_case_00052_factorial2.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/real/cases/test_case_00052_factorial2.cpp (original)
+++ sandbox/e_float/libs/e_float/test/real/cases/test_case_00052_factorial2.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_real.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/real/cases/test_case_00071_various_int_func.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/real/cases/test_case_00071_various_int_func.cpp (original)
+++ sandbox/e_float/libs/e_float/test/real/cases/test_case_00071_various_int_func.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_real.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/real/cases/test_case_00101_sin.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/real/cases/test_case_00101_sin.cpp (original)
+++ sandbox/e_float/libs/e_float/test/real/cases/test_case_00101_sin.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_real.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/real/cases/test_case_00102_cos.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/real/cases/test_case_00102_cos.cpp (original)
+++ sandbox/e_float/libs/e_float/test/real/cases/test_case_00102_cos.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_real.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/real/cases/test_case_00103_exp.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/real/cases/test_case_00103_exp.cpp (original)
+++ sandbox/e_float/libs/e_float/test/real/cases/test_case_00103_exp.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_real.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/real/cases/test_case_00104_log.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/real/cases/test_case_00104_log.cpp (original)
+++ sandbox/e_float/libs/e_float/test/real/cases/test_case_00104_log.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_real.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/real/cases/test_case_00105_sqrt.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/real/cases/test_case_00105_sqrt.cpp (original)
+++ sandbox/e_float/libs/e_float/test/real/cases/test_case_00105_sqrt.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_real.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/real/cases/test_case_00106_rootn.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/real/cases/test_case_00106_rootn.cpp (original)
+++ sandbox/e_float/libs/e_float/test/real/cases/test_case_00106_rootn.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_real.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/real/cases/test_case_00111_sin_small_x.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/real/cases/test_case_00111_sin_small_x.cpp (original)
+++ sandbox/e_float/libs/e_float/test/real/cases/test_case_00111_sin_small_x.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_real.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/real/cases/test_case_00112_cos_x_near_pi_half.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/real/cases/test_case_00112_cos_x_near_pi_half.cpp (original)
+++ sandbox/e_float/libs/e_float/test/real/cases/test_case_00112_cos_x_near_pi_half.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_real.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/real/cases/test_case_00113_atan_x_small_to_large.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/real/cases/test_case_00113_atan_x_small_to_large.cpp (original)
+++ sandbox/e_float/libs/e_float/test/real/cases/test_case_00113_atan_x_small_to_large.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_real.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/real/cases/test_case_00114_various_trig.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/real/cases/test_case_00114_various_trig.cpp (original)
+++ sandbox/e_float/libs/e_float/test/real/cases/test_case_00114_various_trig.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_real.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/real/cases/test_case_00115_various_elem_trans.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/real/cases/test_case_00115_various_elem_trans.cpp (original)
+++ sandbox/e_float/libs/e_float/test/real/cases/test_case_00115_various_elem_trans.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_real.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/real/cases/test_case_00121_sinh.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/real/cases/test_case_00121_sinh.cpp (original)
+++ sandbox/e_float/libs/e_float/test/real/cases/test_case_00121_sinh.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_real.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/real/cases/test_case_00122_cosh.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/real/cases/test_case_00122_cosh.cpp (original)
+++ sandbox/e_float/libs/e_float/test/real/cases/test_case_00122_cosh.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_real.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/real/cases/test_case_00123_tanh.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/real/cases/test_case_00123_tanh.cpp (original)
+++ sandbox/e_float/libs/e_float/test/real/cases/test_case_00123_tanh.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_real.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/real/cases/test_case_00124_asinh.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/real/cases/test_case_00124_asinh.cpp (original)
+++ sandbox/e_float/libs/e_float/test/real/cases/test_case_00124_asinh.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_real.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/real/cases/test_case_00125_acosh.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/real/cases/test_case_00125_acosh.cpp (original)
+++ sandbox/e_float/libs/e_float/test/real/cases/test_case_00125_acosh.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_real.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/real/cases/test_case_00126_atanh.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/real/cases/test_case_00126_atanh.cpp (original)
+++ sandbox/e_float/libs/e_float/test/real/cases/test_case_00126_atanh.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_real.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/real/cases/test_case_00201_gamma.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/real/cases/test_case_00201_gamma.cpp (original)
+++ sandbox/e_float/libs/e_float/test/real/cases/test_case_00201_gamma.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_real.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/real/cases/test_case_00202_gamma_medium_x.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/real/cases/test_case_00202_gamma_medium_x.cpp (original)
+++ sandbox/e_float/libs/e_float/test/real/cases/test_case_00202_gamma_medium_x.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_real.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/real/cases/test_case_00203_gamma_small_x.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/real/cases/test_case_00203_gamma_small_x.cpp (original)
+++ sandbox/e_float/libs/e_float/test/real/cases/test_case_00203_gamma_small_x.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_real.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/real/cases/test_case_00204_gamma_tiny_x.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/real/cases/test_case_00204_gamma_tiny_x.cpp (original)
+++ sandbox/e_float/libs/e_float/test/real/cases/test_case_00204_gamma_tiny_x.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_real.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/real/cases/test_case_00205_gamma_near_neg_n.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/real/cases/test_case_00205_gamma_near_neg_n.cpp (original)
+++ sandbox/e_float/libs/e_float/test/real/cases/test_case_00205_gamma_near_neg_n.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_real.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/real/cases/test_case_00221_various_gamma_func.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/real/cases/test_case_00221_various_gamma_func.cpp (original)
+++ sandbox/e_float/libs/e_float/test/real/cases/test_case_00221_various_gamma_func.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_real.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/real/cases/test_case_00901_zeta_small_x.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/real/cases/test_case_00901_zeta_small_x.cpp (original)
+++ sandbox/e_float/libs/e_float/test/real/cases/test_case_00901_zeta_small_x.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_real.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/real/cases/test_case_00902_zeta_all_x.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/real/cases/test_case_00902_zeta_all_x.cpp (original)
+++ sandbox/e_float/libs/e_float/test/real/cases/test_case_00902_zeta_all_x.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_real.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/real/cases/test_case_00903_zeta_neg_x.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/real/cases/test_case_00903_zeta_neg_x.cpp (original)
+++ sandbox/e_float/libs/e_float/test/real/cases/test_case_00903_zeta_neg_x.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -9,7 +9,7 @@
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
 // Automatically generated file
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 #include "../test_case_real.h"
 
 namespace test

Modified: sandbox/e_float/libs/e_float/test/spot/test_spot.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/spot/test_spot.cpp (original)
+++ sandbox/e_float/libs/e_float/test/spot/test_spot.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -11,8 +11,8 @@
 #include <iomanip>
 #include <iostream>
 
-#include <e_float/e_float.hpp>
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 
 #include "test_spot.h"
 

Modified: sandbox/e_float/libs/e_float/test/test_case_base.cpp
==============================================================================
--- sandbox/e_float/libs/e_float/test/test_case_base.cpp (original)
+++ sandbox/e_float/libs/e_float/test/test_case_base.cpp 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -8,8 +8,8 @@
 // "Algorithm 910: A Portable C++ Multiple-Precision System for Special-Function Calculations",
 // in ACM TOMS, {VOL 37, ISSUE 4, (February 2011)} (C) ACM, 2011. http://doi.acm.org/10.1145/1916461.1916469
 
-#include <e_float/e_float.hpp>
-#include <e_float/e_float_functions.hpp>
+#include <boost/e_float/e_float.hpp>
+#include <boost/e_float/e_float_functions.hpp>
 
 #include "test_case_base.h"
 

Modified: sandbox/e_float/libs/e_float/test/test_case_base.h
==============================================================================
--- sandbox/e_float/libs/e_float/test/test_case_base.h (original)
+++ sandbox/e_float/libs/e_float/test/test_case_base.h 2011-08-14 12:19:51 EDT (Sun, 14 Aug 2011)
@@ -19,7 +19,7 @@
   #include <iterator>
 
 
- #include <e_float/e_float_complex.hpp>
+ #include <boost/e_float/e_float_complex.hpp>
   #include "../src/utility/util_noncopyable.h"
 
   namespace test


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk