Changeset 16217


Ignore:
Timestamp:
09/20/13 15:36:43 (12 years ago)
Author:
Mathieu Morlighem
Message:
BUG: or is
in C
File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/toolkits/mumps/MpiDenseMumpsSolve.cpp

    r16152 r16217  
    129129        /*First, some checks*/
    130130        if (Kff_M!=Kff_N)_error_("stiffness matrix Kff should be square");
    131         if (uf_M!=Kff_M | uf_M!=pf_M)_error_("solution vector should be the same size as stiffness matrix Kff and load vector pf");
    132         if (uf_m!=Kff_m | uf_m!=pf_m)_error_("solution vector should be locally the same size as stiffness matrix Kff and load vector pf");
     131        if (uf_M!=Kff_M || uf_M!=pf_M)_error_("solution vector should be the same size as stiffness matrix Kff and load vector pf");
     132        if (uf_m!=Kff_m || uf_m!=pf_m)_error_("solution vector should be locally the same size as stiffness matrix Kff and load vector pf");
    133133
    134134        /*Initialize matrix */
Note: See TracChangeset for help on using the changeset viewer.