This file is indexed.

/usr/include/polybori/groebner/pairs.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
/*
 *  pairs.h
 *  PolyBoRi
 *
 *  Created by Michael Brickenstein on 19.04.06.
 *  Copyright 2006 The PolyBoRi Team. See LICENSE file.
 *
 */

#ifndef PB_PAIR_H
#define PB_PAIR_H

#include "PolyEntry.h"
#include "PairData.h"
#include "IJPairData.h"
#include "PolyPairData.h"
#include "VariablePairData.h"
#include "PairLS.h"
#include "PairE.h"
#include "PairLSCompare.h"
#include "PairECompare.h"

#include <functional>
#include "groebner_defs.h"

#include <boost/shared_ptr.hpp>
#include <queue>
#include <algorithm>
#include <utility>
#include <set>

BEGIN_NAMESPACE_PBORIGB

//using std::less;





typedef PairE Pair;

 END_NAMESPACE_PBORIGB

#endif