package am.aua.search; public interface Frontier { void add(Node node); Node remove(); void clear(); boolean isEmpty(); int stretchFactor(); }