This file is indexed.

/usr/include/givaro/givmatrix.h is in libgivaro-dev 4.0.2-5.

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
// ==========================================================================
// $Source: /var/lib/cvs/Givaro/src/library/matrix/givmatrix.h,v $
// Copyright(c)'1994-2009 by The Givaro group
// This file is part of Givaro.
// Givaro is governed by the CeCILL-B license under French law
// and abiding by the rules of distribution of free software.
// see the COPYRIGHT file for more details.
// Authors: T. Gautier
// $Id: givmatrix.h,v 1.3 2011-02-02 16:23:56 briceboyer Exp $
// ==========================================================================
// Description:
#ifndef _GIV_MATRIX_H_
#define _GIV_MATRIX_H_

#error "dead code"

#include "givaro/giverror.h"
#include "givaro/givarray0.h"
#include "givaro/givelem.h"

namespace Givaro {
#pragma message "#warning this file will probably not compile"


// ==========================================================================
// --
// -- MatrixDom<T, StorageTag>:
// -- current available tags are:
// --  * Dense: dynamic n x m matrix
// --  * Sparse: dynamic n x m matrix with few non null entries
// --  * FixedBlock<n,m>: static n x m dimensional matrix
// ==========================================================================

template <class T, class StorageTag> class MatrixDom { };

} // Givaro

#include "givaro/givvector.h"
#include "givaro/givmatstoragedense.h"
#include "givaro/givmatstoragesparse.h"
#include "givaro/givmatdense.h"
#include "givaro/givmatsparse.h"

#include "givaro/givmatdenseops.inl"
#include "givaro/givmatsparseops.inl"

#endif