add javadoc

This commit is contained in:
2019-12-27 00:50:59 +01:00
parent b2c3854b3a
commit 64355e0b93
25 changed files with 157 additions and 23 deletions
+4
View File
@@ -14,6 +14,10 @@ import java.util.List;
import java.util.Set;
import java.util.concurrent.CopyOnWriteArrayList;
/**
*
* @param <A> discrete action type for a specific environment
*/
@Getter
public abstract class Learning<A extends Enum>{
protected Policy<A> policy;
+4
View File
@@ -1,5 +1,9 @@
package core.algo;
/**
* Instead of reflections this enum is used to determine
* which RL-algorithm should be used.
*/
public enum Method {
MC_ONPOLICY_EGREEDY, TD_ONPOLICY
}