algorithms-for-computing-li.../src/main/java/presenter/algorithms/Algorithm.java

16 lines
277 B
Java
Raw Normal View History

package presenter.algorithms;
2017-05-28 12:00:01 +00:00
/**
* 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
void run();
void getResult();
2017-05-28 12:00:01 +00:00
}