陈清红
2025-04-14 880f3c0257eeb8c37761d484258fdd102a369a19
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Quintiq file version 2.0
#parent: #root
Method ForceIterations
{
  Description: 'Require that the `LibOpt_Analysis` is linked to a `LibOpt_Run` that has `HasIterations` on true.'
  TextBody:
  [*
    if( not this.Run().HasIterations() )
    {
      this.Run().HasIterations( true );
      
      // Propagate to calculate the IterationNr
      Transaction::Transaction().Propagate( relation( LibOpt_SnapshotComponent, IterationPartOwning ) );
      Transaction::Transaction().Propagate( relation( LibOpt_SnapshotComponent, IterationPart ) );
      Transaction::Transaction().Propagate( relation( LibOpt_SnapshotComponent, IterationOwning ) );
      Transaction::Transaction().Propagate( relation( LibOpt_Iteration, IterationPartNM ) );
      Transaction::Transaction().Propagate( attribute( LibOpt_Iteration, IterationNr ) );
    }
  *]
  InterfaceProperties { Accessibility: 'Module' }
}