Salome HOME
NRI : Add documentation.
[modules/superv.git] / examples / myFactorialPy.py
1
2 from SuperV import *
3
4 myPy = Graph('myPy')
5
6 eval = myPy.Node('FactorialComponent','FactorialComponent','eval')
7 eval.SetContainer('FactoryServerPy')
8
9 myPy.IsValid()
10
11 myPy.PrintPorts()
12
13 myPy.Run( 3 )
14
15 myPy.DoneW()
16
17 myPy.State()
18
19 myPy.PrintPorts()