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

ai.libs.jaicore.search.syntheticgraphs.islandmodels.IIslandModel Maven / Gradle / Ivy

package ai.libs.jaicore.search.syntheticgraphs.islandmodels;

import java.math.BigInteger;

import org.api4.java.datastructure.graph.ILabeledPath;

import ai.libs.jaicore.search.syntheticgraphs.graphmodels.ITransparentTreeNode;


/**
 * Gives information about the number of islands and the id of the island to which a particular path leads.
 *
 * setRootNode or getIsland must be invoked before getNumberOfIslands is called
 *
 * @author fmohr
 *
 */
public interface IIslandModel {

	public void setRootNode(ITransparentTreeNode root);

	public BigInteger getIsland(ILabeledPath path);

	public BigInteger getSizeOfIsland(ILabeledPath path);

	public BigInteger getPositionOnIsland(ILabeledPath path);

	public BigInteger getNumberOfIslands();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy