1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
  | Quintiq file version 2.0 
 |  #parent: #root 
 |  Method CreateScenarioMPForBenchmarking ( 
 |    ScenarioNode scenarionode, 
 |    String datasetname, 
 |    String name, 
 |    String storagestate 
 |  ) as ScenarioMP 
 |  { 
 |    Description: 
 |    [* 
 |      Create a scenario which is mapped to macro plan dataset with defined dataset name 
 |      This method ony is for creating scenariomp for benchmarking use. 
 |    *] 
 |    TextBody: 
 |    [* 
 |      //create a new scenario 
 |      scenario := ScenarioMP::Create( this, 
 |                                      scenarionode, 
 |                                      datasetname, 
 |                                      name, 
 |                                      '', 
 |                                      storagestate, 
 |                                      '', 
 |                                      '' ); 
 |       
 |      return scenario; 
 |    *] 
 |  } 
 |  
  |