All Downloads are FREE. Search and download functionalities are using the official Maven repository.

izumi.fundamentals.graphs.GraphProperty.scala Maven / Gradle / Ivy

package izumi.fundamentals.graphs

sealed trait GraphProperty[N, +M] { this: AbstractGraph[N, M] => }

object GraphProperty {

  trait DirectedGraph[N, +M] extends GraphProperty[N, M] { this: AbstractGraph[N, M] => }

  trait DirectedAcyclicGraph[N, +M] extends DirectedGraph[N, M] { this: AbstractGraph[N, M] => }

//  trait ConnectedGraph[N, +M] extends GraphProperty[N, M] {
//    this: AbstractGraph[N, M] =>
//  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy