/* * LU.c * * A prgram to d an LU decomposition. * */ #include #include #include #define SIZE 500 int main(int argc, char *argv[]) { double start, stop; /* for keeping track of running time */ double A[SIZE][SIZE]; double col[SIZE], row[SIZE]; int i, j, k, n; /* preload A with random values */ for (i = 0; i