This file is indexed.

/usr/include/polybori/groebner/SetAssociatedMinimal.h is in libpolybori-groebner-dev 0.8.3-3+b2.

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 SetAssociatedMinimal.h 
 *
 * @author Michael Brickenstein (original) and Alexander Dreyer (refactored)
 * @date 2012-01-31 
 *
 * This file includes the definition of the class @c SetAssociatedMinimal.
 *
 * @par Copyright:
 *   (c) 2006-2012 by The PolyBoRi Team
 *
**/
//*****************************************************************************

#ifndef polybori_groebner_SetAssociatedMinimal_h_
#define polybori_groebner_SetAssociatedMinimal_h_

// include basic definitions
#include "groebner_defs.h"

#include "PolyEntryVector.h"

BEGIN_NAMESPACE_PBORIGB

/** @class SetAssociatedMinimal
 * @brief This class set the attribute @c minimal of a given index to a
 * valued selected by the template parameter @c Value.
 *
 **/
template <class KeyType, bool Value>
class SetAssociatedMinimal {
public:
  SetAssociatedMinimal(PolyEntryVector& strat): m_strat(strat) {}

  void operator()(const KeyType& key) const { 
    m_strat(key).minimal = Value;
  }

private:
  PolyEntryVector& m_strat;
};
END_NAMESPACE_PBORIGB

#endif /* polybori_groebner_SetAssociatedMinimal_h_ */