/usr/include/spooles/SymbFac/SymbFac.h is in libspooles-dev 2.2-11.
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 49 50 51 | /* SymbFac.h */
#include "../ETree.h"
#include "../Graph.h"
#include "../InpMtx.h"
#include "../Pencil.h"
/*--------------------------------------------------------------------*/
/*
-----------------------------------------------------------
purpose -- using one graph, create and return an IVL object
that contains a symbolic factorization.
created -- 97aug29, cca
-----------------------------------------------------------
*/
IVL *
SymbFac_initFromGraph (
ETree *etree,
Graph *graph
) ;
/*
-------------------------------------------------------
purpose -- create and return an IVL object that
contains a symbolic factorization.
note: we assume that both the ETree and DInpMtx objects
are in their final permutation
created -- 97mar15, cca
-------------------------------------------------------
*/
IVL *
SymbFac_initFromInpMtx (
ETree *etree,
InpMtx *inpmtx
) ;
/*
-----------------------------------------------------
compute the symbolic factorization of a matrix pencil
note: we assume that both the ETree and Pencil
objects are in their final permutation
created -- 98may04, cca
-----------------------------------------------------
*/
IVL *
SymbFac_initFromPencil (
ETree *etree,
Pencil *pencil
) ;
/*--------------------------------------------------------------------*/
|