CpsAlgorithm.java 289 B

12345678910111213141516
  1. package api;
  2. import ui.controller.Control;
  3. import ui.model.Model;
  4. /**
  5. * API Class for the CpsAlgorithm.
  6. *
  7. * @author Gruppe14
  8. */
  9. public interface CpsAlgorithm {
  10. /**
  11. * This Method will be called in each Iteration.
  12. */
  13. public void runAlgorithm(Model model, Control controller);
  14. }