forgot to save

This commit is contained in:
Andreas Fabri 2025-12-02 21:44:59 +00:00
parent 52e4bb845e
commit 29573638c3
1 changed files with 16 additions and 13 deletions

View File

@ -1,40 +1,43 @@
namespace boost { namespace multiprecision {
/*! /*!
\ingroup nt_gmp \ingroup nt_boost
The class `mpq_class` is an exact multiprecision rational number type, The class `cpp_rational` is an exact multiprecision rational number type,
provided by \gmp. provided by \boost.
CGAL provides the necessary functions to make it compliant to the number type CGAL provides the necessary functions to make it compliant to the number type
concept. concept.
\cgalModels{Field,RealEmbeddable,Fraction} \cgalModels{Field,RealEmbeddable,Fraction}
See the \gmp documentation for additional details. See the \boost documentation for additional details on
<a href="https://www.boost.org/doc/libs/latest/libs/multiprecision/doc/html/boost_multiprecision/tut/rational.html">Boost Multiprecision Rational Types</a>
*/ */
class mpq_class { class cpp_rational {
}; /* end mpq_class */ };
/*! /*!
\ingroup nt_gmp \ingroup nt_boost
The class `mpz_class` is an exact multiprecision integer number type, The class `cpp_int` is an exact multiprecision integer number type,
provided by \gmp. provided by \boost.
CGAL provides the necessary functions to make it compliant to the number type CGAL provides the necessary functions to make it compliant to the number type
concept. concept.
\cgalModels{EuclideanRing,RealEmbeddable} \cgalModels{EuclideanRing,RealEmbeddable}
See the \gmp documentation for additional details. See the \boost documentation for additional details on
<a href="https://www.boost.org/doc/libs/latest/libs/multiprecision/doc/html/boost_multiprecision/tut/ints.html">Boost Multiprecision Integer Types</a>
*/ */
class mpz_class { class cpp_int {
}; /* end mpz_class */ };
}} //namespace boost::multiprecision