Skip to content

Commit

Permalink
using smallvec to store coefficients (coefficients upto power 3 are o…
Browse files Browse the repository at this point in the history
…n the stack)
  • Loading branch information
alfanick committed Dec 5, 2016
1 parent 94de1df commit a315108
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "xxcalc"
version = "0.2.0"
version = "0.2.1"
authors = ["Amadeusz Juskowiak <juskowiak@amadeusz.me>"]
keywords = ["calculator", "evaluator", "tokenizer", "lexer", "math"]
repository = "https://github.com/alfanick/xxcalc-rs.git"
Expand Down
1 change: 0 additions & 1 deletion README.md
Expand Up @@ -112,7 +112,6 @@ extern crate xxcalc;

use xxcalc::linear_solver::LinearSolver;
use xxcalc::calculator::Calculator;
use xxcalc::polynomial::Polynomial;

fn main() {
println!("The result is {}", LinearSolver.process("2+2").unwrap());
Expand Down

0 comments on commit a315108

Please sign in to comment.