/usr/include/python2.7/pysparse/minres.h is in python-sparse 1.1-1.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 | /**************************************************************************
* *
* Swiss Federal Institute of Technology (ETH), *
* CH-8092 Zuerich, Switzerland *
* *
* (C) 1999 All Rights Reserved *
* *
* NOTICE *
* *
* Permission to use, copy, modify, and distribute this software and *
* its documentation for any purpose and without fee is hereby granted *
* provided that the above copyright notice appear in all copies and *
* that both the copyright notice and this permission notice appear in *
* supporting documentation. *
* *
* Neither the Swiss Federal Institute of Technology nor the author make *
* any representations about the suitability of this software for any *
* purpose. This software is provided ``as is'' without express or *
* implied warranty. *
* *
**************************************************************************/
#ifndef MINRES_H
#define MINRES_H
#include "Python.h"
int Itsolvers_minres_kernel(int n, double errtol, int it_max,
int *it, double *nrm_res, int clvl,
double *x, double *b, double *work,
PyObject *mat_obj,
PyObject *prec_obj);
#endif
|