NetworkEdge

@Serializable
data class NetworkEdge(val from: String, val to: String, val weight: Double = 1.0)(source)

A weighted edge between two NetworkNodes.

Constructors

Link copied to clipboard
constructor(from: String, to: String, weight: Double = 1.0)

Properties

Link copied to clipboard
Link copied to clipboard
val to: String
Link copied to clipboard