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 e64bad9cf3 Bugfix + adds python_if.* files пре 4 година
tests Modified benchmark script пре 4 година
Doxyfile.mk Initial commit пре 4 година
LICENCE.txt Initial commit пре 4 година
Makefile Updated comment + starts ifs headers пре 4 година
README Initial commit пре 4 година
VERSION Initial commit пре 4 година
check_deps.sh Initial commit пре 4 година
config.h Initial commit пре 4 година
python_if.c Bugfix + adds python_if.* files пре 4 година
python_if.h Bugfix + adds python_if.* files пре 4 година
python_pyrpn.c Initial commit пре 4 година
python_pyrpn.h Initial commit пре 4 година
python_rpnexpr.c Implementing pickle interface for RPNExpr пре 4 година
python_rpnexpr.h Updated comment + starts ifs headers пре 4 година
rpn_if.c Updated Iterated function API пре 4 година
rpn_if.h Updated Iterated function API пре 4 година
rpn_if_default.c Adds ifs function implementations (begining) пре 4 година
rpn_if_default.h Updated comment + starts ifs headers пре 4 година
rpn_ifs.c Bugfix + adds python_if.* files пре 4 година
rpn_ifs.h Bugfix + adds python_if.* files пре 4 година
rpn_jit.c Updated Iterated function API пре 4 година
rpn_jit.h Updated Iterated function API пре 4 година
rpn_lib.asm Bugfix in rpn_lib.asm пре 4 година
rpn_lib.h typedef unsigned long int rpn_value_t пре 4 година
rpn_mutation.c Initial commit пре 4 година
rpn_mutation.h Initial commit пре 4 година
rpn_parse.c Add end map when untokenizing + debug message + comment пре 4 година
rpn_parse.h Initial commit пре 4 година
test.c Implementing pickle interface for RPNExpr пре 4 година

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