/usr/include/ColPack/GraphInputOutput.h is in libcolpack-dev 1.0.9-3.
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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 | /************************************************************************************
Copyright (C) 2005-2008 Assefaw H. Gebremedhin, Arijit Tarafdar, Duc Nguyen,
Alex Pothen
This file is part of ColPack.
ColPack is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
ColPack is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with ColPack. If not, see <http://www.gnu.org/licenses/>.
************************************************************************************/
#ifndef GRAPHINPUTOUTPUT_H
#define GRAPHINPUTOUTPUT_H
using namespace std;
namespace ColPack
{
/** @ingroup group1
* @brief class GraphInputOutput in @link group1@endlink.
This class provides the input methods for reading in matrix or graph files in supported
formats for generating general graphs. Three input formats are supported by default - Matrix Market,
Harwell Boeing and MeTiS.
*/
class GraphInputOutput : public GraphCore
{
public:
/// Read the sparsity pattern of Hessian matrix represented in ADOLC format (Compressed Sparse Row format) and build a corresponding adjacency graph.
/**
Precondition:
- The Hessian matrix must be stored in Row Compressed Format
Return value:
- i_HighestDegree
*/
int BuildGraphFromRowCompressedFormat(unsigned int ** uip2_HessianSparsityPattern, int i_RowCount);
/// Read the sparsity pattern of a symmetric matrix in the specified file format from the specified filename and build an adjacency graph.
/** This function will
- 1. Read the name of the matrix file and decide which matrix format the file used (based on the file extension). If the file name has no extension, the user will need to pass the 2nd parameter "fileType" explicitly to tell ColPack which matrix format is used
- 2. Call the corresponding reading routine to build the graph
About input parameters:
- fileName: name of the input file for a symmetric matrix. If the full path is not given, the file is assumed to be in the current directory
- fileType can be either
- "AUTO_DETECTED" (default) or "". ColPack will decide the format of the file based on the file extension:
- ".mtx": symmetric MatrixMarket format
- ".hb", or any combination of ".<r, c, p><s, u, h, x, r><a, e>": HarwellBoeing format
- ".graph": MeTiS format
- If the above extensions are not found, MatrixMarket format will be assumed.
- "MM" for MatrixMarket format (http://math.nist.gov/MatrixMarket/formats.html#MMformat). Notes:
- ColPack only accepts MatrixMarket coordinate format (NO array format)
- List of arithmetic fields accepted by ColPack: real, pattern or integer
- List of symmetry structures accepted by ColPack: general or symmetric
- The first line of the input file should be similar to this: "%%MatrixMarket matrix coordinate real general"
- "HB" for HarwellBoeing format (http://math.nist.gov/MatrixMarket/formats.html#hb)
- "MeTiS" for MeTiS format (http://people.sc.fsu.edu/~burkardt/data/metis_graph/metis_graph.html)
*/
int ReadAdjacencyGraph(string s_InputFile, string s_fileFormat="AUTO_DETECTED");
// !!! NEED TO BE FIXED
/// Read the entries of a symmetric matrix in Matrix Market format and build the corresponding adjacency graph
/**
Precondition:
- s_InputFile should point to the MatrixMarket-format input file (file name usually ends with .mtx)
- If (b_getStructureOnly == true) only the structure of the matrix is read.
All the values for the non-zeros in the matrix will be ignored.
If the input file contains only the graph structure, the value of b_getStructureOnly will be ignored
*/
int ReadMatrixMarketAdjacencyGraph(string s_InputFile, bool b_getStructureOnly = false);
/// Write the structure of the graph into a file using Matrix Market format
/**
NOTES:
- Because ColPack's internal graph does not have self loop, the output graph will not have any self-loops that exist in the input,
i.e., diagonal entries of the input graph will be removed.
*/
int WriteMatrixMarket(string s_OutputFile = "-ColPack_debug.mtx", bool b_getStructureOnly = false);
private:
// ??? Wonder if this function is useful any more
int ParseWidth(string FortranFormat);
void CalculateVertexDegrees();
public:
GraphInputOutput();
~GraphInputOutput();
virtual void Clear();
string GetInputFile();
/// Read the entries of symmetric matrix in Harwell Boeing format and build the corresponding adjacency graph.
/**
Supported sub-format: MXTYPE[3] = (R | P) (S | U) (A)
If MXTYPE[2] = 'U', the matrix structure must still be symmetric for ColPack to work correctly
*/
int ReadHarwellBoeingAdjacencyGraph(string s_InputFile);
/// Read the entries of symmetric matrix in MeTiS format and build the corresponding adjacency graph.
int ReadMeTiSAdjacencyGraph(string s_InputFile);
// TO BE DOCUMENTED
// ??? When do I need ReadMeTiSAdjacencyGraph2() instead of ReadMeTiSAdjacencyGraph() ?
// probably need ReadMeTiSAdjacencyGraph2() when I need to read from a variant of MeTiS format
int ReadMeTiSAdjacencyGraph2(string s_InputFile);
int PrintGraph();
int PrintGraphStructure();
int PrintGraphStructure2();
int PrintMatrix();
int PrintMatrix(vector<int> &, vector<int> &, vector<double> &);
void PrintVertexDegrees();
};
}
#endif
|