Changeset 473


Ignore:
Timestamp:
05/18/09 12:02:06 (16 years ago)
Author:
Eric.Larour
Message:

Solved analysis_type bug

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

Legend:

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

    r465 r473  
    3131
    3232%If we are here, no errors in the solution sequence, call loadresultsfromdisk.
    33 md=loadresultsfromdisk(md,[md.name '.outbin'],md.analysis_type);
     33md=loadresultsfromdisk(md,[md.name '.outbin']);
    3434
    3535%erase the log and output files
  • issm/trunk/src/m/classes/public/loadresultsfromdisk.m

    r472 r473  
    1717%First get solution type
    1818analysis_type=results{1};
     19
     20if ~strcmpi(analysis_type,md.analysis_type),
     21        error(['loadresultsfromdisk error message: trying  to load results from disk for analysis_type: ',md.analysis_type,' when results are from analysis_type: ',analysis_type]);
     22end
    1923
    2024%Get gsize
Note: See TracChangeset for help on using the changeset viewer.