Salome HOME
Update copyrights 2014.
[samples/datafiles.git] / Superv / Python / GraphMerge.py
1 # Copyright (C) 2007-2014  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, or (at your option) any later version.
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
23 # Check the Merge of two graphs
24 # Creation of GraphSwitch
25 #
26 from GraphSwitch import *
27
28 # Creation of GraphSwitch1
29 from GraphSwitch1 import *
30
31 # Merge of GraphSwitch1 in GraphSwitch
32 GraphSwitch.Merge( GraphSwitch1 )
33
34 # Create a variable for each node of GraphSwitch :
35 # IsOdd,IsOdd_1,InitLoopSwitch,InitLoop,EndOfInitLoopSwitch,EndOfInitLoop,Switch,Switch_1,EndOfSwitch,EndSwitch
36 exec GraphSwitch.ListNodes()
37
38 # Print Input and Output Ports values of InitLoopSwitch
39 InitLoopSwitch.PrintPorts()
40
41 # Print Input and Output Ports values of InitLoop
42 InitLoop.PrintPorts()
43
44 # Print Input and Output Ports values of GraphSwitch
45 GraphSwitch.PrintPorts()
46
47 # Start asynchronous execution of GraphSwitch
48 GraphSwitch.Run()
49
50 # Wait for completion of GraphSwitch
51 GraphSwitch.DoneW()
52
53 # Print the state of GraphSwitch
54 GraphSwitch.State()
55
56 # Print the results of GraphSwitch
57 GraphSwitch.PrintPorts()
58
59 # Start asynchronous execution of GraphSwitch
60 GraphSwitch.Run()
61
62 # Start asynchronous execution of GraphSwitch1 (parallel to the execution of GraphSwitch)
63 GraphSwitch1.Run()
64
65 # Wait for completion of GraphSwitch1
66 GraphSwitch1.DoneW()
67
68 # Print the state of GraphSwitch1
69 GraphSwitch.State()
70
71 # Wait for completion of GraphSwitch
72 GraphSwitch.DoneW()
73
74 # Print the state of GraphSwitch
75 GraphSwitch.State()
76
77 # Print the results of GraphSwitch
78 GraphSwitch.PrintPorts()
79
80 # Print the results of GraphSwitch1
81 GraphSwitch1.PrintPorts()
82