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 d86a465339 Adds coordinate convertion methods to python lib + tests 1 year ago
python_rpnifs Ifs5 implementation enhancement 2 years ago
tests Adds coordinate convertion methods to python lib + tests 1 year ago
.gitignore Add gcov test coverage suppport 1 year ago
Doxyfile.mk Comment & doxygen documentation enhancement 1 year ago
LICENCE.txt Initial commit 5 years ago
Makefile Add gcov test coverage suppport 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 Comment & doxygen documentation enhancement 1 year ago
deploy.sh Adds almost useless doc 2 years ago
python_const.c Comment & doxygen documentation enhancement 1 year ago
python_const.h Comment & doxygen documentation enhancement 1 year ago
python_if.c Adds coordinate convertion methods to python lib + tests 1 year ago
python_if.h Adds coordinate convertion methods to python lib + tests 1 year ago
python_pyrpn.c Comment & doxygen documentation enhancement 1 year ago
python_pyrpn.h Comment & doxygen documentation enhancement 1 year ago
python_rpnexpr.c Comment & doxygen documentation enhancement 1 year ago
python_rpnexpr.h Comment & doxygen documentation enhancement 1 year ago
python_rpntoken.c Comment & doxygen documentation enhancement 1 year ago
python_rpntoken.h Comment & doxygen documentation enhancement 1 year ago
rpn_if.c Adds coordinate convertion methods to python lib + tests 1 year ago
rpn_if.h Adds coordinate convertion methods to python lib + tests 1 year ago
rpn_if_default.c Adds coordinate convertion methods to python lib + tests 1 year ago
rpn_if_default.h Comment & doxygen documentation enhancement 1 year ago
rpn_ifs.c IFS weight update implementation 5 years ago
rpn_ifs.h Comment & doxygen documentation enhancement 1 year ago
rpn_jit.c Adds coordinate convertion methods to python lib + tests 1 year ago
rpn_jit.h Comment & doxygen documentation enhancement 1 year ago
rpn_lib.asm Bugfix rpn_lib.asm 1 year ago
rpn_lib.h Comment & doxygen documentation enhancement 1 year ago
rpn_mutate.c Bugfix + tests for expression copy, len & mutations 1 year ago
rpn_mutate.h Comment & doxygen documentation enhancement 1 year ago
rpn_parse.c Implements expression's token classes for python 1 year ago
rpn_parse.h Comment & doxygen documentation enhancement 1 year ago
send_live.example Adds almost useless doc 2 years 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