/usr/include/m4ri/io.h is in libm4ri-dev 20130416-6.
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 136 137 | /**
* \file io.h
* \brief Input/output routines for matrices
*
* \author Martin Albrecht <martinralbrecht@googlemail.com>
*/
#ifndef M4RI_IO_H
#define M4RI_IO_H
/*******************************************************************
*
* M4RI: Linear Algebra over GF(2)
*
* Copyright (C) 2011 Martin Albrecht <martinralbrecht@googlemail.com>
*
* Distributed under the terms of the GNU General Public License (GPL)
* version 2 or higher.
*
* This code 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
* General Public License for more details.
*
* The full text of the GPL is available at:
*
* http://www.gnu.org/licenses/
*
********************************************************************/
#include <m4ri/m4ri_config.h>
#include <m4ri/mzd.h>
/**
* \brief Print a matrix to stdout.
*
* The output will contain colons between every 4-th column.
*
* \param M Matrix
*/
void mzd_print(mzd_t const *M);
/**
* \brief Print compact information about the matrix to stdout.
*
* Prints number of rows, number of columns, density (and rank).
*
* \param A Matrix
* \param do_rank Also display the rank (expensive)
*/
void mzd_info(const mzd_t *A, int do_rank);
#if __M4RI_HAVE_LIBPNG
/**
* \brief Read matrix from 1-bit PNG image.
*
* This function returns a matrix on success and NULL otherwise. 1-bit
* Grayscale and 1-bit Palette images are supported.
*
* \param fn Filename
* \param verbose Print error message to stdout if != 0
*/
mzd_t * mzd_from_png(const char *fn, int verbose);
/**
* \brief Write matrix to 1-bit PNG image.
*
* This function returns zero on success and some value != 0
* otherwise. The parameter compression_level takes a zlib compression
* level, i.e., an integer betweeen -1 and 9 (inclusive) such that
*
\verbatim
#define Z_NO_COMPRESSION 0
#define Z_BEST_SPEED 1
#define Z_BEST_COMPRESSION 9
#define Z_DEFAULT_COMPRESSION (-1)
\endverbatim
*
* The optional comment string is written as a PNG comment.
*
*
* \param A Matrix
* \param fn Filename (must have write permission)
* \param compression_level Zlib compression level (see above)
* \param comment Optional comment (may be NULL)
* \param verbose Print error message to stdout if != 0
*/
int mzd_to_png(const mzd_t *A, const char *fn, int compression_level, const char *comment, int verbose);
#endif //__M4RI_HAVE_LIBPNG
/**
* \brief Read matrix from ASCII file in JCF format.
*
* The format is as follows:
\verbatim
nrows ncols modulus
nonzero_entries_upper_bound
column_index
\endverbatim
*
* where a negative column_index indicates a row_index increase by one and a non-zero entry at index
* -column_index.
*
* \note the JCF format is one-based in contrast to everything else in this library which is
* zero-based.
*
* For example, a valid input is:
\verbatim
2 3 2
3
-2
-1
-2
\endverbatim
*
* which produces the matrix
\verbatim
[0 1]
[1 1]
\endverbatim
*
*
* \param fn Filename
* \param verbose Print error message to stdout if != 0
*/
mzd_t *mzd_from_jcf(const char *fn, int verbose);
#endif //M4RI_IO_H
|