BE_graphes/src/main/org/insa/graph/io/PathReader.java
2018-02-24 15:14:37 +01:00

20 lines
384 B
Java

package org.insa.graph.io;
import java.io.IOException;
import org.insa.graph.Graph;
import org.insa.graph.Path;
public interface PathReader {
/**
* Read a path of the given graph and returns it.
*
* @param graph Graph of the path.
*
* @return A new path.
* @throws Exception
*/
public Path readPath(Graph graph) throws IOException;
}