Changeset 24820


Ignore:
Timestamp:
05/07/20 23:10:20 (5 years ago)
Author:
Eric.Larour
Message:

CHG: introduction of consistency checks in the qmu classes.

Location:
issm/trunk-jpl/src/m/classes
Files:
4 edited

Legend:

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

    r24593 r24820  
    123123                        end
    124124
     125                        %go through variables and check for consistency:
     126                        fv=fieldnames(self.variables);
     127                        for i=1:length(fv),
     128                                self.variables.(fv{i}).checkconsistency(md,solution,analyses);
     129                        end
     130
    125131                end % }}}
    126132                function disp(self) % {{{
  • issm/trunk-jpl/src/m/classes/qmu/continuous_design.m

    r24436 r24820  
    220220                        pairs_per_variable=[];
    221221        end % }}}
     222                function checkconsistency(self,md,solution,analyses) % {{{
     223                end % }}}
    222224
    223225        end
  • issm/trunk-jpl/src/m/classes/qmu/normal_uncertain.m

    r24819 r24820  
    7373            end
    7474        end % }}}
    75 
     75                function checkconsistency(self,md,solution,analyses) % {{{
     76                end % }}}
    7677        %virtual functions needed by qmu processing algorithms:
    7778                function [abscissas] =prop_abscissas(hbu) % {{{
  • issm/trunk-jpl/src/m/classes/qmu/uniform_uncertain.m

    r24436 r24820  
    160160                        pairs_per_variable=[];
    161161        end % }}}
     162                function checkconsistency(self,md,solution,analyses) % {{{
     163                end % }}}
    162164
    163165    end
Note: See TracChangeset for help on using the changeset viewer.