Salome HOME
Merge from V6_main_20120808 08Aug12
[samples/datafiles.git] / Superv / Python / GraphSwitchCheckDefault2NOTValid2.py
1 #  Copyright (C) 2007-2011  CEA/DEN, EDF R&D, OPEN CASCADE
2 #
3 #  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 #
6 #  This library is free software; you can redistribute it and/or
7 #  modify it under the terms of the GNU Lesser General Public
8 #  License as published by the Free Software Foundation; either
9 #  version 2.1 of the License.
10 #
11 #  This library is distributed in the hope that it will be useful,
12 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 #  Lesser General Public License for more details.
15 #
16 #  You should have received a copy of the GNU Lesser General Public
17 #  License along with this library; if not, write to the Free Software
18 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 #
20 #  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 #
22 # Generated python file of Graph GraphSwitchCheckDefault2NOTValid2_1
23 #
24 from SuperV import *
25
26 # Graph creation of GraphSwitchCheckDefault2NOTValid2_1
27 def DefGraphSwitchCheckDefault2NOTValid2_1() :
28     GraphSwitchCheckDefault2NOTValid2_1 = Graph( 'GraphSwitchCheckDefault2NOTValid2_1' )
29     GraphSwitchCheckDefault2NOTValid2_1.SetName( 'GraphSwitchCheckDefault2NOTValid2_1' )
30     GraphSwitchCheckDefault2NOTValid2_1.SetAuthor( 'JR' )
31     GraphSwitchCheckDefault2NOTValid2_1.SetComment( '' )
32     GraphSwitchCheckDefault2NOTValid2_1.Coords( 0 , 0 )
33     
34     # Creation of Factory Nodes
35     
36     # Creation of InLine Nodes
37     PyIsOdd = []
38     PyIsOdd.append( 'from time import *   ' )
39     PyIsOdd.append( 'def IsOdd(a) :       ' )
40     PyIsOdd.append( '    print a,"IsOdd (GraphSwitch)"      ' )
41     PyIsOdd.append( '    sleep( 1 )   ' )
42     PyIsOdd.append( '    return a     ' )
43     IsOdd = GraphSwitchCheckDefault2NOTValid2_1.INode( 'IsOdd' , PyIsOdd )
44     IsOdd.SetName( 'IsOdd' )
45     IsOdd.SetAuthor( '' )
46     IsOdd.SetComment( 'Python function' )
47     IsOdd.Coords( 415 , 7 )
48     IIsOdda = IsOdd.InPort( 'a' , 'long' )
49     IIsOddGate = IsOdd.GetInPort( 'Gate' )
50     OIsOdda = IsOdd.OutPort( 'a' , 'long' )
51     OIsOddGate = IsOdd.GetOutPort( 'Gate' )
52     
53     PyIsEven = []
54     PyIsEven.append( 'from time import *    ' )
55     PyIsEven.append( 'def IsEven(a) :        ' )
56     PyIsEven.append( '    print a,"IsEven (GraphSwitch)"       ' )
57     PyIsEven.append( '    sleep( 1 )    ' )
58     PyIsEven.append( '    return a      ' )
59     IsEven = GraphSwitchCheckDefault2NOTValid2_1.INode( 'IsEven' , PyIsEven )
60     IsEven.SetName( 'IsEven' )
61     IsEven.SetAuthor( '' )
62     IsEven.SetComment( 'Compute Node' )
63     IsEven.Coords( 421 , 438 )
64     IIsEvena = IsEven.InPort( 'a' , 'long' )
65     IIsEvenGate = IsEven.GetInPort( 'Gate' )
66     OIsEvena = IsEven.OutPort( 'a' , 'long' )
67     OIsEvenGate = IsEven.GetOutPort( 'Gate' )
68     
69     PyPrintOdd = []
70     PyPrintOdd.append( 'from time import * ' )
71     PyPrintOdd.append( 'def Print(a,Branch) :     ' )
72     PyPrintOdd.append( '    print "Print ",a,Branch ' )
73     PyPrintOdd.append( '    sleep(1) ' )
74     PyPrintOdd.append( '    return Branch     ' )
75     PrintOdd = GraphSwitchCheckDefault2NOTValid2_1.INode( 'Print' , PyPrintOdd )
76     PrintOdd.SetName( 'PrintOdd' )
77     PrintOdd.SetAuthor( '' )
78     PrintOdd.SetComment( 'Compute Node' )
79     PrintOdd.Coords( 415 , 130 )
80     IPrintOdda = PrintOdd.InPort( 'a' , 'long' )
81     IPrintOddBranch = PrintOdd.InPort( 'Branch' , 'string' )
82     IPrintOddGate = PrintOdd.GetInPort( 'Gate' )
83     OPrintOddBranch = PrintOdd.OutPort( 'Branch' , 'string' )
84     OPrintOddGate = PrintOdd.GetOutPort( 'Gate' )
85     
86     PyPrintEven = []
87     PyPrintEven.append( 'from time import * ' )
88     PyPrintEven.append( 'def Print_1(a,Branch) :     ' )
89     PyPrintEven.append( '    print "Print ",a,Branch ' )
90     PyPrintEven.append( '    sleep(1) ' )
91     PyPrintEven.append( '    return Branch     ' )
92     PrintEven = GraphSwitchCheckDefault2NOTValid2_1.INode( 'Print_1' , PyPrintEven )
93     PrintEven.SetName( 'PrintEven' )
94     PrintEven.SetAuthor( '' )
95     PrintEven.SetComment( 'Compute Node' )
96     PrintEven.Coords( 423 , 289 )
97     IPrintEvena = PrintEven.InPort( 'a' , 'long' )
98     IPrintEvenBranch = PrintEven.InPort( 'Branch' , 'string' )
99     IPrintEvenGate = PrintEven.GetInPort( 'Gate' )
100     OPrintEvenBranch = PrintEven.OutPort( 'Branch' , 'string' )
101     OPrintEvenGate = PrintEven.GetOutPort( 'Gate' )
102     
103     PyEmptyNode = []
104     PyEmptyNode.append( 'from time import * ' )
105     PyEmptyNode.append( 'def EmptyNode(a,Branch) : ' )
106     PyEmptyNode.append( '    sleep(1) ' )
107     PyEmptyNode.append( '    return a,Branch  ' )
108     EmptyNode = GraphSwitchCheckDefault2NOTValid2_1.INode( 'EmptyNode' , PyEmptyNode )
109     EmptyNode.SetName( 'EmptyNode' )
110     EmptyNode.SetAuthor( '' )
111     EmptyNode.SetComment( 'Compute Node' )
112     EmptyNode.Coords( 652 , 110 )
113     IEmptyNodea = EmptyNode.InPort( 'a' , 'long' )
114     IEmptyNodeBranch = EmptyNode.InPort( 'Branch' , 'string' )
115     IEmptyNodeGate = EmptyNode.GetInPort( 'Gate' )
116     OEmptyNodea = EmptyNode.OutPort( 'a' , 'long' )
117     OEmptyNodeBranch = EmptyNode.OutPort( 'Branch' , 'string' )
118     OEmptyNodeGate = EmptyNode.GetOutPort( 'Gate' )
119     
120     PyDefault = []
121     PyDefault.append( 'from time import * ' )
122     PyDefault.append( 'def Default(a,Branch) : ' )
123     PyDefault.append( '    sleep(1) ' )
124     PyDefault.append( '    return a,Branch ' )
125     Default = GraphSwitchCheckDefault2NOTValid2_1.INode( 'Default' , PyDefault )
126     Default.SetName( 'Default' )
127     Default.SetAuthor( '' )
128     Default.SetComment( 'Compute Node' )
129     Default.Coords( 421 , 592 )
130     IDefaulta = Default.InPort( 'a' , 'long' )
131     IDefaultBranch = Default.InPort( 'Branch' , 'string' )
132     IDefaultGate = Default.GetInPort( 'Gate' )
133     ODefaulta = Default.OutPort( 'a' , 'long' )
134     ODefaultBranch = Default.OutPort( 'Branch' , 'string' )
135     ODefaultGate = Default.GetOutPort( 'Gate' )
136     
137     PyPuta = []
138     PyPuta.append( 'from time import * ' )
139     PyPuta.append( 'def Puta(a) : ' )
140     PyPuta.append( '    sleep(1) ' )
141     PyPuta.append( '    return a ' )
142     Puta = GraphSwitchCheckDefault2NOTValid2_1.INode( 'Puta' , PyPuta )
143     Puta.SetName( 'Puta' )
144     Puta.SetAuthor( '' )
145     Puta.SetComment( 'Compute Node' )
146     Puta.Coords( 653 , 414 )
147     IPutaa = Puta.InPort( 'a' , 'long' )
148     IPutaGate = Puta.GetInPort( 'Gate' )
149     OPutaa = Puta.OutPort( 'a' , 'long' )
150     OPutaGate = Puta.GetOutPort( 'Gate' )
151     
152     PyPutBranch = []
153     PyPutBranch.append( 'from time import * ' )
154     PyPutBranch.append( 'def PutBranch(Branch) : ' )
155     PyPutBranch.append( '    sleep(1) ' )
156     PyPutBranch.append( '    return Branch ' )
157     PutBranch = GraphSwitchCheckDefault2NOTValid2_1.INode( 'PutBranch' , PyPutBranch )
158     PutBranch.SetName( 'PutBranch' )
159     PutBranch.SetAuthor( '' )
160     PutBranch.SetComment( 'Compute Node' )
161     PutBranch.Coords( 662 , 613 )
162     IPutBranchBranch = PutBranch.InPort( 'Branch' , 'string' )
163     IPutBranchGate = PutBranch.GetInPort( 'Gate' )
164     OPutBranchBranch = PutBranch.OutPort( 'Branch' , 'string' )
165     OPutBranchGate = PutBranch.GetOutPort( 'Gate' )
166     
167     # Creation of Loop Nodes
168     PyInitLoopSwitch = []
169     PyInitLoopSwitch.append( 'def InitLoop(Index,Min,Max) :        ' )
170     PyInitLoopSwitch.append( '  Index = Max  ' )
171     PyInitLoopSwitch.append( '  return Index,Min,Max       ' )
172     PyMoreInitLoopSwitch = []
173     PyMoreInitLoopSwitch.append( 'from time import * ' )
174     PyMoreInitLoopSwitch.append( 'def MoreLoop(Index,Min,Max) : ' )
175     PyMoreInitLoopSwitch.append( '      sleep(1)  ' )
176     PyMoreInitLoopSwitch.append( '      if Index >= Min :     ' )
177     PyMoreInitLoopSwitch.append( '              DoLoop = 1       ' )
178     PyMoreInitLoopSwitch.append( '      else :       ' )
179     PyMoreInitLoopSwitch.append( '              DoLoop = 0       ' )
180     PyMoreInitLoopSwitch.append( '      return DoLoop,Index,Min,Max       ' )
181     PyNextInitLoopSwitch = []
182     PyNextInitLoopSwitch.append( 'def NextLoop(Index,Min,Max) :       ' )
183     PyNextInitLoopSwitch.append( '      Index = Index - 1       ' )
184     PyNextInitLoopSwitch.append( '      return Index,Min,Max       ' )
185     InitLoopSwitch,EndOfInitLoopSwitch = GraphSwitchCheckDefault2NOTValid2_1.LNode( 'InitLoop' , PyInitLoopSwitch , 'MoreLoop' , PyMoreInitLoopSwitch , 'NextLoop' , PyNextInitLoopSwitch )
186     EndOfInitLoopSwitch.SetName( 'EndOfInitLoopSwitch' )
187     EndOfInitLoopSwitch.SetAuthor( '' )
188     EndOfInitLoopSwitch.SetComment( 'Compute Node' )
189     EndOfInitLoopSwitch.Coords( 1074 , 194 )
190     PyEndOfInitLoopSwitch = []
191     PyEndOfInitLoopSwitch.append( 'from time import *  ' )
192     PyEndOfInitLoopSwitch.append( 'def EndOfInitLoopSwitch(DoLoop,Index,Min,Max) :  ' )
193     PyEndOfInitLoopSwitch.append( '    sleep(1)  ' )
194     PyEndOfInitLoopSwitch.append( '    return DoLoop,Index,Min,Max  ' )
195     EndOfInitLoopSwitch.SetPyFunction( 'EndOfInitLoopSwitch' , PyEndOfInitLoopSwitch )
196     IInitLoopSwitchDoLoop = InitLoopSwitch.GetInPort( 'DoLoop' )
197     IInitLoopSwitchIndex = InitLoopSwitch.InPort( 'Index' , 'long' )
198     IInitLoopSwitchMin = InitLoopSwitch.InPort( 'Min' , 'long' )
199     IInitLoopSwitchMax = InitLoopSwitch.InPort( 'Max' , 'long' )
200     IInitLoopSwitchGate = InitLoopSwitch.GetInPort( 'Gate' )
201     OInitLoopSwitchDoLoop = InitLoopSwitch.GetOutPort( 'DoLoop' )
202     OInitLoopSwitchIndex = InitLoopSwitch.GetOutPort( 'Index' )
203     OInitLoopSwitchMin = InitLoopSwitch.GetOutPort( 'Min' )
204     OInitLoopSwitchMax = InitLoopSwitch.GetOutPort( 'Max' )
205     IEndOfInitLoopSwitchDoLoop = EndOfInitLoopSwitch.GetInPort( 'DoLoop' )
206     IEndOfInitLoopSwitchIndex = EndOfInitLoopSwitch.GetInPort( 'Index' )
207     IEndOfInitLoopSwitchMin = EndOfInitLoopSwitch.GetInPort( 'Min' )
208     IEndOfInitLoopSwitchMax = EndOfInitLoopSwitch.GetInPort( 'Max' )
209     IEndOfInitLoopSwitchGate = EndOfInitLoopSwitch.GetInPort( 'Gate' )
210     OEndOfInitLoopSwitchDoLoop = EndOfInitLoopSwitch.GetOutPort( 'DoLoop' )
211     OEndOfInitLoopSwitchIndex = EndOfInitLoopSwitch.GetOutPort( 'Index' )
212     OEndOfInitLoopSwitchMin = EndOfInitLoopSwitch.GetOutPort( 'Min' )
213     OEndOfInitLoopSwitchMax = EndOfInitLoopSwitch.GetOutPort( 'Max' )
214     OEndOfInitLoopSwitchGate = EndOfInitLoopSwitch.GetOutPort( 'Gate' )
215     InitLoopSwitch.SetName( 'InitLoopSwitch' )
216     InitLoopSwitch.SetAuthor( '' )
217     InitLoopSwitch.SetComment( 'Compute Node' )
218     InitLoopSwitch.Coords( 10 , 129 )
219     
220     # Creation of Switch Nodes
221     PySwitch = []
222     PySwitch.append( 'from time import *        ' )
223     PySwitch.append( 'def Switch(a) : ' )
224     PySwitch.append( '    sleep(1) ' )
225     PySwitch.append( '    Branch = "Negative or null"    ' )
226     PySwitch.append( '    if a <= 0 :       ' )
227     PySwitch.append( '        return 0,0,a,Branch,1  ' )
228     PySwitch.append( '    if ( a & 1 ) == 0 :    ' )
229     PySwitch.append( '        Branch = "Even"    ' )
230     PySwitch.append( '    else :    ' )
231     PySwitch.append( '        Branch = "Odd"    ' )
232     PySwitch.append( '    return a & 1,1-(a&1),a,Branch,0  ' )
233     Switch,EndOfSwitch = GraphSwitchCheckDefault2NOTValid2_1.SNode( 'Switch' , PySwitch )
234     EndOfSwitch.SetName( 'EndOfSwitch' )
235     EndOfSwitch.SetAuthor( '' )
236     EndOfSwitch.SetComment( 'Compute Node' )
237     EndOfSwitch.Coords( 882 , 194 )
238     PyEndOfSwitch = []
239     PyEndOfSwitch.append( 'from time import * ' )
240     PyEndOfSwitch.append( 'def EndOfSwitch(a,Branch) : ' )
241     PyEndOfSwitch.append( '    sleep(1) ' )
242     PyEndOfSwitch.append( '    return a ' )
243     EndOfSwitch.SetPyFunction( 'EndOfSwitch' , PyEndOfSwitch )
244     IEndOfSwitcha = EndOfSwitch.InPort( 'a' , 'long' )
245     IEndOfSwitchBranch = EndOfSwitch.InPort( 'Branch' , 'string' )
246     IEndOfSwitchDefault = EndOfSwitch.GetInPort( 'Default' )
247     OEndOfSwitcha = EndOfSwitch.OutPort( 'a' , 'long' )
248     OEndOfSwitchGate = EndOfSwitch.GetOutPort( 'Gate' )
249     Switch.SetName( 'Switch' )
250     Switch.SetAuthor( '' )
251     Switch.SetComment( 'Compute Node' )
252     Switch.Coords( 190 , 129 )
253     ISwitcha = Switch.InPort( 'a' , 'long' )
254     ISwitchGate = Switch.GetInPort( 'Gate' )
255     OSwitchOdd = Switch.OutPort( 'Odd' , 'long' )
256     OSwitchEven = Switch.OutPort( 'Even' , 'int' )
257     OSwitcha = Switch.OutPort( 'a' , 'int' )
258     OSwitchBranch = Switch.OutPort( 'Branch' , 'string' )
259     OSwitchdefault = Switch.OutPort( 'default' , 'boolean' )
260     OSwitchDefault = Switch.GetOutPort( 'Default' )
261     
262     # Creation of Links
263     LIsOddaEmptyNodea = GraphSwitchCheckDefault2NOTValid2_1.Link( OIsOdda , IEmptyNodea )
264     LIsOddaEmptyNodea.AddCoord( 1 , 646 , 78 )
265     
266     LIsEvenaEndOfSwitcha = GraphSwitchCheckDefault2NOTValid2_1.Link( OIsEvena , IEndOfSwitcha )
267     
268     LIsEvenaPutaa = GraphSwitchCheckDefault2NOTValid2_1.Link( OIsEvena , IPutaa )
269     
270     LPrintOddBranchEmptyNodeBranch = GraphSwitchCheckDefault2NOTValid2_1.Link( OPrintOddBranch , IEmptyNodeBranch )
271     
272     LPrintEvenBranchEndOfSwitchBranch = GraphSwitchCheckDefault2NOTValid2_1.Link( OPrintEvenBranch , IEndOfSwitchBranch )
273     
274     LEmptyNodeaEndOfSwitcha = GraphSwitchCheckDefault2NOTValid2_1.Link( OEmptyNodea , IEndOfSwitcha )
275     
276     LEmptyNodeBranchEndOfSwitchBranch = GraphSwitchCheckDefault2NOTValid2_1.Link( OEmptyNodeBranch , IEndOfSwitchBranch )
277     
278     LDefaultaEndOfSwitcha = GraphSwitchCheckDefault2NOTValid2_1.Link( ODefaulta , IEndOfSwitcha )
279     
280     LDefaultBranchEndOfSwitchBranch = GraphSwitchCheckDefault2NOTValid2_1.Link( ODefaultBranch , IEndOfSwitchBranch )
281     
282     LDefaultBranchPutBranchBranch = GraphSwitchCheckDefault2NOTValid2_1.Link( ODefaultBranch , IPutBranchBranch )
283     
284     LInitLoopSwitchIndexSwitcha = GraphSwitchCheckDefault2NOTValid2_1.Link( OInitLoopSwitchIndex , ISwitcha )
285     
286     LInitLoopSwitchMinEndOfInitLoopSwitchMin = GraphSwitchCheckDefault2NOTValid2_1.Link( OInitLoopSwitchMin , IEndOfInitLoopSwitchMin )
287     
288     LInitLoopSwitchMaxEndOfInitLoopSwitchMax = GraphSwitchCheckDefault2NOTValid2_1.Link( OInitLoopSwitchMax , IEndOfInitLoopSwitchMax )
289     
290     LSwitchOddIsOddGate = GraphSwitchCheckDefault2NOTValid2_1.Link( OSwitchOdd , IIsOddGate )
291     LSwitchOddIsOddGate.AddCoord( 1 , 401 , 101 )
292     LSwitchOddIsOddGate.AddCoord( 2 , 401 , 160 )
293     
294     LSwitchOddPrintOddGate = GraphSwitchCheckDefault2NOTValid2_1.Link( OSwitchOdd , IPrintOddGate )
295     LSwitchOddPrintOddGate.AddCoord( 1 , 401 , 245 )
296     LSwitchOddPrintOddGate.AddCoord( 2 , 401 , 159 )
297     
298     LSwitchEvenIsEvenGate = GraphSwitchCheckDefault2NOTValid2_1.Link( OSwitchEven , IIsEvenGate )
299     LSwitchEvenIsEvenGate.AddCoord( 1 , 392 , 533 )
300     LSwitchEvenIsEvenGate.AddCoord( 2 , 392 , 182 )
301     
302     LSwitchEvenPrintEvenGate = GraphSwitchCheckDefault2NOTValid2_1.Link( OSwitchEven , IPrintEvenGate )
303     LSwitchEvenPrintEvenGate.AddCoord( 1 , 392 , 403 )
304     LSwitchEvenPrintEvenGate.AddCoord( 2 , 392 , 181 )
305     
306     LSwitchaIsOdda = GraphSwitchCheckDefault2NOTValid2_1.Link( OSwitcha , IIsOdda )
307     LSwitchaIsOdda.AddCoord( 1 , 382 , 78 )
308     LSwitchaIsOdda.AddCoord( 2 , 382 , 199 )
309     
310     LSwitchaIsEvena = GraphSwitchCheckDefault2NOTValid2_1.Link( OSwitcha , IIsEvena )
311     LSwitchaIsEvena.AddCoord( 1 , 381 , 509 )
312     LSwitchaIsEvena.AddCoord( 2 , 382 , 200 )
313     
314     LSwitchaPrintOdda = GraphSwitchCheckDefault2NOTValid2_1.Link( OSwitcha , IPrintOdda )
315     
316     LSwitchaPrintEvena = GraphSwitchCheckDefault2NOTValid2_1.Link( OSwitcha , IPrintEvena )
317     LSwitchaPrintEvena.AddCoord( 1 , 381 , 361 )
318     LSwitchaPrintEvena.AddCoord( 2 , 382 , 200 )
319     
320     LSwitchaDefaulta = GraphSwitchCheckDefault2NOTValid2_1.Link( OSwitcha , IDefaulta )
321     LSwitchaDefaulta.AddCoord( 1 , 382 , 663 )
322     LSwitchaDefaulta.AddCoord( 2 , 382 , 199 )
323     
324     LSwitchBranchPrintOddBranch = GraphSwitchCheckDefault2NOTValid2_1.Link( OSwitchBranch , IPrintOddBranch )
325     
326     LSwitchBranchPrintEvenBranch = GraphSwitchCheckDefault2NOTValid2_1.Link( OSwitchBranch , IPrintEvenBranch )
327     LSwitchBranchPrintEvenBranch.AddCoord( 1 , 369 , 381 )
328     LSwitchBranchPrintEvenBranch.AddCoord( 2 , 369 , 219 )
329     
330     LSwitchBranchDefaultBranch = GraphSwitchCheckDefault2NOTValid2_1.Link( OSwitchBranch , IDefaultBranch )
331     LSwitchBranchDefaultBranch.AddCoord( 1 , 370 , 683 )
332     LSwitchBranchDefaultBranch.AddCoord( 2 , 370 , 220 )
333     
334     LSwitchdefaultDefaultGate = GraphSwitchCheckDefault2NOTValid2_1.Link( OSwitchdefault , IDefaultGate )
335     LSwitchdefaultDefaultGate.AddCoord( 1 , 363 , 707 )
336     LSwitchdefaultDefaultGate.AddCoord( 2 , 362 , 239 )
337     
338     LSwitchDefaultEndOfSwitchDefault = GraphSwitchCheckDefault2NOTValid2_1.Link( OSwitchDefault , IEndOfSwitchDefault )
339     
340     LEndOfSwitchaEndOfInitLoopSwitchIndex = GraphSwitchCheckDefault2NOTValid2_1.Link( OEndOfSwitcha , IEndOfInitLoopSwitchIndex )
341     
342     LPutaaEndOfSwitcha = GraphSwitchCheckDefault2NOTValid2_1.Link( OPutaa , IEndOfSwitcha )
343     
344     LPutBranchBranchEndOfSwitchBranch = GraphSwitchCheckDefault2NOTValid2_1.Link( OPutBranchBranch , IEndOfSwitchBranch )
345     
346     # Input datas
347     IInitLoopSwitchIndex.Input( 0 )
348     IInitLoopSwitchMin.Input( -5 )
349     IInitLoopSwitchMax.Input( 10 )
350     
351     # Output Ports of the graph
352     #OEndOfInitLoopSwitchIndex = EndOfInitLoopSwitch.GetOutPort( 'Index' )
353     #OEndOfInitLoopSwitchMin = EndOfInitLoopSwitch.GetOutPort( 'Min' )
354     #OEndOfInitLoopSwitchMax = EndOfInitLoopSwitch.GetOutPort( 'Max' )
355     return GraphSwitchCheckDefault2NOTValid2_1
356
357
358 GraphSwitchCheckDefault2NOTValid2_1 = DefGraphSwitchCheckDefault2NOTValid2_1()