Changeset 19178


Ignore:
Timestamp:
03/04/15 16:23:26 (10 years ago)
Author:
glperez
Message:

CHG: Moved array back to heap, as Microsofts compiler CL does not support dynamic size arrays.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/toolkits/petsc/objects/PetscMat.cpp

    r19170 r19178  
    5555        */
    5656        #ifdef _HAVE_PETSC_MPI_
    57          int nnz[M];
    58          for(int i = 0; i < M; i++)
    59                  nnz[i] = o_nnz[i] + d_nnz[i];
     57                int* nnz = new int[M];
     58                for(int i = 0; i < M; i++)
     59                        nnz[i] = o_nnz[i] + d_nnz[i];
    6060
    6161                PetscErrorCode ierr = MatSeqAIJSetPreallocation(this->matrix,0,nnz);
     62                delete[] nnz;
    6263        #else
    6364                PetscErrorCode ierr = MatMPIAIJSetPreallocation(this->matrix,0,d_nnz,0,o_nnz);
Note: See TracChangeset for help on using the changeset viewer.