16 lines
347 B
Java
16 lines
347 B
Java
package org.insa.algo.strongconnectivity ;
|
|
|
|
import org.insa.algo.AbstractAlgorithm;
|
|
|
|
public abstract class StronglyConnectedComponentsAlgorithm extends AbstractAlgorithm {
|
|
|
|
/**
|
|
*
|
|
* @param instance
|
|
* @param logOutput
|
|
*/
|
|
public StronglyConnectedComponentsAlgorithm(StronglyConnectedComponentsInstance instance) {
|
|
super(instance);
|
|
}
|
|
|
|
}
|