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 43457d08a5 Adds almost useless doc 1 year ago
python_rpnifs Ifs5 implementation enhancement 2 years ago
tests Typo fix 2 years ago
Doxyfile.mk Initial commit 5 years ago
LICENCE.txt Initial commit 5 years ago
Makefile Small enhancement in rpn_if* 1 year ago
README Initial commit 5 years ago
VERSION Initial commit 5 years ago
check_deps.sh Initial commit 5 years ago
config.h Initial commit 5 years ago
deploy.sh Adds almost useless doc 1 year ago
python_const.c Debug + implements IterExpr in python module (rpn_if objects) 4 years ago
python_const.h Debug + implements IterExpr in python module (rpn_if objects) 4 years ago
python_if.c Strange commit 3 years ago
python_if.h Deleted old constants tests for python modules 4 years ago
python_pyrpn.c Debug + implements IterExpr in python module (rpn_if objects) 4 years ago
python_pyrpn.h Debug + implements IterExpr in python module (rpn_if objects) 4 years ago
python_rpnexpr.c Enhancement in tests & set op token pointer to null before serialization 2 years ago
python_rpnexpr.h Enhancement in tests & set op token pointer to null before serialization 2 years ago
rpn_if.c Small enhancement in rpn_if* 1 year ago
rpn_if.h Small enhancement in rpn_if* 1 year ago
rpn_if_default.c Small enhancement in rpn_if* 1 year ago
rpn_if_default.h Small enhancement in rpn_if* 1 year ago
rpn_ifs.c IFS weight update implementation 4 years ago
rpn_ifs.h IFS weight update implementation 4 years ago
rpn_jit.c Fixing again the same bug on pickling/unpickling 3 years ago
rpn_jit.h Updated Iterated function API 4 years ago
rpn_lib.asm Bugfix in rpn_lib.asm 4 years ago
rpn_lib.h typedef unsigned long int rpn_value_t 5 years ago
rpn_mutation.c Initial commit 5 years ago
rpn_mutation.h Initial commit 5 years ago
rpn_parse.c Bugfixing previous bugfix in rpn_jit 3 years ago
rpn_parse.h Initial commit 5 years ago
send_live.example Adds almost useless doc 1 year 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