package api; /** * API Class for the CpsAlgorithm. * * @author Gruppe14 */ public interface CpsAlgorithm { /** * This Method will be called in each Iteration. */ public void runAlgorithm(); }