cgal/Core/include/CGAL/CORE/CoreDefs.h

254 lines
7.8 KiB
C++

/****************************************************************************
* 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$
* $Id$
***************************************************************************/
#ifndef _CORE_COREDEFS_H_
#define _CORE_COREDEFS_H_
#include <CGAL/CORE/extLong.h>
namespace CORE {
//////////////////////////////////////////////////////////////
// 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 bits
extern 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 bits
extern extLong defRelPrec;
/// default Absolute Precision in bits
extern 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 Precision
extern extLong defBFdivRelPrec;
/// default BigFloat Sqrt Absolute Precision
extern extLong defBFsqrtAbsPrec;
//////////////////////////////////////////////////////////////
// Mode parameters: incremental, progressive, filters
//////////////////////////////////////////////////////////////
/// floating point filter flag
extern bool fpFilterFlag;
/// if true, evaluation of expressions would be incremental
extern bool incrementalEvalFlag;
/// progressive evaluation flag
extern bool progressiveEvalFlag;
/// rational reduction flag
extern bool rationalReduceFlag;
/// default initial (bit) precision for AddSub Progressive Evaluation
extern 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 precision
inline extLong setDefaultRelPrecision(const extLong &r) {
extLong old = defRelPrec;
defRelPrec = r;
return old;
}
/// set default absolute precision
inline 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 BigFloat
inline long setDefaultBFInputDigits(long d) {
long old = defBigFloatInputDigits;
defBigFloatInputDigits = d;
return old;
}
/// set default output digits for BigFloat
inline long setDefaultBFOutputDigits(long d) {
long old = defBigFloatOutputDigits;
defBigFloatOutputDigits = d;
return old;
}
/// turn floating-point filter on/off
inline bool setFpFilterFlag(bool f) {
bool oldf = fpFilterFlag;
fpFilterFlag = f;
return oldf;
}
/// turn incremental evaluation flag on/off
inline bool setIncrementalEvalFlag(bool f) {
bool oldf = incrementalEvalFlag;
incrementalEvalFlag = f;
return oldf;
}
/// turn progressive evaluation flag on/off
inline 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/off
inline 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 format
inline void setScientificFormat(std::ostream& o = std::cout) {
o.setf(std::ios::scientific, std::ios::floatfield);
}
/// change to positional output format
inline void setPositionalFormat(std::ostream& o = std::cout) {
o.setf(std::ios::fixed, std::ios::floatfield);
}
} //namespace CORE
#endif // _CORE_COREDEFS_H_