Fast IFS using RPN notation
Find a file
2023-06-07 10:44:16 +02:00
python_rpnifs Ifs5 implementation enhancement 2022-06-18 23:45:50 +02:00
tests Typo fix 2022-07-05 20:08:25 +02:00
check_deps.sh Initial commit 2020-01-24 16:48:27 +01:00
config.h Initial commit 2020-01-24 16:48:27 +01:00
deploy.sh Adds almost useless doc 2023-05-25 17:04:40 +02:00
Doxyfile.mk Initial commit 2020-01-24 16:48:27 +01:00
LICENCE.txt Initial commit 2020-01-24 16:48:27 +01:00
Makefile Merge branch 'new_makefile' into python_rpnifs5 2023-05-25 18:20:38 +02:00
python_const.c Debug + implements IterExpr in python module (rpn_if objects) 2020-10-10 14:40:12 +02:00
python_const.h Debug + implements IterExpr in python module (rpn_if objects) 2020-10-10 14:40:12 +02:00
python_if.c Strange commit 2021-05-04 23:00:04 +02:00
python_if.h Deleted old constants tests for python modules 2020-10-10 14:42:31 +02:00
python_pyrpn.c Debug + implements IterExpr in python module (rpn_if objects) 2020-10-10 14:40:12 +02:00
python_pyrpn.h Debug + implements IterExpr in python module (rpn_if objects) 2020-10-10 14:40:12 +02:00
python_rpnexpr.c Add a class method to RPNExpr for random expr generation 2023-06-07 10:44:16 +02:00
python_rpnexpr.h Add a class method to RPNExpr for random expr generation 2023-06-07 10:44:16 +02:00
README Initial commit 2020-01-24 16:48:27 +01:00
rpn_if.c Small enhancement in rpn_if* 2023-05-25 17:00:53 +02:00
rpn_if.h Small enhancement in rpn_if* 2023-05-25 17:00:53 +02:00
rpn_if_default.c Merge branch 'new_makefile' into python_rpnifs5 2023-05-25 18:20:38 +02:00
rpn_if_default.h Small enhancement in rpn_if* 2023-05-25 17:00:53 +02:00
rpn_ifs.c IFS weight update implementation 2020-04-21 13:40:50 +02:00
rpn_ifs.h IFS weight update implementation 2020-04-21 13:40:50 +02:00
rpn_jit.c Better default buffer size in random expr generation 2023-05-25 18:13:01 +02:00
rpn_jit.h Updated Iterated function API 2020-03-30 14:49:31 +02:00
rpn_lib.asm Bugfix in rpn_lib.asm 2020-03-29 10:47:21 +02:00
rpn_lib.h typedef unsigned long int rpn_value_t 2020-01-25 06:43:59 +01:00
rpn_mutation.c Initial commit 2020-01-24 16:48:27 +01:00
rpn_mutation.h Initial commit 2020-01-24 16:48:27 +01:00
rpn_parse.c Merge branch 'new_makefile' into python_rpnifs5 2023-05-25 18:20:38 +02:00
rpn_parse.h Initial commit 2020-01-24 16:48:27 +01:00
send_live.example Adds almost useless doc 2023-05-25 17:04:40 +02:00
VERSION Initial commit 2020-01-24 16:48:27 +01:00

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