Salome HOME
Add py2yacs omu/py2yacs
authorOvidiu Mircescu <ovidiu.mircescu@edf.fr>
Fri, 27 Jan 2017 13:58:59 +0000 (14:58 +0100)
committerOvidiu Mircescu <ovidiu.mircescu@edf.fr>
Fri, 27 Jan 2017 13:58:59 +0000 (14:58 +0100)
commit4201ff8bb933560af500e56ec0899db602e163b3
tree5c494a04703275b60d0887e4d3e0b1877213cdb0
parent7dd1d2d397e8222594e688c681a098b5459110fe
Add py2yacs

py2yacs library can build a yacs schema out of a python script.
The schema contains a single python node which executes a function
from the python script.
Input and output ports are deducted from the parameters and the
returns of the chosen function. The type of ports are restricted
to 'double'.
14 files changed:
src/CMakeLists.txt
src/CTestTestfileInstall.cmake
src/py2yacs/CMakeLists.txt [new file with mode: 0644]
src/py2yacs/Test/CMakeLists.txt [new file with mode: 0644]
src/py2yacs/Test/CTestTestfileInstall.cmake [new file with mode: 0644]
src/py2yacs/Test/Py2yacsTest.cxx [new file with mode: 0644]
src/py2yacs/Test/Py2yacsTest.hxx [new file with mode: 0644]
src/py2yacs/Test/TestPy2yacs.cxx [new file with mode: 0644]
src/py2yacs/Test/bad_parsers.py [new file with mode: 0644]
src/py2yacs/Test/err_py2yacs_invalid.py [new file with mode: 0644]
src/py2yacs/Test/test_py2yacs.cxx [new file with mode: 0644]
src/py2yacs/py2yacs.cxx [new file with mode: 0644]
src/py2yacs/py2yacs.hxx [new file with mode: 0644]
src/py2yacs/py2yacs.py [new file with mode: 0644]