\( \newcommand{\E}{\mathrm{E}} \) \( \newcommand{\A}{\mathrm{A}} \) \( \newcommand{\R}{\mathrm{R}} \) \( \newcommand{\N}{\mathrm{N}} \) \( \newcommand{\Q}{\mathrm{Q}} \) \( \newcommand{\Z}{\mathrm{Z}} \) \( \def\ccSum #1#2#3{ \sum_{#1}^{#2}{#3} } \def\ccProd #1#2#3{ \sum_{#1}^{#2}{#3} }\)
CGAL 4.7 - Number Types
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Groups Pages
CGAL::Rational_traits< NT > Class Template Reference

#include <CGAL/Rational_traits.h>

Definition

The class Rational_traits can be used to determine the type of the numerator and denominator of a rational number type as Quotient, Gmpq, mpq_class or leda_rational.

Types

typedef unspecified_type RT
 the type of the numerator and denominator. More...
 

Operations

RT numerator (const NT &r) const
 returns the numerator of r. More...
 
RT denominator (const NT &r) const
 returns the denominator of r. More...
 
NT make_rational (const NT &x) const
 returns self. More...
 
NT make_rational (const std::pair< RT, RT > &p) const
 constructs a rational number p.first/p.second. More...
 
NT make_rational (const RT &n, const RT &d) const
 constructs a rational number. More...
 
NT make_rational (const NT &n, const NT &d) const
 constructs a rational number. More...
 

Member Typedef Documentation

template<typename NT >
typedef unspecified_type CGAL::Rational_traits< NT >::RT

the type of the numerator and denominator.

Member Function Documentation

template<typename NT >
RT CGAL::Rational_traits< NT >::denominator ( const NT &  r) const

returns the denominator of r.

template<typename NT >
NT CGAL::Rational_traits< NT >::make_rational ( const NT &  x) const

returns self.

template<typename NT >
NT CGAL::Rational_traits< NT >::make_rational ( const std::pair< RT, RT > &  p) const

constructs a rational number p.first/p.second.

template<typename NT >
NT CGAL::Rational_traits< NT >::make_rational ( const RT n,
const RT d 
) const

constructs a rational number.

template<typename NT >
NT CGAL::Rational_traits< NT >::make_rational ( const NT &  n,
const NT &  d 
) const

constructs a rational number.

template<typename NT >
RT CGAL::Rational_traits< NT >::numerator ( const NT &  r) const

returns the numerator of r.