📄 qp_solver_bounds_impl.h
字号:
// Copyright (c) 1997-2007 ETH Zurich (Switzerland).// All rights reserved.//// This file is part of CGAL (www.cgal.org); you may redistribute it under// the terms of the Q Public License version 1.0.// See the file LICENSE.QPL 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: svn+ssh://scm.gforge.inria.fr/svn/cgal/branches/CGAL-3.3-branch/QP_solver/include/CGAL/QP_solver/QP_solver_bounds_impl.h $// $Id: QP_solver_bounds_impl.h 38453 2007-04-27 00:34:44Z gaertner $// //// Author(s) : Sven Schoenherr// Bernd Gaertner <gaertner@inf.ethz.ch>// Franz Wessendorp// Kaspar FischerCGAL_BEGIN_NAMESPACEtemplate < typename Q, typename ET, typename Tags >bool QP_solver<Q, ET, Tags>::has_finite_lower_bound(int i) const // Given an index of an original or slack variable, returns whether // or not the variable has a finite lower bound.{ CGAL_qpe_assertion(i < qp_n + static_cast<int>(slack_A.size())); return i>=qp_n || check_tag(Is_nonnegative()) || *(qp_fl+i);}template < typename Q, typename ET, typename Tags >bool QP_solver<Q, ET, Tags>::has_finite_upper_bound(int i) const // Given an index of an original or slack variable, returns whether // or not the variable has a finite upper bound.{ CGAL_qpe_assertion(i < qp_n + static_cast<int>(slack_A.size())); return i<qp_n && !check_tag(Is_nonnegative()) && *(qp_fu+i);}template < typename Q, typename ET, typename Tags >ET QP_solver<Q, ET, Tags>::lower_bound(int i) const // Given an index of an original or slack variable, returns its // lower bound.{ CGAL_qpe_assertion(i < qp_n + static_cast<int>(slack_A.size())); if (i < qp_n) // original variable? if (check_tag(Is_nonnegative())) return et0; else { CGAL_qpe_assertion(has_finite_lower_bound(i)); return *(qp_l+i); } else // slack variable? return et0;}template < typename Q, typename ET, typename Tags >ET QP_solver<Q, ET, Tags>::upper_bound(int i) const // Given an index of an original variable, returns its upper bound.{ CGAL_qpe_assertion(i < qp_n); // Note: slack variables cannot have // finite upper bounds. CGAL_qpe_assertion(has_finite_upper_bound(i)); return *(qp_u+i);}template < typename Q, typename ET, typename Tags >typename QP_solver<Q, ET, Tags>::BndQP_solver<Q, ET, Tags>::lower_bnd(int i) const // Given an index of an original, slack, or artificial variable, // return its lower bound.{ if (i < qp_n) { // original variable? const bool is_finite = has_finite_lower_bound(i); return Bnd(false, is_finite, is_finite? lower_bound(i) : ET(0)); } else // slacky or art. var.? return Bnd(false, true, ET(0));}template < typename Q, typename ET, typename Tags >typename QP_solver<Q, ET, Tags>::BndQP_solver<Q, ET, Tags>::upper_bnd(int i) const // Given an index of an original, slack, or artificial variable, // return its upper bound.{ if (i < qp_n) { // original variable? const bool is_finite = has_finite_upper_bound(i); return Bnd(true, is_finite, is_finite? upper_bound(i) : ET(0)); } else // slacky or art. var.? return Bnd(true, false, ET(0));}CGAL_END_NAMESPACE// ===== EOF ==================================================================
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -