Salome HOME
Update copyrights
[samples/datafiles.git] / Yacs / Schemas / forloop1.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     <!-- one loop 5 steps -->
23     <!--types -->
24     <!--nodes -->
25     <forloop name="b1" nsteps="5">
26       <inline name="node2" >
27         <function name="f">
28             <code>a=0</code>
29             <code>def f(p1):</code>
30             <code>  global a</code>
31             <code>  p1= p1+10.</code>
32             <code>  print(a)</code>
33             <code>  a=a+p1</code>
34             <code>  print(a)</code>
35             <code>  return p1</code>
36         </function>
37         <inport name="p1" type="double"/>
38         <outport name="p1" type="double"/>
39       </inline>
40     </forloop>
41
42     <!--parameters -->
43     <parameter>
44         <tonode>b1.node2</tonode> <toport>p1</toport>
45         <value><double>23</double> </value>
46     </parameter>
47
48 </proc>