source: src/main/java/agents/ai2014/group12/UtilityOracle.java@ 61

Last change on this file since 61 was 1, checked in by Wouter Pasman, 6 years ago

Initial import : Genius 9.0.0

File size: 249 bytes
RevLine 
[1]1package agents.ai2014.group12;
2
3public class UtilityOracle {
4 private double decrease;
5
6 public UtilityOracle(double decrease){
7 this.decrease = decrease;
8 }
9
10 public double getAcceptingValue(int round){
11 return (0.90 - (round * decrease));
12 }
13}
Note: See TracBrowser for help on using the repository browser.