source:
src/main/java/agents/ai2014/group12/UtilityOracle.java@
126
Last change on this file since 126 was 1, checked in by , 6 years ago | |
---|---|
File size: 249 bytes |
Line | |
---|---|
1 | package agents.ai2014.group12; |
2 | |
3 | public 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.