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