source: src/main/java/genius/core/tournament/VariablesAndValues/AgentParamValue.java

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

Initial import : Genius 9.0.0

File size: 601 bytes
Line 
1package genius.core.tournament.VariablesAndValues;
2
3/**
4 * This class contains a possible parameter value for a nego session
5 * A parameter value is a value that will appear as a start-up argument for the agent,
6 * for instance the random-seed value, a tau value or debug options
7 * @author wouter
8 *
9 */
10public class AgentParamValue extends TournamentValue
11{
12 private static final long serialVersionUID = 1391633175859262227L;
13 Double value;
14
15 public AgentParamValue(Double v) {
16 value=v;
17 }
18
19 public Double getValue() { return value; }
20
21 public String toString() { return value.toString(); }
22
23}
Note: See TracBrowser for help on using the repository browser.