Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r74671 - in sandbox/big_number: boost/multiprecision boost/multiprecision/concepts boost/multiprecision/detail libs/multiprecision/test
From: john_at_[hidden]
Date: 2011-10-03 13:15:59


Author: johnmaddock
Date: 2011-10-03 13:15:55 EDT (Mon, 03 Oct 2011)
New Revision: 74671
URL: http://svn.boost.org/trac/boost/changeset/74671

Log:
Rename "big_number*" to "mp_number*".
Text files modified:
   sandbox/big_number/boost/multiprecision/concepts/mp_number_architypes.hpp | 84 ++++++++++++++++++++--------------------
   sandbox/big_number/boost/multiprecision/detail/mp_number_base.hpp | 30 +++++++-------
   sandbox/big_number/boost/multiprecision/mp_number.hpp | 36 ++++++++--------
   sandbox/big_number/libs/multiprecision/test/mp_number_concept_check.cpp | 4
   sandbox/big_number/libs/multiprecision/test/test_arithmetic.cpp | 2
   sandbox/big_number/libs/multiprecision/test/test_exp.cpp | 2
   sandbox/big_number/libs/multiprecision/test/test_numeric_limits.cpp | 2
   7 files changed, 80 insertions(+), 80 deletions(-)

Modified: sandbox/big_number/boost/multiprecision/concepts/mp_number_architypes.hpp
==============================================================================
--- sandbox/big_number/boost/multiprecision/concepts/mp_number_architypes.hpp (original)
+++ sandbox/big_number/boost/multiprecision/concepts/mp_number_architypes.hpp 2011-10-03 13:15:55 EDT (Mon, 03 Oct 2011)
@@ -23,52 +23,52 @@
 #pragma warning(disable:4244)
 #endif
 
-struct big_number_backend_real_architype
+struct mp_number_backend_real_architype
 {
    typedef mpl::list<long long> signed_types;
    typedef mpl::list<unsigned long long> unsigned_types;
    typedef mpl::list<long double> real_types;
 
- big_number_backend_real_architype()
+ mp_number_backend_real_architype()
    {
       std::cout << "Default construct" << std::endl;
    }
- big_number_backend_real_architype(const big_number_backend_real_architype& o)
+ mp_number_backend_real_architype(const mp_number_backend_real_architype& o)
    {
       std::cout << "Copy construct" << std::endl;
       m_value = o.m_value;
    }
- big_number_backend_real_architype& operator = (const big_number_backend_real_architype& o)
+ mp_number_backend_real_architype& operator = (const mp_number_backend_real_architype& o)
    {
       m_value = o.m_value;
       std::cout << "Assignment (" << m_value << ")" << std::endl;
       return *this;
    }
- big_number_backend_real_architype& operator = (boost::uintmax_t i)
+ mp_number_backend_real_architype& operator = (boost::uintmax_t i)
    {
       m_value = i;
       std::cout << "UInt Assignment (" << i << ")" << std::endl;
       return *this;
    }
- big_number_backend_real_architype& operator = (boost::intmax_t i)
+ mp_number_backend_real_architype& operator = (boost::intmax_t i)
    {
       m_value = i;
       std::cout << "Int Assignment (" << i << ")" << std::endl;
       return *this;
    }
- big_number_backend_real_architype& operator = (long double d)
+ mp_number_backend_real_architype& operator = (long double d)
    {
       m_value = d;
       std::cout << "long double Assignment (" << d << ")" << std::endl;
       return *this;
    }
- big_number_backend_real_architype& operator = (const char* s)
+ mp_number_backend_real_architype& operator = (const char* s)
    {
       m_value = boost::lexical_cast<long double>(s);
       std::cout << "const char* Assignment (" << s << ")" << std::endl;
       return *this;
    }
- void swap(big_number_backend_real_architype& o)
+ void swap(mp_number_backend_real_architype& o)
    {
       std::cout << "Swapping (" << m_value << " with " << o.m_value << ")" << std::endl;
       std::swap(m_value, o.m_value);
@@ -99,7 +99,7 @@
       std::cout << "Negating (" << m_value << ")" << std::endl;
       m_value = -m_value;
    }
- int compare(const big_number_backend_real_architype& o)const
+ int compare(const mp_number_backend_real_architype& o)const
    {
       std::cout << "Comparison" << std::endl;
       return m_value > o.m_value ? 1 : (m_value < o.m_value ? -1 : 0);
@@ -122,151 +122,151 @@
    long double m_value;
 };
 
-inline void add(big_number_backend_real_architype& result, const big_number_backend_real_architype& o)
+inline void add(mp_number_backend_real_architype& result, const mp_number_backend_real_architype& o)
 {
    std::cout << "Addition (" << result.m_value << " += " << o.m_value << ")" << std::endl;
    result.m_value += o.m_value;
 }
-inline void subtract(big_number_backend_real_architype& result, const big_number_backend_real_architype& o)
+inline void subtract(mp_number_backend_real_architype& result, const mp_number_backend_real_architype& o)
 {
    std::cout << "Subtraction (" << result.m_value << " -= " << o.m_value << ")" << std::endl;
    result.m_value -= o.m_value;
 }
-inline void multiply(big_number_backend_real_architype& result, const big_number_backend_real_architype& o)
+inline void multiply(mp_number_backend_real_architype& result, const mp_number_backend_real_architype& o)
 {
    std::cout << "Multiplication (" << result.m_value << " *= " << o.m_value << ")" << std::endl;
    result.m_value *= o.m_value;
 }
-inline void divide(big_number_backend_real_architype& result, const big_number_backend_real_architype& o)
+inline void divide(mp_number_backend_real_architype& result, const mp_number_backend_real_architype& o)
 {
    std::cout << "Division (" << result.m_value << " /= " << o.m_value << ")" << std::endl;
    result.m_value /= o.m_value;
 }
 
-inline void convert_to(boost::uintmax_t* result, const big_number_backend_real_architype& val)
+inline void convert_to(boost::uintmax_t* result, const mp_number_backend_real_architype& val)
 {
    *result = static_cast<boost::uintmax_t>(val.m_value);
 }
-inline void convert_to(boost::intmax_t* result, const big_number_backend_real_architype& val)
+inline void convert_to(boost::intmax_t* result, const mp_number_backend_real_architype& val)
 {
    *result = static_cast<boost::intmax_t>(val.m_value);
 }
-inline void convert_to(long double* result, big_number_backend_real_architype& val)
+inline void convert_to(long double* result, mp_number_backend_real_architype& val)
 {
    *result = val.m_value;
 }
 
-inline void eval_frexp(big_number_backend_real_architype& result, const big_number_backend_real_architype& arg, int* exp)
+inline void eval_frexp(mp_number_backend_real_architype& result, const mp_number_backend_real_architype& arg, int* exp)
 {
    result = std::frexp(arg.m_value, exp);
 }
 
-inline void eval_ldexp(big_number_backend_real_architype& result, const big_number_backend_real_architype& arg, int exp)
+inline void eval_ldexp(mp_number_backend_real_architype& result, const mp_number_backend_real_architype& arg, int exp)
 {
    result = std::ldexp(arg.m_value, exp);
 }
 
-inline void eval_floor(big_number_backend_real_architype& result, const big_number_backend_real_architype& arg)
+inline void eval_floor(mp_number_backend_real_architype& result, const mp_number_backend_real_architype& arg)
 {
    result = std::floor(arg.m_value);
 }
 
-inline void eval_ceil(big_number_backend_real_architype& result, const big_number_backend_real_architype& arg)
+inline void eval_ceil(mp_number_backend_real_architype& result, const mp_number_backend_real_architype& arg)
 {
    result = std::ceil(arg.m_value);
 }
 
-inline void eval_trunc(big_number_backend_real_architype& result, const big_number_backend_real_architype& arg)
+inline void eval_trunc(mp_number_backend_real_architype& result, const mp_number_backend_real_architype& arg)
 {
    result = boost::math::trunc(arg.m_value);
 }
 
-inline void eval_sqrt(big_number_backend_real_architype& result, const big_number_backend_real_architype& arg)
+inline void eval_sqrt(mp_number_backend_real_architype& result, const mp_number_backend_real_architype& arg)
 {
    result = std::sqrt(arg.m_value);
 }
 
-inline void eval_abs(big_number_backend_real_architype& result, const big_number_backend_real_architype& arg)
+inline void eval_abs(mp_number_backend_real_architype& result, const mp_number_backend_real_architype& arg)
 {
    result = std::abs(arg.m_value);
 }
 
-inline void eval_fabs(big_number_backend_real_architype& result, const big_number_backend_real_architype& arg)
+inline void eval_fabs(mp_number_backend_real_architype& result, const mp_number_backend_real_architype& arg)
 {
    result = std::fabs(arg.m_value);
 }
 
-inline int eval_fpclassify(const big_number_backend_real_architype& arg)
+inline int eval_fpclassify(const mp_number_backend_real_architype& arg)
 {
    return boost::math::fpclassify(arg.m_value);
 }
 
-inline void eval_pow(big_number_backend_real_architype& result, const big_number_backend_real_architype& b, const big_number_backend_real_architype& e)
+inline void eval_pow(mp_number_backend_real_architype& result, const mp_number_backend_real_architype& b, const mp_number_backend_real_architype& e)
 {
    result = std::pow(b.m_value, e.m_value);
 }
 
-inline void eval_pow(big_number_backend_real_architype& result, const big_number_backend_real_architype& b, int e)
+inline void eval_pow(mp_number_backend_real_architype& result, const mp_number_backend_real_architype& b, int e)
 {
    result = std::pow(b.m_value, e);
 }
 
-inline void eval_exp(big_number_backend_real_architype& result, const big_number_backend_real_architype& arg)
+inline void eval_exp(mp_number_backend_real_architype& result, const mp_number_backend_real_architype& arg)
 {
    result = std::exp(arg.m_value);
 }
 
-inline void eval_log(big_number_backend_real_architype& result, const big_number_backend_real_architype& arg)
+inline void eval_log(mp_number_backend_real_architype& result, const mp_number_backend_real_architype& arg)
 {
    result = std::log(arg.m_value);
 }
 
-inline void eval_sin(big_number_backend_real_architype& result, const big_number_backend_real_architype& arg)
+inline void eval_sin(mp_number_backend_real_architype& result, const mp_number_backend_real_architype& arg)
 {
    result = std::sin(arg.m_value);
 }
 
-inline void eval_cos(big_number_backend_real_architype& result, const big_number_backend_real_architype& arg)
+inline void eval_cos(mp_number_backend_real_architype& result, const mp_number_backend_real_architype& arg)
 {
    result = std::cos(arg.m_value);
 }
 
-inline void eval_tan(big_number_backend_real_architype& result, const big_number_backend_real_architype& arg)
+inline void eval_tan(mp_number_backend_real_architype& result, const mp_number_backend_real_architype& arg)
 {
    result = std::tan(arg.m_value);
 }
 
-inline void eval_asin(big_number_backend_real_architype& result, const big_number_backend_real_architype& arg)
+inline void eval_asin(mp_number_backend_real_architype& result, const mp_number_backend_real_architype& arg)
 {
    result = std::asin(arg.m_value);
 }
 
-inline void eval_acos(big_number_backend_real_architype& result, const big_number_backend_real_architype& arg)
+inline void eval_acos(mp_number_backend_real_architype& result, const mp_number_backend_real_architype& arg)
 {
    result = std::acos(arg.m_value);
 }
 
-inline void eval_atan(big_number_backend_real_architype& result, const big_number_backend_real_architype& arg)
+inline void eval_atan(mp_number_backend_real_architype& result, const mp_number_backend_real_architype& arg)
 {
    result = std::atan(arg.m_value);
 }
 
-inline void eval_sinh(big_number_backend_real_architype& result, const big_number_backend_real_architype& arg)
+inline void eval_sinh(mp_number_backend_real_architype& result, const mp_number_backend_real_architype& arg)
 {
    result = std::sinh(arg.m_value);
 }
 
-inline void eval_cosh(big_number_backend_real_architype& result, const big_number_backend_real_architype& arg)
+inline void eval_cosh(mp_number_backend_real_architype& result, const mp_number_backend_real_architype& arg)
 {
    result = std::cosh(arg.m_value);
 }
 
-inline void eval_tanh(big_number_backend_real_architype& result, const big_number_backend_real_architype& arg)
+inline void eval_tanh(mp_number_backend_real_architype& result, const mp_number_backend_real_architype& arg)
 {
    result = std::tanh(arg.m_value);
 }
 
-typedef boost::multiprecision::mp_number<big_number_backend_real_architype> big_number_real_architype;
+typedef boost::multiprecision::mp_number<mp_number_backend_real_architype> mp_number_real_architype;
 
 }}} // namespaces
 
@@ -277,10 +277,10 @@
 #endif
 
 template <>
-class numeric_limits<boost::multiprecision::concepts::big_number_real_architype> : public std::numeric_limits<long double>
+class numeric_limits<boost::multiprecision::concepts::mp_number_real_architype> : public std::numeric_limits<long double>
 {
    typedef std::numeric_limits<long double> base_type;
- typedef boost::multiprecision::concepts::big_number_real_architype number_type;
+ typedef boost::multiprecision::concepts::mp_number_real_architype number_type;
 public:
    BOOST_STATIC_CONSTEXPR number_type (min)() noexcept { return (base_type::min)(); }
    BOOST_STATIC_CONSTEXPR number_type (max)() noexcept { return (base_type::max)(); }

Modified: sandbox/big_number/boost/multiprecision/detail/mp_number_base.hpp
==============================================================================
--- sandbox/big_number/boost/multiprecision/detail/mp_number_base.hpp (original)
+++ sandbox/big_number/boost/multiprecision/detail/mp_number_base.hpp 2011-10-03 13:15:55 EDT (Mon, 03 Oct 2011)
@@ -137,13 +137,13 @@
 
 
 template <class T>
-struct is_big_number : public mpl::false_{};
+struct is_mp_number : public mpl::false_{};
 template <class T>
-struct is_big_number<boost::multiprecision::mp_number<T> > : public mpl::true_{};
+struct is_mp_number<boost::multiprecision::mp_number<T> > : public mpl::true_{};
 template <class T>
-struct is_big_number_exp : public mpl::false_{};
+struct is_mp_number_exp : public mpl::false_{};
 template <class Tag, class Arg1, class Arg2, class Arg3>
-struct is_big_number_exp<boost::multiprecision::detail::mp_exp<Tag, Arg1, Arg2, Arg3> > : public mpl::true_{};
+struct is_mp_number_exp<boost::multiprecision::detail::mp_exp<Tag, Arg1, Arg2, Arg3> > : public mpl::true_{};
 
 template <class T1, class T2>
 struct combine_expression;
@@ -187,25 +187,25 @@
 typedef void (*unmentionable_type)();
 
 template <class T>
-struct big_number_exp_storage
+struct mp_exp_storage
 {
    typedef const T& type;
 };
 
 template <class T>
-struct big_number_exp_storage<T*>
+struct mp_exp_storage<T*>
 {
    typedef T* type;
 };
 
 template <class T>
-struct big_number_exp_storage<const T*>
+struct mp_exp_storage<const T*>
 {
    typedef const T* type;
 };
 
 template <class tag, class A1, class A2, class A3>
-struct big_number_exp_storage<mp_exp<tag, A1, A2, A3> >
+struct mp_exp_storage<mp_exp<tag, A1, A2, A3> >
 {
    typedef mp_exp<tag, A1, A2, A3> type;
 };
@@ -233,7 +233,7 @@
    }
 
 private:
- typename big_number_exp_storage<Arg1>::type arg;
+ typename mp_exp_storage<Arg1>::type arg;
 };
 
 template<class Arg1>
@@ -255,7 +255,7 @@
    }
 
 private:
- typename big_number_exp_storage<Arg1>::type arg;
+ typename mp_exp_storage<Arg1>::type arg;
 };
 
 template <class tag, class Arg1, class Arg2>
@@ -286,8 +286,8 @@
    static const unsigned right_depth = right_type::depth + 1;
    static const unsigned depth = left_depth > right_depth ? left_depth : right_depth;
 private:
- typename big_number_exp_storage<Arg1>::type arg1;
- typename big_number_exp_storage<Arg2>::type arg2;
+ typename mp_exp_storage<Arg1>::type arg1;
+ typename mp_exp_storage<Arg2>::type arg2;
 };
 
 template <class tag, class Arg1, class Arg2, class Arg3>
@@ -326,9 +326,9 @@
    static const unsigned right_depth = right_type::depth + 1;
    static const unsigned depth = left_depth > right_depth ? (left_depth > middle_depth ? left_depth : middle_depth) : (right_depth > middle_depth ? right_depth : middle_depth);
 private:
- typename big_number_exp_storage<Arg1>::type arg1;
- typename big_number_exp_storage<Arg2>::type arg2;
- typename big_number_exp_storage<Arg3>::type arg3;
+ typename mp_exp_storage<Arg1>::type arg1;
+ typename mp_exp_storage<Arg2>::type arg2;
+ typename mp_exp_storage<Arg3>::type arg3;
 };
 
 } // namespace detail

Modified: sandbox/big_number/boost/multiprecision/mp_number.hpp
==============================================================================
--- sandbox/big_number/boost/multiprecision/mp_number.hpp (original)
+++ sandbox/big_number/boost/multiprecision/mp_number.hpp 2011-10-03 13:15:55 EDT (Mon, 03 Oct 2011)
@@ -1384,37 +1384,37 @@
 {
 
 template <class Backend>
-inline int big_number_compare(const mp_number<Backend>& a, const mp_number<Backend>& b)
+inline int mp_number_compare(const mp_number<Backend>& a, const mp_number<Backend>& b)
 {
    return a.compare(b);
 }
 
 template <class Backend, class tag, class A1, class A2, class A3>
-inline int big_number_compare(const mp_number<Backend>& a, const mp_exp<tag, A1, A2, A3>& b)
+inline int mp_number_compare(const mp_number<Backend>& a, const mp_exp<tag, A1, A2, A3>& b)
 {
    return a.compare(mp_number<Backend>(b));
 }
 
 template <class tag, class A1, class A2, class A3, class Backend>
-inline int big_number_compare(const mp_exp<tag, A1, A2, A3>& a, const mp_number<Backend>& b)
+inline int mp_number_compare(const mp_exp<tag, A1, A2, A3>& a, const mp_number<Backend>& b)
 {
    return -b.compare(mp_number<Backend>(a));
 }
 
 template <class Backend, class Val>
-inline int big_number_compare(const mp_number<Backend>& a, const Val b)
+inline int mp_number_compare(const mp_number<Backend>& a, const Val b)
 {
    return a.compare(b);
 }
 
 template <class Val, class Backend>
-inline int big_number_compare(const Val a, const mp_number<Backend>& b)
+inline int mp_number_compare(const Val a, const mp_number<Backend>& b)
 {
    return -b.compare(a);
 }
 
 template <class tag, class A1, class A2, class A3, class tag2, class A1b, class A2b, class A3b>
-inline int big_number_compare(const mp_exp<tag, A1, A2, A3>& a, const mp_exp<tag2, A1b, A2b, A3b>& b)
+inline int mp_number_compare(const mp_exp<tag, A1, A2, A3>& a, const mp_exp<tag2, A1b, A2b, A3b>& b)
 {
    typedef typename mp_exp<tag, A1, A2, A3>::result_type real1;
    typedef typename mp_exp<tag2, A1b, A2b, A3b>::result_type real2;
@@ -1422,7 +1422,7 @@
 }
 
 template <class tag, class A1, class A2, class A3, class Val>
-inline typename enable_if<is_arithmetic<Val>, int>::type big_number_compare(const mp_exp<tag, A1, A2, A3>& a, const Val b)
+inline typename enable_if<is_arithmetic<Val>, int>::type mp_number_compare(const mp_exp<tag, A1, A2, A3>& a, const Val b)
 {
    typedef typename mp_exp<tag, A1, A2, A3>::result_type real;
    real t(a);
@@ -1430,7 +1430,7 @@
 }
 
 template <class Val, class tag, class A1, class A2, class A3>
-inline typename enable_if<is_arithmetic<Val>, int>::type big_number_compare(const Val a, const mp_exp<tag, A1, A2, A3>& b)
+inline typename enable_if<is_arithmetic<Val>, int>::type mp_number_compare(const Val a, const mp_exp<tag, A1, A2, A3>& b)
 {
    typedef typename mp_exp<tag, A1, A2, A3>::result_type real;
    return -real(b).compare(a);
@@ -1440,12 +1440,12 @@
 struct is_valid_comparison_imp
 {
    typedef typename mpl::or_<
- is_big_number<Exp1>,
- is_big_number_exp<Exp1>
+ is_mp_number<Exp1>,
+ is_mp_number_exp<Exp1>
>::type is1;
    typedef typename mpl::or_<
- is_big_number<Exp2>,
- is_big_number_exp<Exp2>
+ is_mp_number<Exp2>,
+ is_mp_number_exp<Exp2>
>::type is2;
    typedef typename mpl::or_<
       mpl::and_<
@@ -1475,42 +1475,42 @@
 inline typename boost::enable_if<detail::is_valid_comparison<Exp1, Exp2>, bool>::type
    operator == (const Exp1& a, const Exp2& b)
 {
- return 0 == detail::big_number_compare(a, b);
+ return 0 == detail::mp_number_compare(a, b);
 }
 
 template <class Exp1, class Exp2>
 inline typename boost::enable_if<detail::is_valid_comparison<Exp1, Exp2>, bool>::type
    operator != (const Exp1& a, const Exp2& b)
 {
- return 0 != detail::big_number_compare(a, b);
+ return 0 != detail::mp_number_compare(a, b);
 }
 
 template <class Exp1, class Exp2>
 inline typename boost::enable_if<detail::is_valid_comparison<Exp1, Exp2>, bool>::type
    operator <= (const Exp1& a, const Exp2& b)
 {
- return 0 >= detail::big_number_compare(a, b);
+ return 0 >= detail::mp_number_compare(a, b);
 }
 
 template <class Exp1, class Exp2>
 inline typename boost::enable_if<detail::is_valid_comparison<Exp1, Exp2>, bool>::type
    operator < (const Exp1& a, const Exp2& b)
 {
- return 0 > detail::big_number_compare(a, b);
+ return 0 > detail::mp_number_compare(a, b);
 }
 
 template <class Exp1, class Exp2>
 inline typename boost::enable_if<detail::is_valid_comparison<Exp1, Exp2>, bool>::type
    operator >= (const Exp1& a, const Exp2& b)
 {
- return 0 <= detail::big_number_compare(a, b);
+ return 0 <= detail::mp_number_compare(a, b);
 }
 
 template <class Exp1, class Exp2>
 inline typename boost::enable_if<detail::is_valid_comparison<Exp1, Exp2>, bool>::type
    operator > (const Exp1& a, const Exp2& b)
 {
- return 0 < detail::big_number_compare(a, b);
+ return 0 < detail::mp_number_compare(a, b);
 }
 
 template <class Backend>

Modified: sandbox/big_number/libs/multiprecision/test/mp_number_concept_check.cpp
==============================================================================
--- sandbox/big_number/libs/multiprecision/test/mp_number_concept_check.cpp (original)
+++ sandbox/big_number/libs/multiprecision/test/mp_number_concept_check.cpp 2011-10-03 13:15:55 EDT (Mon, 03 Oct 2011)
@@ -57,7 +57,7 @@
 void foo()
 {
 #ifdef TEST_BACKEND
- instantiate(boost::multiprecision::big_number_real_architype());
+ instantiate(boost::multiprecision::mp_number_real_architype());
 #endif
 #ifdef TEST_MPF_50
    instantiate(boost::multiprecision::mpf_real_50());
@@ -79,7 +79,7 @@
 int main()
 {
 #ifdef TEST_BACKEND
- BOOST_CONCEPT_ASSERT((boost::math::concepts::RealTypeConcept<boost::math::concepts::big_number_real_architype>));
+ BOOST_CONCEPT_ASSERT((boost::math::concepts::RealTypeConcept<boost::math::concepts::mp_number_real_architype>));
 #endif
 #ifdef TEST_MPF_50
    BOOST_CONCEPT_ASSERT((boost::math::concepts::RealTypeConcept<boost::multiprecision::mpf_real_50>));

Modified: sandbox/big_number/libs/multiprecision/test/test_arithmetic.cpp
==============================================================================
--- sandbox/big_number/libs/multiprecision/test/test_arithmetic.cpp (original)
+++ sandbox/big_number/libs/multiprecision/test/test_arithmetic.cpp 2011-10-03 13:15:55 EDT (Mon, 03 Oct 2011)
@@ -859,7 +859,7 @@
 int main()
 {
 #ifdef TEST_BACKEND
- test<boost::multiprecision::mp_number<boost::multiprecision::concepts::big_number_backend_real_architype> >();
+ test<boost::multiprecision::mp_number<boost::multiprecision::concepts::mp_number_backend_real_architype> >();
 #endif
 #ifdef TEST_MPF50
    test<boost::multiprecision::mpf_real_50>();

Modified: sandbox/big_number/libs/multiprecision/test/test_exp.cpp
==============================================================================
--- sandbox/big_number/libs/multiprecision/test/test_exp.cpp (original)
+++ sandbox/big_number/libs/multiprecision/test/test_exp.cpp 2011-10-03 13:15:55 EDT (Mon, 03 Oct 2011)
@@ -113,7 +113,7 @@
 int main()
 {
 #ifdef TEST_BACKEND
- test<boost::multiprecision::mp_number<boost::multiprecision::concepts::big_number_backend_real_architype> >();
+ test<boost::multiprecision::mp_number<boost::multiprecision::concepts::mp_number_backend_real_architype> >();
 #endif
 #ifdef TEST_MPF50
    test<boost::multiprecision::mpf_real_50>();

Modified: sandbox/big_number/libs/multiprecision/test/test_numeric_limits.cpp
==============================================================================
--- sandbox/big_number/libs/multiprecision/test/test_numeric_limits.cpp (original)
+++ sandbox/big_number/libs/multiprecision/test/test_numeric_limits.cpp 2011-10-03 13:15:55 EDT (Mon, 03 Oct 2011)
@@ -138,7 +138,7 @@
 int main()
 {
 #ifdef TEST_BACKEND
- test<boost::multiprecision::mp_number<boost::multiprecision::concepts::big_number_backend_real_architype> >();
+ test<boost::multiprecision::mp_number<boost::multiprecision::concepts::mp_number_backend_real_architype> >();
 #endif
 #ifdef TEST_MPF50
    test<boost::multiprecision::mpf_real_50>();


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