source: src/main/java/agents/qoagent2/UtilityValue.java@ 256

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

#41 ROLL BACK of rev.126 . So this version is equal to rev. 125

File size: 633 bytes
RevLine 
[127]1package agents.qoagent2;
2
3/*****************************************************************
4 * Class name: UtilityValue
5 * Goal: This class holds utility values: the value itself (saved in
6 * a string), the utility and the effect of time (saved in a double).
7 ****************************************************************/
8public class UtilityValue
9{
10 public String sValue;
11 public double dUtility;
12 public double dTimeEffect;
13
14 //the constructor inits the value to an empty string, and the
15 //utility and effect of time to 0.
16 public UtilityValue()
17 {
18 sValue = "";
19 dUtility = 0;
20 dTimeEffect = 0;
21 }
[1]22}
Note: See TracBrowser for help on using the repository browser.