Salome HOME
Fix for "23669: [CEA 13186] YACS xml scheme files with calls to print function need...
[samples/datafiles.git] / Yacs / Schemas / optimizer2.xml
1 <!--
2   Copyright (C) 2006-2015  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     <!-- an optimizer with 3 branches with an inline python node -->
23     <!--types -->
24
25     <!--nodes -->
26     <optimizer name="b1" nbranch="4" lib="../../engine/Test/.libs/libPluginOptEvTest1" entry="PluginOptEvTest1Factory" >
27       <bloc name="b" >
28       <inline name="node2" >
29         <script >
30             <code>p1= p1+10.</code>
31             <code>print("node2:",p1)</code>
32             <code>#a=p1/0</code>
33             <code>p1=5</code>
34         </script>
35         <inport name="p1" type="double"/>
36         <outport name="p1" type="int"/>
37       </inline>
38       </bloc>
39     </optimizer>
40
41     <!--control -->
42
43     <!--datalink -->
44     <datalink>
45       <fromnode>b1</fromnode><fromport>SmplPrt</fromport>
46       <tonode>b1.b.node2</tonode> <toport>p1</toport>
47     </datalink>
48     <datalink control="false" >
49       <fromnode>b1.b.node2</fromnode><fromport>p1</fromport>
50       <tonode>b1</tonode> <toport>retPortForOutPool</toport>
51     </datalink>
52
53     <!--parameters -->
54   <parameter>
55     <tonode>b1</tonode> <toport>FileNameInitAlg</toport>
56     <value><string>coucou</string></value>
57   </parameter>
58
59
60 </proc>