about summary refs log tree commit diff
path: root/lib/util/matrix.h
blob: 13ae03733a334b3938b9120b1967f7efc3778e9f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#ifndef MATRIX_H_INCLUDED
#define MATRIX_H_INCLUDED

void
pm_solvelineareq(double **     const aArg,
                 double *      const x,
                 double *      const cArg,
                 unsigned int  const n,
                 const char ** const errorP);

#endif