Changeset 14873
- Timestamp:
- 05/03/13 15:50:51 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/toolkits/mumps/MpiDenseMumpsSolve.cpp
r14864 r14873 61 61 id.job = JOB_INIT; 62 62 id.par = 1; 63 id.sym = 1;63 id.sym = 0; 64 64 id.comm_fortran = MPI_Comm_c2f(comm); 65 65 dmumps_c(&id); … … 92 92 id.nz_loc=local_nnz; 93 93 94 94 95 /*Allocate: */ 95 irn_loc=xNew<int>(local_nnz); 96 jcn_loc=xNew<int>(local_nnz); 97 a_loc=xNew<IssmDouble>(local_nnz); 98 96 if(local_nnz){ 97 irn_loc=xNew<int>(local_nnz); 98 jcn_loc=xNew<int>(local_nnz); 99 a_loc=xNew<IssmDouble>(local_nnz); 100 } 101 99 102 /*Populate the triplets: */ 100 103 GetOwnershipBoundariesFromRange(&lower_row,&upper_row,Kff_m,comm);
Note:
See TracChangeset
for help on using the changeset viewer.