/ketree

Allows for the creation of trees that represent symbolic expressions using Ketos.

Primary LanguageRustApache License 2.0Apache-2.0

Ketree

This is a small library that allows for the creation of trees that represent symbolic expressions using Ketos.

Building a Tree

Add the following to Cargo.toml:

[depenencies]
ketree = "0.5.2"

Then, to the crate root, add:

extern crate ketree;

You will then need to add Ketos to your project and write a struct that implements ModuleLoader. This struct can then be passed to an instance of TreeBuilder to create a tree. Check tests for an example.