computing_func.h 213 Bytes
Newer Older
Iker Martín Álvarez's avatar
Iker Martín Álvarez committed
1
2
3
4
5
6
7
8
9
#ifndef COMPUTING_FUNC_H
#define COMPUTING_FUNC_H

double computeMatrix(double *matrix, int n);
double computePiSerial(int n);
void initMatrix(double **matrix, size_t n);
void freeMatrix(double **matrix);

#endif