#ifndef COMPUTING_FUNC_H #define COMPUTING_FUNC_H double computeMatrix(double *matrix, int n); double computePiSerial(int n); void initMatrix(double **matrix, int n); void freeMatrix(double **matrix); #endif