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

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

#endif