Skip to content

encalmo/graphs

Repository files navigation

GitHub Maven Central Version Scaladoc

graphs

Scala library for processing graphs.

Table of contents

Dependencies

  • JVM >= 21
  • Scala >= 3.5.2

Usage

Use with SBT

libraryDependencies += "org.encalmo" % "graphs_3" % "0.9.3"

or with SCALA-CLI

//> using dep org.encalmo::graphs:0.9.3

Project content

├── .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