Changeset 807


Ignore:
Timestamp:
06/05/09 07:28:19 (16 years ago)
Author:
Mathieu Morlighem
Message:

fixed check results

Location:
issm/trunk/src/m/classes/public
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/m/classes/public/isresultconsistent.m

    r750 r807  
    1919%initialize output as 1 -> success
    2020bool=1;
     21
     22%do not check results if qmu analysis
     23if md.qmu_analysis,
     24        return
     25end
    2126
    2227%DIAGNOSTIC
  • issm/trunk/src/m/classes/public/loadresultsfromdisk.m

    r804 r807  
    1818
    1919%Check result is consistent, only if it exists
    20 if ~isempty(md.results.diagnostic),
    21         disp(sprintf('%s\n','checking result consistency'));
    22         if ~isresultconsistent(md,md.analysis_type),
    23                 %it would be very cruel to put an error, it would kill the computed results (even if not consistent...)
    24                 disp('!! results not consistent correct the model !!')
    25         end
     20disp(sprintf('%s\n','checking result consistency'));
     21if ~isresultconsistent(md,md.analysis_type),
     22        %it would be very cruel to put an error, it would kill the computed results (even if not consistent...)
     23        disp('!! results not consistent correct the model !!')
    2624end
    2725
Note: See TracChangeset for help on using the changeset viewer.