aboutsummaryrefslogtreecommitdiffstats
path: root/src/sle.h
blob: 79b77419b75bc8d0c277f8bde8fc1e6407b23011 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef SLE_H
#define SLE_H

#include <stddef.h>
/*
 * m - matrix[n][n+1]
 * n - row count
 * x - result
 * returns 0 in case of success, -1 error
 */
int sle_solve(double *a, size_t n, double *x);

#endif