// Copyright (c) 2003 INRIA Sophia-Antipolis (France). // 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 // General Public License as published by the Free Software Foundation, // either version 3 of the License, or (at your option) any later version. // // 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) : Menelaos Karavelas #ifndef CGAL_MORE_FUNCTIONS_ON_SIGNS_H #define CGAL_MORE_FUNCTIONS_ON_SIGNS_H #include namespace CGAL { inline Sign sign_of_first_root(const Sign &sb, const Sign &sc) { // this method computes the sign of the second root of the quadratic // equation: a x^2 - b x + c == 0. It is assumed that the sign of a // is +1. if ( sc == NEGATIVE ) return NEGATIVE; if ( sb == POSITIVE ) return sc; if ( sb == NEGATIVE ) return NEGATIVE; return opposite(sc); } inline Sign sign_of_second_root(const Sign &sb, const Sign &sc) { // this method computes the sign of the first root of the quadratic // equation: a x^2 - b x + c == 0. It is assumed that the sign of a // is +1. if ( sc == NEGATIVE ) return POSITIVE; if ( sb == POSITIVE ) return POSITIVE; if ( sb == NEGATIVE ) return opposite(sc); return sc; } } //namespace CGAL #endif // CGAL_MORE_FUNCTIONS_ON_SIGNS_H