Salome HOME
5c56713cfa271c49063ea22d69cfb56b2f0d8c79
[samples/datafiles.git] / Yacs / Schemas / foreach_LongPython.xml
1 <!--
2   Copyright (C) 2006-2019  CEA/DEN, EDF R&D
3
4   This library is free software; you can redistribute it and/or
5   modify it under the terms of the GNU Lesser General Public
6   License as published by the Free Software Foundation; either
7   version 2.1 of the License, or (at your option) any later version.
8
9   This library is distributed in the hope that it will be useful,
10   but WITHOUT ANY WARRANTY; without even the implied warranty of
11   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12   Lesser General Public License for more details.
13
14   You should have received a copy of the GNU Lesser General Public
15   License along with this library; if not, write to the Free Software
16   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17
18   See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19
20 -->
21 <proc>
22     <!-- a for each loop with 500 branches with an inline python node -->
23     <!--types -->
24     <sequence name="dblevec" content="double"/>
25
26     <!--nodes -->
27     <inline name="node0" >
28       <script>
29         <code>p1=[i for i in range(500)]</code>
30       </script>
31       <outport name="p1" type="dblevec"/>
32     </inline>
33
34     <foreach name="b1" nbranch="500" type="double" >
35       <inline name="node2" >
36         <function name="f">
37             <code>import time</code>
38             <code>def f(p1):</code>
39             <code>  print("+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ start ", p1)</code>
40             <code>  time.sleep(0.1)</code>
41             <code>  print("----------------------------------------- stop  ", p1)</code>
42             <code>  return p1</code>
43         </function>
44         <inport name="p1" type="double"/>
45         <outport name="p1" type="double"/>
46       </inline>
47     </foreach>
48     <inline name="node1" >
49       <script>
50         <code>print(p1)</code>
51       </script>
52       <inport name="p1" type="dblevec"/>
53     </inline>
54
55     <!--control -->
56     <control> <fromnode>node0</fromnode> <tonode>b1</tonode> </control>
57     <control> <fromnode>b1</fromnode> <tonode>node1</tonode> </control>
58
59     <!--datalink -->
60     <datalink>
61       <fromnode>node0</fromnode><fromport>p1</fromport>
62       <tonode>b1</tonode> <toport>SmplsCollection</toport>
63     </datalink>
64     <datalink>
65       <fromnode>b1</fromnode><fromport>SmplPrt</fromport>
66       <tonode>b1.node2</tonode> <toport>p1</toport>
67     </datalink>
68     <datalink>
69       <fromnode>b1.node2</fromnode><fromport>p1</fromport>
70       <tonode>node1</tonode> <toport>p1</toport>
71     </datalink>
72
73     <!--parameters -->
74
75 </proc>