This file is indexed.

/usr/include/singular/factory/templates/ftmpl_afactor.h is in libsingular4-dev-common 1:4.1.0-p3+ds-2build1.

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
/* emacs edit mode for this file is -*- C++ -*- */

#ifndef INCL_AFACTOR_H
#define INCL_AFACTOR_H

// #include <factory/factoryconf.h>

#ifndef NOSTREAMIO
#ifdef HAVE_IOSTREAM
#include <iostream>
#define OSTREAM std::ostream
#elif defined(HAVE_IOSTREAM_H)
#include <iostream.h>
#define OSTREAM ostream
#endif
#endif /* NOSTREAMIO */

template <class T>
class AFactor {
private:
    T _factor;
    T _minpoly;
    int _exp;
public:
    AFactor() : _factor(1), _minpoly (1), _exp(0) {}
    AFactor( const AFactor<T> & f ) : _factor(f._factor), _minpoly (f._minpoly), _exp(f._exp) {}
    AFactor( const T & f, const T & m, int e ) : _factor(f), _minpoly (m), _exp(e) {}
    AFactor( const T & f, const T & m ) : _factor(f), _minpoly (m), _exp(1) {}
    ~AFactor() {}
    AFactor<T>& operator= ( const AFactor<T>& );
    T factor() const { return _factor; }
    T minpoly() const { return _minpoly; }
    int exp() const { return _exp; }
    T value() const { return power( _factor, _exp ); }
#ifndef NOSTREAMIO
    void print ( OSTREAM& ) const;
#endif /* NOSTREAMIO */
};

template <class T> int
operator== ( const AFactor<T>&, const AFactor<T>& );

#ifndef NOSTREAMIO
template <class T>
OSTREAM& operator<< ( OSTREAM & os, const AFactor<T> & f );
#endif /* NOSTREAMIO */

#endif /* ! INCL_AFACTOR_H */