Changeset 17050


Ignore:
Timestamp:
12/23/13 13:38:42 (11 years ago)
Author:
Eric.Larour
Message:

CHG: control verbosing.

Location:
issm/trunk-jpl/src/m/solve
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified issm/trunk-jpl/src/m/solve/marshall.m

    r16514 r17050  
    88%      marshall(md)
    99
    10 disp(['marshalling file ' md.miscellaneous.name '.bin']);
     10if md.verbose.solution,
     11        disp(['marshalling file ' md.miscellaneous.name '.bin']);
     12end
    1113
    1214%open file for binary writing
  • TabularUnified issm/trunk-jpl/src/m/solve/solve.m

    r15771 r17050  
    3333
    3434%check model consistency
    35 disp('checking model consistency');
     35if md.verbose.solution,
     36        disp('checking model consistency');
     37end
    3638if (solutionenum == FlaimSolutionEnum())
    3739        md.private.isconsistent=true;
     
    7577%Stop here if batch mode
    7678if strcmpi(options.batch,'yes')
    77         disp('batch mode requested: not launching job interactively');
    78         disp('launch solution sequence on remote cluster by hand');
     79        if md.verbose.solution,
     80                disp('batch mode requested: not launching job interactively');
     81                disp('launch solution sequence on remote cluster by hand');
     82        end
    7983        return;
    8084end
     
    96100%did we even try to run? if so, wait on lock
    97101if strcmpi(options.upload,'on'),
    98         disp('solve done uploading test decks');
     102        if md.verbose.solution,
     103                disp('solve done uploading test decks');
     104        end
    99105        return;
    100106end
     
    113119        %we wait for the done file
    114120        done=waitonlock(md);
    115         disp('loading results from cluster');
     121        if md.verbose.solution,
     122                disp('loading results from cluster');
     123        end
    116124        md=loadresultsfromcluster(md);
    117125elseif md.settings.waitonlock==0,
Note: See TracChangeset for help on using the changeset viewer.