#include #include #include #define MAXT 20 #define CT 0.335 #define END 20 #define N 5000 float mt_1[N][N]; // matriz com o estado da chapa em t-1 float mt[N][N]; // idem em t int main (int argc, char *argv[]) { int nthreads, i, j, step; FILE *f; float *pt_1; float *pt; nthreads = strtol(argv[1], NULL, 10); # pragma omp parallel for num_threads(nthreads) for(i=0; i