Fast IFS using RPN notation
python
c
x86-64
nasm
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Yann Weber 30c6c92493 Preparing implementation & python API for IFS mutation 4 months ago
python_rpnifs Ifs5 implementation enhancement 1 year ago
tests Preparing implementation & python API for IFS mutation 4 months ago
.gitignore Add gcov test coverage suppport 9 months ago
Doxyfile.mk Comment & doxygen documentation enhancement 9 months ago
LICENCE.txt Initial commit 4 years ago
Makefile First usable IFS implementation 7 months ago
README Initial commit 4 years ago
VERSION Initial commit 4 years ago
benchplot.sh First usable IFS implementation 7 months ago
check_deps.sh Initial commit 4 years ago
config.h Comment & doxygen documentation enhancement 9 months ago
deploy.sh Adds almost useless doc 11 months ago
python_const.c Preparing implementation & python API for IFS mutation 4 months ago
python_const.h Preparing implementation & python API for IFS mutation 4 months ago
python_if.c Preparing implementation & python API for IFS mutation 4 months ago
python_if.h Preparing implementation & python API for IFS mutation 4 months ago
python_ifs.c Preparing implementation & python API for IFS mutation 4 months ago
python_ifs.h Preparing implementation & python API for IFS mutation 4 months ago
python_mutation.c Preparing implementation & python API for IFS mutation 4 months ago
python_mutation.h Preparing implementation & python API for IFS mutation 4 months ago
python_pyrpn.c Preparing implementation & python API for IFS mutation 4 months ago
python_pyrpn.h Preparing implementation & python API for IFS mutation 4 months ago
python_rpnexpr.c Preparing implementation & python API for IFS mutation 4 months ago
python_rpnexpr.h Preparing implementation & python API for IFS mutation 4 months ago
python_rpntoken.c Implement RPNIterExpr.shape() method + test + todo done 8 months ago
python_rpntoken.h Comment & doxygen documentation enhancement 9 months ago
rpn_if.c First usable IFS implementation 7 months ago
rpn_if.h First usable IFS implementation 7 months ago
rpn_if_default.c Implemented RPNIterExpr pickle/unpickle methods 7 months ago
rpn_if_default.h Implemented RPNIterExpr pickle/unpickle methods 7 months ago
rpn_if_mutate.c Preparing implementation & python API for IFS mutation 4 months ago
rpn_if_mutate.h Preparing implementation & python API for IFS mutation 4 months ago
rpn_ifs.c First usable IFS implementation 7 months ago
rpn_ifs.h Preparing implementation & python API for IFS mutation 4 months ago
rpn_ifs_mutate.c Preparing implementation & python API for IFS mutation 4 months ago
rpn_ifs_mutate.h Preparing implementation & python API for IFS mutation 4 months ago
rpn_jit.c Implementing serialization in rpn_jit and use it in python_rpnexpr get/setstate 8 months ago
rpn_jit.h Implementing serialization in rpn_jit and use it in python_rpnexpr get/setstate 8 months ago
rpn_lib.asm Bugfix rpn_lib.asm 9 months ago
rpn_lib.h Comment & doxygen documentation enhancement 9 months ago
rpn_mutate.c Preparing implementation & python API for IFS mutation 4 months ago
rpn_mutate.h Preparing implementation & python API for IFS mutation 4 months ago
rpn_parse.c Implementing serialization in rpn_jit and use it in python_rpnexpr get/setstate 8 months ago
rpn_parse.h Implementing serialization in rpn_jit and use it in python_rpnexpr get/setstate 8 months ago
send_live.example Adds almost useless doc 11 months ago

README

rpnifs fast IFS using RPN notation :
====================================

Provides :
----------
- C library for parameterized RPN expression JIT compilation and evaluation
- C library for handling IFS (composed of JIT RPN expressions)
- C library for RPN expression random mutation
- Python bindings : pyrpn Python module (pyrpn.so)

More details on Python module by running :
make && python3 -c "import pyrpn; help(pyrpn)"

More details on C API see Doxygen documentation.

Dependencies :
--------------
- gcc
- nasm
- ld
- python3
- python3 headers

Documentation :
- doxygen
- git

Compilation :
-------------
make

Doxygen documentation :
-----------------------
make doc
www-browser doc/html/index.html

Running self tests and benchmark :
----------------------------------
make checks

Debugging :
-----------
make clean
DEBUG=1 make
DEBUG=1 make check