1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
// Copyright (c) 2014
// Utrecht University (The Netherlands),
// ETH Zurich (Switzerland),
// INRIA Sophia-Antipolis (France),
// Max-Planck-Institute Saarbruecken (Germany),
// and Tel-Aviv University (Israel). All rights reserved.
//
// This file is part of CGAL (www.cgal.org)
//
// $URL: https://github.com/CGAL/cgal/blob/v6.1/Number_types/include/CGAL/Exact_integer.h $
// $Id: include/CGAL/Exact_integer.h b26b07a1242 $
// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial
//
//
// Author(s) : Laurent Rineau
#ifndef CGAL_EXACT_INTEGER_H
#define CGAL_EXACT_INTEGER_H
#include <CGAL/Number_types/internal/Exact_type_selector.h>
namespace CGAL {
/*!
\ingroup nt_cgal
`Exact_integer` is an exact integer number type.
It is a typedef of another number type. Its exact definition depends on
the availability the third-party libraries \gmp and \leda.
\cgalModels{EuclideanRing,RealEmbeddable}
*/
#if DOXYGEN_RUNNING
typedef unspecified_type Exact_integer;
#else // not DOXYGEN_RUNNING
using Exact_integer = internal::Exact_NT_backend<internal::Default_exact_nt_backend>::Integer;
#endif // not DOXYGEN_RUNNING
} /* end namespace CGAL */
#endif // CGAL_EXACT_INTEGER_H
|