org.jgrapht.alg.cycle.DirectedSimpleCycles Maven / Gradle / Ivy
/* ==========================================
* JGraphT : a free Java graph-theory library
* ==========================================
*
* Project Info: http://jgrapht.sourceforge.net/
* Project Creator: Barak Naveh (http://sourceforge.net/users/barak_naveh)
*
* (C) Copyright 2003-2008, by Barak Naveh and Contributors.
*
* This program and the accompanying materials are dual-licensed under
* either
*
* (a) the terms of the GNU Lesser General Public License version 2.1
* as published by the Free Software Foundation, or (at your option) any
* later version.
*
* or (per the licensee's choosing)
*
* (b) the terms of the Eclipse Public License v1.0 as published by
* the Eclipse Foundation.
*/
/* -------------------------
* DirectedSimpleCycles.java
* -------------------------
* (C) Copyright 2013, by Nikolay Ognyanov
*
* Original Author: Nikolay Ognyanov
* Contributor(s) :
*
* $Id$
*
* Changes
* -------
* 06-Sep-2013 : Initial revision (NO);
*/
package org.jgrapht.alg.cycle;
import java.util.*;
import org.jgrapht.*;
/**
* A common interface for classes implementing algorithms for enumeration of the
* simple cycles of a directed graph.
*
* @param the vertex type.
* @param the edge type.
*
* @author Nikolay Ognyanov
*/
public interface DirectedSimpleCycles
{
/**
* Returns the graph on which the simple cycle search algorithm is executed
* by this object.
*
* @return The graph.
*/
DirectedGraph getGraph();
/**
* Sets the graph on which the simple cycle search algorithm is executed by
* this object.
*
* @param graph the graph.
*
* @throws IllegalArgumentException if the argument is null
.
*/
void setGraph(DirectedGraph graph);
/**
* Finds the simple cycles of the graph.
* Note that the full algorithm is executed on every call since the graph
* may have changed between calls.
*
* @return The list of all simple cycles. Possibly empty but never
* null
.
*
* @throws IllegalArgumentException if the current graph is null.
*/
List> findSimpleCycles();
}
// End DirectedSimpleCycles.java