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

ch.ninecode.cim.CIMIslandData.scala Maven / Gradle / Ivy

There is a newer version: 2.12-3.0.1-5.1.1
Show newest version
package ch.ninecode.cim

import org.apache.spark.graphx.VertexId

/**
 * Vertex data for island topological processing.
 *
 * @param node the minimum (hash code) of equivalent ConnectivityNode (a single topological node)
 * @param island_label a user friendly label for the island
 * @param island the minimum (hash code) of all connected ConnectivityNode (single topological island)
 */
case class CIMIslandData (
    node: VertexId,
    island_label: String,
    island: VertexId = Long.MaxValue) extends Serializable






© 2015 - 2024 Weber Informatics LLC | Privacy Policy