Ignore:
Timestamp:
07/19/12 15:32:17 (13 years ago)
Author:
Mathieu Morlighem
Message:

ismodelselfconsistant now uses a model field instead of a persistent variable

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/classes/clusters/greenplanet.m

    r12371 r12663  
    4848                 end
    4949                 %}}}
    50                  function checkconsistency(cluster,md,solution,analyses) % {{{
     50                 function md = checkconsistency(cluster,md,solution,analyses) % {{{
    5151
    5252                         available_queues={'rignot','default'};
     
    5757
    5858                         %Miscelaneous
    59                          if isempty(cluster.login), checkmessage('login empty'); end
    60                          if isempty(cluster.codepath), checkmessage('codepath empty'); end
    61                          if isempty(cluster.executionpath), checkmessage('executionpath empty'); end
     59                         if isempty(cluster.login), md = checkmessage(md,'login empty'); end
     60                         if isempty(cluster.codepath), md = checkmessage(md,'codepath empty'); end
     61                         if isempty(cluster.executionpath), md = checkmessage(md,'executionpath empty'); end
    6262
    6363                 end
Note: See TracChangeset for help on using the changeset viewer.