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