├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── project └── build.properties └── src ├── main └── scala │ └── alga │ └── Graph.scala └── test └── scala └── Test.scala /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algebraic-graphs/scala/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algebraic-graphs/scala/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algebraic-graphs/scala/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algebraic-graphs/scala/HEAD/README.md -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.0.3 2 | -------------------------------------------------------------------------------- /src/main/scala/alga/Graph.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algebraic-graphs/scala/HEAD/src/main/scala/alga/Graph.scala -------------------------------------------------------------------------------- /src/test/scala/Test.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algebraic-graphs/scala/HEAD/src/test/scala/Test.scala --------------------------------------------------------------------------------