algorithms-for-computing-li.../src/main/java/Presenter/Algorithms/Algorithm.java

15 lines
272 B
Java
Raw Normal View History

2017-05-28 12:00:01 +00:00
package Presenter.Algorithms;
/**
* Implementierung verschiedener Algorithmen zur Berechnung von Ausgleichsgeraden.
*
* @Author: Armin Wolf
* @Email: a_wolf28@uni-muenster.de
* @Date: 28.05.2017.
*/
2017-06-16 11:24:35 +00:00
public interface Algorithm {
2017-05-28 12:00:01 +00:00
2017-06-29 11:10:15 +00:00
void run();
void getResult();
2017-05-28 12:00:01 +00:00
}