| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 | | Quintiq file version 2.0 |  | #parent: #root |  | Function CalcImprovements |  | { |  |   Description: 'Calculate the `Improvements` attribute for this `LibOpt_Iteration` by referring to the KPI improvements of its last `LibOpt_SnapshotSuboptimizer`.' |  |   TextBody: |  |   [* |  |     value := guard( this.LastSnapshotSuboptimizer().Improvement(), |  |                     BinaryValue::Construct() |  |                   ); |  |      |  |     this.Improvements( value ); |  |   *] |  |   InterfaceProperties { Accessibility: 'Module' } |  | } | 
 |