]> SALOME platform Git repositories - modules/superv.git/blob - examples/myFactorialPy.py
Salome HOME
This commit was generated by cvs2git to track changes on a CVS vendor
[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()