Fast IFS using RPN notation
python
c
x86-64
nasm
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
Yann Weber 148afe7adc Enhancement in tests & set op token pointer to null before serialization 2 anos atrás
python_rpnifs Commenting++ 3 anos atrás
tests Enhancement in tests & set op token pointer to null before serialization 2 anos atrás
Doxyfile.mk Initial commit 5 anos atrás
LICENCE.txt Initial commit 5 anos atrás
Makefile Debug + implements IterExpr in python module (rpn_if objects) 4 anos atrás
README Initial commit 5 anos atrás
VERSION Initial commit 5 anos atrás
check_deps.sh Initial commit 5 anos atrás
config.h Initial commit 5 anos atrás
python_const.c Debug + implements IterExpr in python module (rpn_if objects) 4 anos atrás
python_const.h Debug + implements IterExpr in python module (rpn_if objects) 4 anos atrás
python_if.c Strange commit 3 anos atrás
python_if.h Deleted old constants tests for python modules 4 anos atrás
python_pyrpn.c Debug + implements IterExpr in python module (rpn_if objects) 4 anos atrás
python_pyrpn.h Debug + implements IterExpr in python module (rpn_if objects) 4 anos atrás
python_rpnexpr.c Enhancement in tests & set op token pointer to null before serialization 2 anos atrás
python_rpnexpr.h Enhancement in tests & set op token pointer to null before serialization 2 anos atrás
rpn_if.c Debug + implements IterExpr in python module (rpn_if objects) 4 anos atrás
rpn_if.h Debug + implements IterExpr in python module (rpn_if objects) 4 anos atrás
rpn_if_default.c Debug + implements IterExpr in python module (rpn_if objects) 4 anos atrás
rpn_if_default.h Debug + implements IterExpr in python module (rpn_if objects) 4 anos atrás
rpn_ifs.c IFS weight update implementation 4 anos atrás
rpn_ifs.h IFS weight update implementation 4 anos atrás
rpn_jit.c Fixing again the same bug on pickling/unpickling 3 anos atrás
rpn_jit.h Updated Iterated function API 4 anos atrás
rpn_lib.asm Bugfix in rpn_lib.asm 4 anos atrás
rpn_lib.h typedef unsigned long int rpn_value_t 5 anos atrás
rpn_mutation.c Initial commit 5 anos atrás
rpn_mutation.h Initial commit 5 anos atrás
rpn_parse.c Bugfixing previous bugfix in rpn_jit 3 anos atrás
rpn_parse.h Initial commit 5 anos atrás

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