computing_func.h 213 Bytes
Newer Older
1
2
3
#ifndef COMPUTING_FUNC_H
#define COMPUTING_FUNC_H

4
5
double computeMatrix(double *matrix, int n);
double computePiSerial(int n);
6
void initMatrix(double **matrix, size_t n);
7
void freeMatrix(double **matrix);
8
9

#endif