Changeset 7187


Ignore:
Timestamp:
01/26/11 14:38:03 (14 years ago)
Author:
Mathieu Morlighem
Message:

Kff might not be NULL, we have to checl its size to see wether it is empty or not

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/modules/Solverx/Solverx.cpp

    r6862 r7187  
    1919
    2020        /*intermediary: */
    21         int        local_m;
    22         int        local_n;
     21        int        local_m,local_n,global_m,global_n;
    2322        int        analysis_type;
    2423
     
    4140
    4241        /*First, check that f-set is not NULL, ie model is fully constrained: */
    43         if(!Kff){
     42        MatGetSize(Kff,&global_m,&global_n); _assert_(global_m==global_m);
     43        if(!global_n){
     44                printf("-------------- file: Solverx.cpp line: %i\n",__LINE__);
    4445                *puf=NULL; return;
    4546        }
Note: See TracChangeset for help on using the changeset viewer.