gitextract_86suw3hs/ ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ └── continuous_integration.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE ├── README.md ├── savage/ │ ├── Cargo.toml │ ├── help/ │ │ ├── footer.md │ │ └── header.md │ └── src/ │ ├── command.rs │ ├── help.rs │ ├── input.rs │ └── main.rs ├── savage_core/ │ ├── Cargo.toml │ └── src/ │ ├── evaluate.rs │ ├── expression.rs │ ├── functions/ │ │ ├── combinatorics.rs │ │ ├── linear_algebra.rs │ │ ├── logic.rs │ │ ├── mod.rs │ │ └── number_theory.rs │ ├── helpers.rs │ ├── lib.rs │ ├── parse.rs │ ├── print.rs │ └── simplify.rs └── savage_macros/ ├── Cargo.toml └── src/ └── lib.rs