57 void initialize(
bool recompute_next_value);
58 bool hasOutput()
const {
return m_out_type!=OutTypeNone; }
59 bool check(Real old_time,Real current_time,Integer current_iteration,
60 Integer current_cpu_time,
const String& from_function=String());
61 void assignGlobalTime(VariableScalarReal* variable,
const CaseOptionReal* option);
62 void assignCPUTime(VariableScalarInteger* variable,
const CaseOptionInteger* option);
63 void assignIteration(VariableScalarInteger* variable,
const CaseOptionInteger* option);
64 Real nextGlobalTime()
const;
65 Integer nextIteration()
const;
66 Integer nextCPUTime()
const;
70 ISubDomain* m_sub_domain;
73 VariableScalarInteger* m_next_iteration;
74 VariableScalarReal* m_next_global_time;
75 VariableScalarInteger* m_next_cpu_time;
76 const CaseOptionInteger* m_step_iteration;
77 const CaseOptionReal* m_step_global_time;
78 const CaseOptionInteger* m_step_cpu_time;
82 void _recomputeTypeGlobalTime();
83 void _recomputeTypeCPUTime();
84 void _recomputeTypeIteration();
Interface du gestionnaire d'un sous-domaine.