Ignore:
Timestamp:
05/17/10 08:35:05 (15 years ago)
Author:
Mathieu Morlighem
Message:

Added string in param echo enums

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/objects/Params/PetscVecParam.cpp

    r3715 r3761  
    6060        int i;
    6161        printf("PetscVecParam:\n");
    62         printf("   enum: %i\n",this->enum_type);
     62        printf("   enum: %i (%s)\n",this->enum_type,EnumAsString(this->enum_type));
    6363        VecView(value,PETSC_VIEWER_STDOUT_WORLD);
    6464}
     
    111111/*FUNCTION PetscVecParam::Echo {{{1*/
    112112void PetscVecParam::Echo(void){
    113         this->DeepEcho();
     113
     114        printf("PetscVecParam:\n");
     115        printf("   enum: %i (%s)\n",this->enum_type,EnumAsString(this->enum_type));
     116
    114117}
    115118/*}}}*/
Note: See TracChangeset for help on using the changeset viewer.