Quintiq file version 2.0 
 | 
#parent: #root 
 | 
Function CalcMetaExpectedLowDurationsDurationSeconds 
 | 
{ 
 | 
  TextBody: 
 | 
  [* 
 | 
    value := 0.0;  
 | 
    testinstancefromkt := this.GetTestInstanceFromKT(); 
 | 
    if( not isnull( testinstancefromkt ) ) 
 | 
    { 
 | 
      expectedduration_lowquality := ifexpr(  testinstancefromkt.ExpectedDurationSecondsLowQualityIsWildcard(), Real::MaxReal(), testinstancefromkt.ExpectedDurationSecondsLowQuality() ); 
 | 
      value := expectedduration_lowquality;  
 | 
    }     
 | 
     
 | 
    this.MetaExpectedLowQualityDurationSeconds( value ); 
 | 
  *] 
 | 
  InterfaceProperties { Accessibility: 'Module' } 
 | 
} 
 |