gitextract_za06vbuz/ ├── .gitignore ├── .travis.yml ├── README.md ├── pom.xml ├── pom.xml.asc ├── project.clj └── src/ ├── main/ │ └── clojure/ │ └── numeric/ │ └── expresso/ │ ├── calculus.clj │ ├── construct.clj │ ├── constructing_functions.clj │ ├── core.clj │ ├── impl/ │ │ ├── matcher.clj │ │ ├── pimplementation.clj │ │ ├── polynomial.clj │ │ └── symbolic.clj │ ├── optimize.clj │ ├── parse.clj │ ├── properties.clj │ ├── protocols.clj │ ├── rules.clj │ ├── simplify.clj │ ├── solve.clj │ ├── types.clj │ └── utils.clj └── test/ ├── clojure/ │ └── numeric/ │ └── expresso/ │ ├── test_construct.clj │ ├── test_core.clj │ ├── test_optimize.clj │ ├── test_parse.clj │ ├── test_polynomial.clj │ ├── test_properties.clj │ ├── test_protocols.clj │ ├── test_rules.clj │ ├── test_simplify.clj │ ├── test_solve.clj │ ├── test_symbolic.clj │ ├── test_utils.clj │ └── test_various.clj └── java/ └── mikera/ └── expresso/ └── TestExpresso.java