source: src/main/java/agents/qoagent/FullUtility.java

Last change on this file 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: 415 bytes
Line 
1package agents.qoagent;
2
3import java.util.ArrayList;
4
5public class FullUtility
6{
7 public double dTimeEffect;
8 public double dStatusQuoValue;
9 public double dOptOutValue;
10 public ArrayList<UtilityDetails> lstUtilityDetails; // list of UtilityDetails
11
12 public FullUtility()
13 {
14 dTimeEffect = 0;
15 dStatusQuoValue = 0;
16 dOptOutValue = 0;
17 lstUtilityDetails = new ArrayList<UtilityDetails>();
18 }
19}
Note: See TracBrowser for help on using the repository browser.