package berack96.lib.graph.visit; import berack96.lib.graph.Edge; import java.util.Set; /** * @param */ public interface VisitMST extends VisitStrategy { /** * Return the latest calculated MST.
* https://en.wikipedia.org/wiki/Minimum_spanning_tree * * @return the latest MST * @throws NullPointerException if there is no last calculated MST */ Set> getMST(); }