Changeset 24270


Ignore:
Timestamp:
10/24/19 10:09:13 (5 years ago)
Author:
tsantos
Message:

BUG: do not compute complete adjoint if there is no ice on the element

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/analyses/AdjointHorizAnalysis.cpp

    r23867 r24270  
    5656ElementMatrix* AdjointHorizAnalysis::CreateKMatrixFS(Element* element){/*{{{*/
    5757
     58        /* Check if ice in element */
     59        if(!element->IsIceInElement()) return NULL;
     60
    5861        /*Intermediaries */
    5962        bool        incomplete_adjoint;
     
    144147}/*}}}*/
    145148ElementMatrix* AdjointHorizAnalysis::CreateKMatrixHO(Element* element){/*{{{*/
     149       
     150        /* Check if ice in element */
     151        if(!element->IsIceInElement()) return NULL;
    146152
    147153        /*Intermediaries */
Note: See TracChangeset for help on using the changeset viewer.