/usr/include/polybori/groebner/PSCompareByEl.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 | // -*- c++ -*-
//*****************************************************************************
/** @file PSCompareByEl.h
*
* @author Michael Brickenstein
* @date 2011-06-30
*
* This file includes the definition of the class @c PSCompareByEl.
*
* @par Copyright:
* (c) 2006-2010 by The PolyBoRi Team
*
**/
//*****************************************************************************
#ifndef polybori_groebner_PSCompareByEl_h_
#define polybori_groebner_PSCompareByEl_h_
// include basic definitions
#include "groebner_defs.h"
BEGIN_NAMESPACE_PBORIGB
/** @class PSCompareByEl
* @brief This class defines PSCompareByEl.
*
**/
class PSCompareByEl{
public:
bool operator() (const PolynomialSugar& p1, const PolynomialSugar& p2){
return ((p1.getSugar()<p2.getSugar()) ||((p1.getSugar()<=p2.getSugar()) && (p1.eliminationLength()<p2.eliminationLength())));
}
};
END_NAMESPACE_PBORIGB
#endif /* polybori_PSCompareByEl_h_ */
|