/usr/include/polybori/groebner/GroebnerOptions.h is in libbrial-groebner-dev 1.2.0-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | // -*- c++ -*-
//*****************************************************************************
/** @file GroebnerOptions.h
*
* @author Michael Brickenstein (original), Alexander Dreyer (refactored)
* @date 2012-02-03
*
* This file includes the definition of the class @c GroebnerOptions.
*
* @par Copyright:
* (c) 2006-2012 by The PolyBoRi Team
*
**/
//*****************************************************************************
#ifndef polybori_GroebnerOptions_h_
#define polybori_GroebnerOptions_h_
// include basic definitions
#include "groebner_defs.h"
#include <string>
BEGIN_NAMESPACE_PBORIGB
/** @class GroebnerOptions
* @brief This class defines options settings for @c GroebnerStrategy.
*
* @note: For most option values we give fixed defaults, but @c
* optRedTailInLastBlock and @c optLazy are problem dependent.
**/
class GroebnerOptions {
public:
/// Constructor with default settings
GroebnerOptions(bool redTailInLastBlock = false, bool lazy = false):
optRedTailInLastBlock(redTailInLastBlock), optLazy(lazy),
matrixPrefix("mat"), optDrawMatrices(false),
optModifiedLinearAlgebra(false), optDelayNonMinimals(true),
enabledLog(false), optExchange(true), optHFE(false), optStepBounded(false),
optAllowRecursion(true), optLinearAlgebraInLastBlock(true),
reduceByTailReduced(false) { }
bool optRedTailInLastBlock;
bool optLazy;
std::string matrixPrefix;
bool optDrawMatrices;
bool optModifiedLinearAlgebra;
bool optDelayNonMinimals;
bool enabledLog;
bool optExchange;
bool optHFE;
bool optStepBounded;
bool optAllowRecursion;
bool optLinearAlgebraInLastBlock;
bool reduceByTailReduced;
};
END_NAMESPACE_PBORIGB
#endif /* polybori_GroebnerOptions_h_ */
|