hydra.topology

package hydra.topology

Members list

Type members

Classlikes

case class OrderingIsomorphism[A](encode: (Seq[A]) => Seq[A], decode: (Seq[A]) => Seq[A])

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
case class TarjanState(counter: Int, indices: Map[Vertex, Int], lowLinks: Map[Vertex, Int], stack: Seq[Vertex], onStack: Set[Vertex], sccs: Seq[Seq[Vertex]])

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Types

type Graph = Map[Vertex, Seq[Vertex]]
type Vertex = Int