Ignore:
Timestamp:
10/11/12 11:23:47 (12 years ago)
Author:
Mathieu Morlighem
Message:

CHG: cosmetics, removing all deboule blank lines and indent single white lines correctly

File:
1 edited

Legend:

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

    r13596 r13622  
    4646        int* idxm=NULL;
    4747        int* idxn=NULL;
    48        
     48
    4949        if(M)idxm=xNew<int>(M);
    5050        if(N)idxn=xNew<int>(N);
     
    5252        for(i=0;i<M;i++)idxm[i]=i;
    5353        for(i=0;i<N;i++)idxn[i]=i;
    54 
    5554
    5655        this->matrix=NewMat(M,N,sparsity,IssmComm::GetComm());
     
    6665/*FUNCTION PetscMat::PetscMat(int M,int N, int connectivity, int numberofdofspernode){{{*/
    6766PetscMat::PetscMat(int M,int N, int connectivity,int numberofdofspernode){
    68        
     67
    6968        this->matrix=NewMat(M,N,connectivity,numberofdofspernode,IssmComm::GetComm());
    7069
     
    9998IssmDouble PetscMat::Norm(NormMode mode){
    10099
    101 
    102100        IssmDouble norm=0;
    103101        _assert_(this->matrix);
    104102        MatNorm(this->matrix,ISSMToPetscNormMode(mode),&norm);
    105        
     103
    106104        return norm;
    107105
Note: See TracChangeset for help on using the changeset viewer.