elementary-row-operation-verifier 0.0.1

A tool to verify the correctness of elementary row operations on matrices
Documentation
1
2
3
4
5
6
7
8
9
mod ast;
mod expr_parser;
mod parser;
mod token;

pub use ast::Expr;
pub use expr_parser::parse_expr;
pub use parser::parse_operation;
pub use token::{Operator, RowOperation};