| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
 | | Quintiq file version 2.0 |  | #parent: #root |  | Function CalcIsNeedCostComputed #extension |  | { |  |   TextBody: |  |   [* |  |     eis := this.OptimizerMetaEIS();  |  |     value := true;  |  |     if ( not isnull( eis ) )  |  |     { |  |       value := not this.IsMetaOptimizerRunning()     // if no meta run is going then the model should compute costs |  |                or exists( this,                               // otherwise focus level should be beyond an account level |  |                            Account_MP,  |  |                            account,  |  |                            account.Level() <= eis.FocusLevelForEIS(),  |  |                            account.Weight() > 0 ) |  |     } |  |     this.IsNeedCostComputed( value ); |  |   *] |  | } | 
 |