├── .gitignore ├── LICENSE ├── README.md ├── pom.xml ├── project.clj └── src └── symbolic_algebra └── core.clj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sophia-Gold/symbolic-algebra/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sophia-Gold/symbolic-algebra/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sophia-Gold/symbolic-algebra/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sophia-Gold/symbolic-algebra/HEAD/pom.xml -------------------------------------------------------------------------------- /project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sophia-Gold/symbolic-algebra/HEAD/project.clj -------------------------------------------------------------------------------- /src/symbolic_algebra/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sophia-Gold/symbolic-algebra/HEAD/src/symbolic_algebra/core.clj --------------------------------------------------------------------------------