Scala library for processing graphs.
- JVM >= 21
- Scala >= 3.5.2
Use with SBT
libraryDependencies += "org.encalmo" % "graphs_3" % "0.9.3"
or with SCALA-CLI
//> using dep org.encalmo::graphs:0.9.3
├── .github
│ └── workflows
│ ├── pages.yaml
│ ├── release.yaml
│ └── test.yaml
│
├── .gitignore
├── .scalafmt.conf
├── Graph.scala
├── Graph.test.scala
├── Heap.scala
├── Heap.test.scala
├── IntTraversable.scala
├── LICENSE
├── project.scala
├── QuickSort.scala
├── README.md
├── test-resources
│ ├── dijkstraData.txt
│ ├── graph1.txt
│ ├── HashInt.txt
│ ├── inversions.txt
│ ├── Median.txt
│ ├── quicksort.txt
│ └── SCC.txt
│
├── test.sh
├── Traversable.scala
└── Traversable.test.scala