All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.tommyettinger.gand.algorithms.Algorithm Maven / Gradle / Ivy

There is a newer version: 0.3.1
Show newest version
package com.github.tommyettinger.gand.algorithms;

public abstract class Algorithm {

    protected final int id;

    protected Algorithm(int id) {
        this.id = id;
    }

    public abstract boolean update();

    public abstract boolean isFinished();

    public void finish() {
        while (!update());
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy