cgal/Kernel_23/test/Kernel_23/include/CGAL/Precise_numbers.h

28 lines
667 B
C++

// Copyright (c) 2001
// 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$
// $Id$
// SPDX-License-Identifier: LGPL-3.0-or-later
//
//
// Author(s) : Sylvain Pion
#ifndef CGAL_PRECISE_NUMBERS_H
#define CGAL_PRECISE_NUMBERS_H
#include <CGAL/config.h>
#include <CGAL/Exact_integer.h>
#include <CGAL/Exact_rational.h>
using Precise_integer = CGAL::Exact_integer;
using Precise_rational = CGAL::Exact_rational;
#endif // CGAL_PRECISE_NUMBERS_H