This class is a junit test class to test the class LearnAlgSimpler
For this junit test to work correctly some changes have to be made in LearnAlgSimpler.java
These are:
-comment out "extends LearnAlgorithm"
-comment out the constructor
-make the applyML method take in a Properties and a PolicyDatabase,
and make the method public, like this:
public Properties applyML(Properties prop, PolicyDatabase pd)
-change the two first lines in applyML to:
Properties weights = prop;
pdb = pd;