예제 #1
0
 /**
  * Returns if the classifier is experienced, and accurate enough to be in the reduction set.
  * Otherwise, the classifier will not be included in the reduction
  *
  * @param maxReward is the maximum reward of the environment.
  * @return a boolean indicating if the classifier can be in the reduction set.
  */
 public boolean couldReduce(double maxReward) {
   return parameters.couldReduce(maxReward);
 }