reform 0.1.0

A symbolic manipulation toolkit which aims to handle expressions with billions of terms, taking up terabytes of diskspace.
Documentation
=================
Installation
=================

reFORM is written in Rust, so one first needs to install the Rust compiler.
The easiest way is to install Rustup, using:

.. code-block:: bash

    curl https://sh.rustup.rs -sSf | sh

For more information, see the official `Rust installation guide <https://www.rust-lang.org/en-US/install.html>`_.

The latest stable version can then be installed using:

.. code-block:: bash

    cargo install reform

The reFORM source code can be obtained from Bitbucket:

.. code-block:: bash

    git clone git@bitbucket.org:benruyl/reform.git

To compile in release mode, use:

.. code-block:: bash

    cargo build --release

You will find the binary ``reform`` in ``target/release``.

To compile reFORM with API support, please see the :doc:`api` section.