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

com.autonomousapps.graph.Edge.kt Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
package com.autonomousapps.graph

/**
 * An edge [from] → [to].
 */
internal data class Edge(
  val from: Node,
  val to: Node,
  val weight: Int = 1
) {
  fun nodeIds(): Pair = from.identifier to to.identifier
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy