// Copyright (c) 1999-2005 Utrecht University (The Netherlands), // ETH Zurich (Switzerland), Freie Universitaet Berlin (Germany), // INRIA Sophia-Antipolis (France), Martin-Luther-University Halle-Wittenberg // (Germany), Max-Planck-Institute Saarbruecken (Germany), RISC Linz (Austria), // and Tel-Aviv University (Israel). All rights reserved. // // This file is part of CGAL (www.cgal.org); you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License as // published by the Free Software Foundation; version 2.1 of the License. // See the file LICENSE.LGPL distributed with CGAL. // // Licensees holding a valid commercial license may use this file in // accordance with the commercial license agreement provided with the software. // // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. // // $URL$ // $Id$ // // // Author(s) : Sylvain Pion #ifndef CGAL_LAZY_EXACT_NT_FWD_H #define CGAL_LAZY_EXACT_NT_FWD_H // Forward declarations of functions on Lazy_exact_nt. #include CGAL_BEGIN_NAMESPACE template class Lazy_exact_nt; template double to_double(const Lazy_exact_nt &); template std::pair to_interval(const Lazy_exact_nt &); template Sign sign(const Lazy_exact_nt &); template Comparison_result compare(const Lazy_exact_nt &, const Lazy_exact_nt &); template Lazy_exact_nt abs(const Lazy_exact_nt &); template Lazy_exact_nt square(const Lazy_exact_nt &); template Lazy_exact_nt sqrt(const Lazy_exact_nt &); template Lazy_exact_nt min(const Lazy_exact_nt &, const Lazy_exact_nt &); template Lazy_exact_nt max(const Lazy_exact_nt &, const Lazy_exact_nt &); template bool is_finite(const Lazy_exact_nt &); template bool is_valid(const Lazy_exact_nt &); template Lazy_exact_nt gcd(const Lazy_exact_nt &, const Lazy_exact_nt &); #if 0 // to be finished template < typename ET > Lazy_exact_nt< typename Root_of_traits::RootOf_2 > make_root_of_2( const Lazy_exact_nt &a, const Lazy_exact_nt &b, const Lazy_exact_nt &c, bool d); #endif CGAL_END_NAMESPACE #endif // CGAL_LAZY_EXACT_NT_FWD_H