Salome HOME
Merge Python 3 porting.
[samples/datafiles.git] / Superv / Python / GraphSwitchCheckBranch1.py
diff --git a/Superv/Python/GraphSwitchCheckBranch1.py b/Superv/Python/GraphSwitchCheckBranch1.py
deleted file mode 100644 (file)
index ceb214c..0000000
+++ /dev/null
@@ -1,254 +0,0 @@
-# Copyright (C) 2007-2015  CEA/DEN, EDF R&D, OPEN CASCADE
-#
-# Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
-# CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2.1 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
-#
-# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
-#
-
-# Generated python file of Graph GraphSwitchCheckBranch1_1
-#
-from SuperV import *
-
-# Graph creation of GraphSwitchCheckBranch1_1
-def DefGraphSwitchCheckBranch1_1() :
-    GraphSwitchCheckBranch1_1 = Graph( 'GraphSwitchCheckBranch1_1' )
-    GraphSwitchCheckBranch1_1.SetName( 'GraphSwitchCheckBranch1_1' )
-    GraphSwitchCheckBranch1_1.SetAuthor( 'JR' )
-    GraphSwitchCheckBranch1_1.SetComment( 'Switch with two SwitchBranches, One NotSwitchBranch and the DefaultBranch' )
-    GraphSwitchCheckBranch1_1.Coords( 0 , 0 )
-    
-    # Creation of Factory Nodes
-    
-    # Creation of InLine Nodes
-    PyIsOdd = []
-    PyIsOdd.append( 'from time import *   ' )
-    PyIsOdd.append( 'def IsOdd(a) :       ' )
-    PyIsOdd.append( '    print a,"IsOdd (GraphSwitch)"      ' )
-    PyIsOdd.append( '    sleep( 1 )   ' )
-    PyIsOdd.append( '    return a     ' )
-    IsOdd = GraphSwitchCheckBranch1_1.INode( 'IsOdd' , PyIsOdd )
-    IsOdd.SetName( 'IsOdd' )
-    IsOdd.SetAuthor( '' )
-    IsOdd.SetComment( 'Python function' )
-    IsOdd.Coords( 415 , 7 )
-    IIsOdda = IsOdd.InPort( 'a' , 'long' )
-    IIsOddGate = IsOdd.GetInPort( 'Gate' )
-    OIsOdda = IsOdd.OutPort( 'a' , 'long' )
-    OIsOddGate = IsOdd.GetOutPort( 'Gate' )
-    
-    PyIsEven = []
-    PyIsEven.append( 'from time import *    ' )
-    PyIsEven.append( 'def IsEven(a) :        ' )
-    PyIsEven.append( '    print a,"IsEven (GraphSwitch)"       ' )
-    PyIsEven.append( '    sleep( 1 )    ' )
-    PyIsEven.append( '    return a      ' )
-    IsEven = GraphSwitchCheckBranch1_1.INode( 'IsEven' , PyIsEven )
-    IsEven.SetName( 'IsEven' )
-    IsEven.SetAuthor( '' )
-    IsEven.SetComment( 'Compute Node' )
-    IsEven.Coords( 421 , 438 )
-    IIsEvena = IsEven.InPort( 'a' , 'long' )
-    IIsEvenGate = IsEven.GetInPort( 'Gate' )
-    OIsEvena = IsEven.OutPort( 'a' , 'long' )
-    OIsEvenGate = IsEven.GetOutPort( 'Gate' )
-    
-    PyBranchNode = []
-    PyBranchNode.append( 'from time import *  ' )
-    PyBranchNode.append( 'def Print_1(Branch) :      ' )
-    PyBranchNode.append( '    print "Print ",Branch  ' )
-    PyBranchNode.append( '    sleep(1)  ' )
-    PyBranchNode.append( '    return Branch      ' )
-    BranchNode = GraphSwitchCheckBranch1_1.INode( 'Print_1' , PyBranchNode )
-    BranchNode.SetName( 'BranchNode' )
-    BranchNode.SetAuthor( '' )
-    BranchNode.SetComment( 'Compute Node' )
-    BranchNode.Coords( 529 , 177 )
-    IBranchNodeBranch = BranchNode.InPort( 'Branch' , 'string' )
-    IBranchNodeGate = BranchNode.GetInPort( 'Gate' )
-    OBranchNodeBranch = BranchNode.OutPort( 'Branch' , 'string' )
-    OBranchNodeGate = BranchNode.GetOutPort( 'Gate' )
-    
-    Pydefault = []
-    Pydefault.append( 'from time import * ' )
-    Pydefault.append( 'def default(a) : ' )
-    Pydefault.append( '    sleep(1) ' )
-    Pydefault.append( '    return a  ' )
-    default = GraphSwitchCheckBranch1_1.INode( 'default' , Pydefault )
-    default.SetName( 'default' )
-    default.SetAuthor( '' )
-    default.SetComment( 'Compute Node' )
-    default.Coords( 428 , 308 )
-    Idefaulta = default.InPort( 'a' , 'long' )
-    IdefaultGate = default.GetInPort( 'Gate' )
-    Odefaulta = default.OutPort( 'a' , 'long' )
-    OdefaultGate = default.GetOutPort( 'Gate' )
-    
-    # Creation of Loop Nodes
-    PyInitLoopSwitch = []
-    PyInitLoopSwitch.append( 'def InitLoop(Index,Min,Max) :        ' )
-    PyInitLoopSwitch.append( ' Index = Max  ' )
-    PyInitLoopSwitch.append( ' return Index,Min,Max       ' )
-    PyMoreInitLoopSwitch = []
-    PyMoreInitLoopSwitch.append( 'from time import * ' )
-    PyMoreInitLoopSwitch.append( 'def MoreLoop(Index,Min,Max) : ' )
-    PyMoreInitLoopSwitch.append( '     sleep(1)  ' )
-    PyMoreInitLoopSwitch.append( '     if Index >= Min :     ' )
-    PyMoreInitLoopSwitch.append( '             DoLoop = 1       ' )
-    PyMoreInitLoopSwitch.append( '     else :       ' )
-    PyMoreInitLoopSwitch.append( '             DoLoop = 0       ' )
-    PyMoreInitLoopSwitch.append( '     return DoLoop,Index,Min,Max       ' )
-    PyNextInitLoopSwitch = []
-    PyNextInitLoopSwitch.append( 'def NextLoop(Index,Min,Max) :       ' )
-    PyNextInitLoopSwitch.append( '     Index = Index - 1       ' )
-    PyNextInitLoopSwitch.append( '     return Index,Min,Max       ' )
-    InitLoopSwitch,EndOfInitLoopSwitch = GraphSwitchCheckBranch1_1.LNode( 'InitLoop' , PyInitLoopSwitch , 'MoreLoop' , PyMoreInitLoopSwitch , 'NextLoop' , PyNextInitLoopSwitch )
-    EndOfInitLoopSwitch.SetName( 'EndOfInitLoopSwitch' )
-    EndOfInitLoopSwitch.SetAuthor( '' )
-    EndOfInitLoopSwitch.SetComment( 'Compute Node' )
-    EndOfInitLoopSwitch.Coords( 1073 , 216 )
-    PyEndOfInitLoopSwitch = []
-    PyEndOfInitLoopSwitch.append( 'from time import *  ' )
-    PyEndOfInitLoopSwitch.append( 'def EndOfInitLoopSwitch(DoLoop,Index,Min,Max) :  ' )
-    PyEndOfInitLoopSwitch.append( '    sleep(1)  ' )
-    PyEndOfInitLoopSwitch.append( '    return DoLoop,Index,Min,Max  ' )
-    EndOfInitLoopSwitch.SetPyFunction( 'EndOfInitLoopSwitch' , PyEndOfInitLoopSwitch )
-    IInitLoopSwitchDoLoop = InitLoopSwitch.GetInPort( 'DoLoop' )
-    IInitLoopSwitchIndex = InitLoopSwitch.InPort( 'Index' , 'long' )
-    IInitLoopSwitchMin = InitLoopSwitch.InPort( 'Min' , 'long' )
-    IInitLoopSwitchMax = InitLoopSwitch.InPort( 'Max' , 'long' )
-    IInitLoopSwitchGate = InitLoopSwitch.GetInPort( 'Gate' )
-    OInitLoopSwitchDoLoop = InitLoopSwitch.GetOutPort( 'DoLoop' )
-    OInitLoopSwitchIndex = InitLoopSwitch.GetOutPort( 'Index' )
-    OInitLoopSwitchMin = InitLoopSwitch.GetOutPort( 'Min' )
-    OInitLoopSwitchMax = InitLoopSwitch.GetOutPort( 'Max' )
-    IEndOfInitLoopSwitchDoLoop = EndOfInitLoopSwitch.GetInPort( 'DoLoop' )
-    IEndOfInitLoopSwitchIndex = EndOfInitLoopSwitch.GetInPort( 'Index' )
-    IEndOfInitLoopSwitchMin = EndOfInitLoopSwitch.GetInPort( 'Min' )
-    IEndOfInitLoopSwitchMax = EndOfInitLoopSwitch.GetInPort( 'Max' )
-    IEndOfInitLoopSwitchGate = EndOfInitLoopSwitch.GetInPort( 'Gate' )
-    OEndOfInitLoopSwitchDoLoop = EndOfInitLoopSwitch.GetOutPort( 'DoLoop' )
-    OEndOfInitLoopSwitchIndex = EndOfInitLoopSwitch.GetOutPort( 'Index' )
-    OEndOfInitLoopSwitchMin = EndOfInitLoopSwitch.GetOutPort( 'Min' )
-    OEndOfInitLoopSwitchMax = EndOfInitLoopSwitch.GetOutPort( 'Max' )
-    OEndOfInitLoopSwitchGate = EndOfInitLoopSwitch.GetOutPort( 'Gate' )
-    InitLoopSwitch.SetName( 'InitLoopSwitch' )
-    InitLoopSwitch.SetAuthor( '' )
-    InitLoopSwitch.SetComment( 'Compute Node' )
-    InitLoopSwitch.Coords( 10 , 157 )
-    
-    # Creation of Switch Nodes
-    PySwitch = []
-    PySwitch.append( 'from time import *        ' )
-    PySwitch.append( 'def Switch(a) : ' )
-    PySwitch.append( '    sleep(1) ' )
-    PySwitch.append( '    Branch = "Negative or null"    ' )
-    PySwitch.append( '    if a <= 0 :       ' )
-    PySwitch.append( '        return 0,0,a,Branch,1  ' )
-    PySwitch.append( '    if ( a & 1 ) == 0 :    ' )
-    PySwitch.append( '        Branch = "Even"    ' )
-    PySwitch.append( '    else :    ' )
-    PySwitch.append( '        Branch = "Odd"    ' )
-    PySwitch.append( '    return a & 1,1-(a&1),a,Branch,0  ' )
-    Switch,EndOfSwitch = GraphSwitchCheckBranch1_1.SNode( 'Switch' , PySwitch )
-    EndOfSwitch.SetName( 'EndOfSwitch' )
-    EndOfSwitch.SetAuthor( '' )
-    EndOfSwitch.SetComment( 'Compute Node' )
-    EndOfSwitch.Coords( 880 , 216 )
-    PyEndOfSwitch = []
-    PyEndOfSwitch.append( 'from time import * ' )
-    PyEndOfSwitch.append( 'def EndOfSwitch(a,Branch) : ' )
-    PyEndOfSwitch.append( '    sleep(1) ' )
-    PyEndOfSwitch.append( '    return a ' )
-    EndOfSwitch.SetPyFunction( 'EndOfSwitch' , PyEndOfSwitch )
-    IEndOfSwitcha = EndOfSwitch.InPort( 'a' , 'long' )
-    IEndOfSwitchBranch = EndOfSwitch.InPort( 'Branch' , 'string' )
-    IEndOfSwitchDefault = EndOfSwitch.GetInPort( 'Default' )
-    OEndOfSwitcha = EndOfSwitch.OutPort( 'a' , 'long' )
-    OEndOfSwitchGate = EndOfSwitch.GetOutPort( 'Gate' )
-    Switch.SetName( 'Switch' )
-    Switch.SetAuthor( '' )
-    Switch.SetComment( 'Compute Node' )
-    Switch.Coords( 194 , 157 )
-    ISwitcha = Switch.InPort( 'a' , 'long' )
-    ISwitchGate = Switch.GetInPort( 'Gate' )
-    OSwitchOdd = Switch.OutPort( 'Odd' , 'long' )
-    OSwitchEven = Switch.OutPort( 'Even' , 'int' )
-    OSwitcha = Switch.OutPort( 'a' , 'int' )
-    OSwitchBranch = Switch.OutPort( 'Branch' , 'string' )
-    OSwitchdefault = Switch.OutPort( 'default' , 'boolean' )
-    OSwitchDefault = Switch.GetOutPort( 'Default' )
-    
-    # Creation of Links
-    LIsOddaEndOfSwitcha = GraphSwitchCheckBranch1_1.Link( OIsOdda , IEndOfSwitcha )
-    
-    LIsEvenaEndOfSwitcha = GraphSwitchCheckBranch1_1.Link( OIsEvena , IEndOfSwitcha )
-    
-    LBranchNodeBranchEndOfSwitchBranch = GraphSwitchCheckBranch1_1.Link( OBranchNodeBranch , IEndOfSwitchBranch )
-    
-    LInitLoopSwitchIndexSwitcha = GraphSwitchCheckBranch1_1.Link( OInitLoopSwitchIndex , ISwitcha )
-    
-    LInitLoopSwitchMinEndOfInitLoopSwitchMin = GraphSwitchCheckBranch1_1.Link( OInitLoopSwitchMin , IEndOfInitLoopSwitchMin )
-    
-    LInitLoopSwitchMaxEndOfInitLoopSwitchMax = GraphSwitchCheckBranch1_1.Link( OInitLoopSwitchMax , IEndOfInitLoopSwitchMax )
-    
-    LSwitchOddIsOddGate = GraphSwitchCheckBranch1_1.Link( OSwitchOdd , IIsOddGate )
-    LSwitchOddIsOddGate.AddCoord( 1 , 401 , 101 )
-    LSwitchOddIsOddGate.AddCoord( 2 , 401 , 188 )
-    
-    LSwitchEvenIsEvenGate = GraphSwitchCheckBranch1_1.Link( OSwitchEven , IIsEvenGate )
-    LSwitchEvenIsEvenGate.AddCoord( 1 , 392 , 533 )
-    LSwitchEvenIsEvenGate.AddCoord( 2 , 392 , 208 )
-    
-    LSwitchaIsOdda = GraphSwitchCheckBranch1_1.Link( OSwitcha , IIsOdda )
-    LSwitchaIsOdda.AddCoord( 1 , 382 , 78 )
-    LSwitchaIsOdda.AddCoord( 2 , 382 , 229 )
-    
-    LSwitchaIsEvena = GraphSwitchCheckBranch1_1.Link( OSwitcha , IIsEvena )
-    LSwitchaIsEvena.AddCoord( 1 , 381 , 509 )
-    LSwitchaIsEvena.AddCoord( 2 , 381 , 229 )
-    
-    LSwitchadefaulta = GraphSwitchCheckBranch1_1.Link( OSwitcha , Idefaulta )
-    LSwitchadefaulta.AddCoord( 1 , 382 , 377 )
-    LSwitchadefaulta.AddCoord( 2 , 382 , 228 )
-    
-    LSwitchBranchBranchNodeBranch = GraphSwitchCheckBranch1_1.Link( OSwitchBranch , IBranchNodeBranch )
-    
-    LSwitchdefaultdefaultGate = GraphSwitchCheckBranch1_1.Link( OSwitchdefault , IdefaultGate )
-    LSwitchdefaultdefaultGate.AddCoord( 1 , 410 , 403 )
-    LSwitchdefaultdefaultGate.AddCoord( 2 , 410 , 269 )
-    LSwitchdefaultdefaultGate.AddCoord( 3 , 410 , 268 )
-    
-    LSwitchDefaultEndOfSwitchDefault = GraphSwitchCheckBranch1_1.Link( OSwitchDefault , IEndOfSwitchDefault )
-    
-    LEndOfSwitchaEndOfInitLoopSwitchIndex = GraphSwitchCheckBranch1_1.Link( OEndOfSwitcha , IEndOfInitLoopSwitchIndex )
-    
-    LdefaultaEndOfSwitcha = GraphSwitchCheckBranch1_1.Link( Odefaulta , IEndOfSwitcha )
-    
-    # Input datas
-    IInitLoopSwitchIndex.Input( 0 )
-    IInitLoopSwitchMin.Input( -5 )
-    IInitLoopSwitchMax.Input( 10 )
-    
-    # Output Ports of the graph
-    #OEndOfInitLoopSwitchIndex = EndOfInitLoopSwitch.GetOutPort( 'Index' )
-    #OEndOfInitLoopSwitchMin = EndOfInitLoopSwitch.GetOutPort( 'Min' )
-    #OEndOfInitLoopSwitchMax = EndOfInitLoopSwitch.GetOutPort( 'Max' )
-    return GraphSwitchCheckBranch1_1
-
-
-GraphSwitchCheckBranch1_1 = DefGraphSwitchCheckBranch1_1()