Last change
on this file since 345 was 1, checked in by Wouter Pasman, 6 years ago |
Initial import : Genius 9.0.0
|
File size:
448 bytes
|
Line | |
---|
1 | package agents.anac.y2014.E2Agent.myUtility;
|
---|
2 |
|
---|
3 | public class Parameters {
|
---|
4 | public double utility;
|
---|
5 | public double time;
|
---|
6 | public double alpha;
|
---|
7 | public double beta;
|
---|
8 | public double g;
|
---|
9 |
|
---|
10 | public Parameters(double u, double t, double a, double b, double gValue) {
|
---|
11 | utility = u;
|
---|
12 | time = t;
|
---|
13 | alpha = a;
|
---|
14 | beta = b;
|
---|
15 | g = gValue;
|
---|
16 | }
|
---|
17 |
|
---|
18 | public String toString() {
|
---|
19 | return "U: " + utility + " T: " + time + " a: " + alpha + " b: " + beta + " g: " + g;
|
---|
20 | }
|
---|
21 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.