CpsAlgorithm.java 203 B

123456789101112
  1. package api;
  2. /**
  3. * API Class for the CpsAlgorithm.
  4. *
  5. * @author Gruppe14
  6. */
  7. public interface CpsAlgorithm {
  8. /**
  9. * This Method will be called in each Iteration.
  10. */
  11. public void runAlgorithm();
  12. }