📄 coredefs.h
字号:
/**************************************************************************** * Core Library Version 1.7, August 2004 * Copyright (c) 1995-2004 Exact Computation Project * All rights reserved. * * This file is part of CORE (http://cs.nyu.edu/exact/core/); you may * redistribute it under the terms of the Q Public License version 1.0. * See the file LICENSE.QPL distributed with CORE. * * 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. * * * File: CoreDefs.h * Synopsis: * This contains useful Core Library global parameters which * users may modify at runtime or compile time * For each parameter, we provide corresponding methods to * modify or examine the values. * * Written by * Chee Yap <yap@cs.nyu.edu> * Chen Li <chenli@cs.nyu.edu> * Zilin Du <zilin@cs.nyu.edu> * * WWW URL: http://cs.nyu.edu/exact/ * Email: exact@cs.nyu.edu * * $URL: svn+ssh://scm.gforge.inria.fr/svn/cgal/branches/CGAL-3.3-branch/Core/include/CGAL/CORE/CoreDefs.h $ * $Id: CoreDefs.h 37060 2007-03-13 18:10:39Z reichel $ ***************************************************************************/#ifndef _CORE_COREDEFS_H_#define _CORE_COREDEFS_H_#include <CGAL/CORE/extLong.h>CORE_BEGIN_NAMESPACE//////////////////////////////////////////////////////////////// defined constants///////////////////////////////////////////////////////////////// default accuracy level#define DEFAULT_CORE_LEVEL 3/// short hand for positive infinity#define CORE_INFTY (CORE_posInfty)//////////////////////////////////////////////////////////////// global precision parameters///////////////////////////////////////////////////////////////// Abort Flag -- default value is true/** The normal behavior is to abort when an invalid expression * is constructed. This flag can be used to turn off this abort. * In any case, an error message will be printed */extern bool AbortFlag;/// Invalid Flag -- initiallly value is non-negative/** If the Abort Flag is false, then the Invalid flag will be set to * a negative value whenever an invalid expression is constructed. * It is the user's responsibility to check this flag and to make * it non-negative again. */extern int InvalidFlag;/// Escape Precision in bitsextern extLong EscapePrec;/// current ur when EscapePrec triggered/** this flag becomes negative when default EscapePrec is applied */extern long EscapePrecFlag;/// Escape Precision Warning Flag/** this flag is true by default, and will cause a warning to be printed when EscapePrec is reached */extern bool EscapePrecWarning;// These following two values determine the precision of computing// approximations in Expr./// default Relative Precision in bitsextern extLong defRelPrec;/// default Absolute Precision in bitsextern extLong defAbsPrec;/// default # of decimal digits for conversion from a BF to string./** This value cannot be CORE_INFTY. See also defOutputDigits. *//* QUESTION: the following comment seems to contradict the above comment: "controls the printout precision of std::cout for BigFloat" Perhaps, we should merge defOutputDigits and defBigFloatOutputDigits? */extern long defBigFloatOutputDigits;/// default input precision in digits for converting a string to a Real or Expr/** This value can be CORE_INFTY */extern extLong defInputDigits;/// controls the printout precision of std::cout for Real and Expr/** This value cannot be CORE_INFTY See also defBigFloatOutputDigits. (it really should be an int, as in std::cout.setprecision(int)). */extern long defOutputDigits;/// default input precision in digits for converting a string to a BigFloat/** This value cannot be CORE_INFTY. */extern long defBigFloatInputDigits;/// default BigFloat Division Relative Precisionextern extLong defBFdivRelPrec;/// default BigFloat Sqrt Absolute Precisionextern extLong defBFsqrtAbsPrec;//////////////////////////////////////////////////////////////// Mode parameters: incremental, progressive, filters///////////////////////////////////////////////////////////////// floating point filter flagextern bool fpFilterFlag;/// if true, evaluation of expressions would be incrementalextern bool incrementalEvalFlag;/// progressive evaluation flagextern bool progressiveEvalFlag;/// rational reduction flagextern bool rationalReduceFlag;/// default initial (bit) precision for AddSub Progressive Evaluationextern long defInitialProgressivePrec;//////////////////////////////////////////////////////////////// methods for setting global precision parameters// including: scientific vs. positional format// All the set methods return the previous global value if any///////////////////////////////////////////////////////////////// set default composite precision [defAbsPrec, defRelPrec]/** It determines the precision to which an Expr evaluates its (exact, implicit) constant value. */inline void setDefaultPrecision(const extLong &r, const extLong &a) { defRelPrec = r; defAbsPrec = a;}/// set default relative precisioninline extLong setDefaultRelPrecision(const extLong &r) { extLong old = defRelPrec; defRelPrec = r; return old;}/// set default absolute precisioninline extLong setDefaultAbsPrecision(const extLong &a) { extLong old = defAbsPrec; defAbsPrec = a; return old;}/// set default input digits (for Expr, Real)/** it controls the absolute error */inline extLong setDefaultInputDigits(const extLong &d) { extLong old = defInputDigits; defInputDigits = d; return old;}/// set default output digits (for Expr, Real)inline long setDefaultOutputDigits(long d = defOutputDigits, std::ostream& o = std::cout) { long old = defOutputDigits; defOutputDigits = d; o.precision(d); return old;}/// set default input digits for BigFloatinline long setDefaultBFInputDigits(long d) { long old = defBigFloatInputDigits; defBigFloatInputDigits = d; return old;}/// set default output digits for BigFloatinline long setDefaultBFOutputDigits(long d) { long old = defBigFloatOutputDigits; defBigFloatOutputDigits = d; return old;}/// turn floating-point filter on/offinline bool setFpFilterFlag(bool f) { bool oldf = fpFilterFlag; fpFilterFlag = f; return oldf;}/// turn incremental evaluation flag on/offinline bool setIncrementalEvalFlag(bool f) { bool oldf = incrementalEvalFlag; incrementalEvalFlag = f; return oldf;}/// turn progressive evaluation flag on/offinline bool setProgressiveEvalFlag(bool f) { bool oldf = progressiveEvalFlag; progressiveEvalFlag = f; return oldf;}/// set initial bit precision for progressive evaluation:inline long setDefInitialProgressivePrec(long n) { long oldn = defInitialProgressivePrec; defInitialProgressivePrec = n; return oldn;}/// turn rational reduction flag on/offinline bool setRationalReduceFlag(bool f) { bool oldf = rationalReduceFlag; rationalReduceFlag = f; return oldf;}/// CORE_init(..) is the CORE initialization function./** We recommend calling it before anything else. Originally motivated by need to get around gnu's compiler bug in which the variable "defAbsPrec" was not properly initialized. But it has other uses, e.g., overriding the default std::cout precision (most systems initializes this value to 6) to our own */inline void CORE_init(long d) { defAbsPrec = CORE_posInfty; defOutputDigits = d; std::setprecision(defOutputDigits);}/// change to scientific output formatinline void setScientificFormat(std::ostream& o = std::cout) { o.setf(std::ios::scientific, std::ios::floatfield);}/// change to positional output formatinline void setPositionalFormat(std::ostream& o = std::cout) { o.setf(std::ios::fixed, std::ios::floatfield);}CORE_END_NAMESPACE#endif // _CORE_COREDEFS_H_
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -