polenta 0.1.2

A toy language about polynomials over finite-fields
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![doc = include_str!("../README.md")]

mod errors;
pub mod fields;
mod instance;
mod interpreter;
mod parser;
mod utils;

pub use errors::{InterpreterError, PolentaError};
pub use fields::FieldType;
pub use instance::PolentaInstance;
pub use interpreter::Polenta;
pub use utils::PolentaUtilExt;