/usr/include/polybori/groebner/LeadingTerms11.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 | // -*- c++ -*-
//*****************************************************************************
/** @file LeadingTerms11.h
*
* @author Michael Brickenstein (original) and Alexander Dreyer (refactored)
* @date 2012-01-31
*
* This file includes the definition of the class @c LeadingTerms11.
*
* @par Copyright:
* (c) 2006-2012 by The PolyBoRi Team
*
**/
//*****************************************************************************
#ifndef polybori_groebner_LeadingTerms11_h_
#define polybori_groebner_LeadingTerms11_h_
#include "TermsFacade.h"
#include "PolyEntry.h"
// include basic definitions
#include "groebner_defs.h"
BEGIN_NAMESPACE_PBORIGB
/** @class LeadingTerms11
* @brief This class defines LeadingTerms11.
*
**/
class LeadingTerms11:
public TermsFacade<LeadingTerms11> {
public:
template <class Type>
LeadingTerms11(const Type& rhs): TermsFacade<LeadingTerms11>(rhs) {}
bool isCompatible(const PolyEntry& entry) const {
return entry.literal_factors.is11Factorization();
}
};
END_NAMESPACE_PBORIGB
#endif /* polybori_groebner_LeadingTerms11_h_ */
|