Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 906 Bytes

README.md

File metadata and controls

28 lines (20 loc) · 906 Bytes

LODA Python

This Python package contains an implementation of the LODA Language: an assembly language and computational model for finding integer sequence programs.

This Python package allows you to read and write LODA programs, to evaluate them to integer sequences, to search for matches in the OEIS database, and to use machine learning tools from Tensorflow to find new integer sequence programs.

Getting Started

You need Python 3.7 or higher. To install the dependencies for LODA, run these commands:

python3 -m venv env
source env/bin/activate
pip install -r requirements.txt

To execute the tests, run the following command:

nose2 tests -v

Check out sample.py and the documentation to find out how to use the LODA Python package.