org.psjava.algo.graph.bfs.SimpleStopper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of psjava Show documentation
Show all versions of psjava Show documentation
Problem Solving Library for Java
The newest version!
package org.psjava.algo.graph.bfs;
import org.psjava.util.VisitorStopper;
public class SimpleStopper implements VisitorStopper {
private boolean stopped;
@Override
public void stop() {
stopped = true;
}
public boolean isStopped() {
return stopped;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy