Changeset 14433


Ignore:
Timestamp:
03/05/13 18:05:51 (12 years ago)
Author:
Mathieu Morlighem
Message:

BUG: added assertion tests in classes/matrix/Vector.h to avoid nasty crash

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/classes/matrix/Vector.h

    r13880 r14433  
    158158                /*Vector specific routines*/
    159159                /*FUNCTION Echo{{{*/
    160                 void Echo(void){
     160                void Echo(void){_assert_(this);
    161161
    162162                        if(type==PetscVecType){
     
    175175                /*}}}*/
    176176                /*FUNCTION Assemble{{{*/
    177                 void Assemble(void){
     177                void Assemble(void){_assert_(this);
    178178
    179179                        if(type==PetscVecType){
     
    192192                /*}}}*/
    193193                /*FUNCTION SetValues{{{*/
    194                 void SetValues(int ssize, int* list, doubletype* values, InsMode mode){
    195 
     194                void SetValues(int ssize, int* list, doubletype* values, InsMode mode){ _assert_(this);
    196195                        if(type==PetscVecType){
    197196                                #ifdef _HAVE_PETSC_
     
    209208                /*}}}*/
    210209                /*FUNCTION SetValue{{{*/
    211                 void SetValue(int dof, doubletype value, InsMode mode){
     210                void SetValue(int dof, doubletype value, InsMode mode){_assert_(this);
    212211
    213212                        if(type==PetscVecType){
     
    226225                /*}}}*/
    227226                /*FUNCTION GetValue{{{*/
    228                 void GetValue(doubletype* pvalue,int dof){
     227                void GetValue(doubletype* pvalue,int dof){_assert_(this);
    229228
    230229                        if(type==PetscVecType){
     
    243242                /*}}}*/
    244243                /*FUNCTION GetSize{{{*/
    245                 void GetSize(int* pM){
     244                void GetSize(int* pM){_assert_(this);
    246245
    247246                        if(type==PetscVecType){
     
    260259                /*}}}*/
    261260                /*FUNCTION IsEmpty{{{*/
    262                 bool IsEmpty(void){
     261                bool IsEmpty(void){_assert_(this);
    263262
    264263                        int M;
     
    273272                /*}}}*/
    274273                /*FUNCTION GetLocalSize{{{*/
    275                 void GetLocalSize(int* pM){
     274                void GetLocalSize(int* pM){_assert_(this);
    276275
    277276                        if(type==PetscVecType){
     
    290289                /*}}}*/
    291290                /*FUNCTION Duplicate{{{*/
    292                 Vector* Duplicate(void){
     291                Vector* Duplicate(void){_assert_(this);
    293292
    294293                        Vector* output=NULL;
     
    313312                /*}}}*/
    314313                /*FUNCTION Set{{{*/
    315                 void Set(doubletype value){
     314                void Set(doubletype value){_assert_(this);
    316315
    317316                        if(type==PetscVecType){
     
    330329                /*}}}*/
    331330                /*FUNCTION AXPY{{{*/
    332                 void AXPY(Vector* X, doubletype a){
     331                void AXPY(Vector* X, doubletype a){_assert_(this);
    333332
    334333                        if(type==PetscVecType){
     
    347346                /*}}}*/
    348347                /*FUNCTION AYPX{{{*/
    349                 void AYPX(Vector* X, doubletype a){
     348                void AYPX(Vector* X, doubletype a){_assert_(this);
    350349
    351350                        if(type==PetscVecType){
     
    364363                /*}}}*/
    365364                /*FUNCTION ToMPISerial{{{*/
    366                 doubletype* ToMPISerial(void){
     365                doubletype* ToMPISerial(void){_assert_(this);
    367366
    368367                        doubletype* vec_serial=NULL;
     
    385384                /*}}}*/
    386385                /*FUNCTION Copy{{{*/
    387                 void Copy(Vector* to){
     386                void Copy(Vector* to){_assert_(this);
    388387
    389388                        if(type==PetscVecType){
     
    402401                /*}}}*/
    403402                /*FUNCTION Norm{{{*/
    404                 doubletype Norm(NormMode norm_type){
     403                doubletype Norm(NormMode norm_type){_assert_(this);
    405404
    406405                        doubletype norm=0;
     
    422421                /*}}}*/
    423422                /*FUNCTION Scale{{{*/
    424                 void Scale(doubletype scale_factor){
     423                void Scale(doubletype scale_factor){_assert_(this);
    425424
    426425                        if(type==PetscVecType){
     
    439438                /*}}}*/
    440439                /*FUNCTION Dot{{{*/
    441                 doubletype Dot(Vector* vector){
     440                doubletype Dot(Vector* vector){_assert_(this);
    442441
    443442                        doubletype dot;
     
    459458                /*}}}*/
    460459                /*FUNCTION PointwiseDivide{{{*/
    461                 void PointwiseDivide(Vector* x,Vector* y){
     460                void PointwiseDivide(Vector* x,Vector* y){_assert_(this);
    462461
    463462                        if(type==PetscVecType){
Note: See TracChangeset for help on using the changeset viewer.