/* nag_sparse_herm_precon_ssor_solve (f11jrc) Example Program. * * Copyright 2011, Numerical Algorithms Group. * * Mark 23, 2011. */ #include #include #include #include int main(void) { /* Scalars */ Integer exit_status = 0; double omega; Integer i, n, nnz; /* Arrays */ char nag_enum_arg[100]; Complex *a = 0, *x = 0, *y = 0; double *rdiag = 0; Integer *icol = 0, *irow = 0; /* NAG types */ Nag_SparseSym_CheckData check; NagError fail; INIT_FAIL(fail); printf("nag_sparse_herm_precon_ssor_solve (f11jrc) Example Program Results"); printf("\n"); /* Skip heading in data file*/ scanf("%*[^\n]"); /* Read algorithmic parameters*/ scanf("%ld%*[^\n] ", &n); scanf("%ld%*[^\n] ", &nnz); /* Allocate memory */ if ( !(a = NAG_ALLOC(nnz, Complex)) || !(x = NAG_ALLOC(n, Complex)) || !(y = NAG_ALLOC(n, Complex)) || !(rdiag = NAG_ALLOC(n, double)) || !(icol = NAG_ALLOC(nnz, Integer)) || !(irow = NAG_ALLOC(nnz, Integer)) ) { printf("Allocation failure\n"); exit_status = -1; goto END; } scanf("%s%*[^\n] ", nag_enum_arg); /* nag_enum_name_to_value(x04nac). * Converts NAG enum member name to value */ check = (Nag_SparseSym_CheckData) nag_enum_name_to_value(nag_enum_arg); scanf("%lf%*[^\n]", &omega); /* Read the matrix a */ for (i = 0; i < nnz; i++) scanf(" ( %lf , %lf ) %ld%ld%*[^\n]", &a[i].re, &a[i].im, &irow[i], &icol[i]); /* Read rhs vector y */ for (i = 0; i < n; i++) scanf(" ( %lf , %lf ) ", &y[i].re, &y[i].im); scanf("%*[^\n]"); /* Fill in the diagonal part */ for (i = 0; i < nnz; i++) if (irow[i] == icol[i]) rdiag[irow[i]-1] = 1.0/(double)(a[i].re); /* nag_sparse_herm_precon_ssor_solve (f11jrc). * Solution of linear system involving preconditioning matrix * generated by applying SSOR to complex sparse Hermitian matrix */ nag_sparse_herm_precon_ssor_solve(n, nnz, a, irow, icol, rdiag, omega, check, y, x, &fail); if (fail.code != NE_NOERROR) { printf("Error from nag_sparse_herm_precon_ssor_solve (f11jrc)\n%s\n", fail.message); exit_status = 1; goto END; } /* Output x*/ printf(" Converged Solution\n"); for (i = 0; i < n; i++) printf(" (%11.4e, %11.4e) \n", x[i].re, x[i].im); END: if (a) NAG_FREE(a); if (x) NAG_FREE(x); if (y) NAG_FREE(y); if (rdiag) NAG_FREE(rdiag); if (icol) NAG_FREE(icol); if (irow) NAG_FREE(irow); return exit_status; }