Last change
on this file was 341, checked in by Katsuhide Fujita, 5 years ago |
Katsuhide Fujita added ANAC2018 agents.
|
File size:
870 bytes
|
Rev | Line | |
---|
[341] | 1 | package agents.anac.y2018.agreeableagent2018;
|
---|
| 2 |
|
---|
| 3 | /**
|
---|
| 4 | * Created by Sahar Mirzayi
|
---|
| 5 | * 5/23/2018
|
---|
| 6 | * University of Tehran
|
---|
| 7 | * Agent Lab.
|
---|
| 8 | * Sahar.Mirzayi @ gmail.com
|
---|
| 9 | */
|
---|
| 10 | public class Constants {
|
---|
| 11 | public static double timeToConcede = 0.2;
|
---|
| 12 |
|
---|
| 13 | public static int smallDomainUpperBound = 1000;
|
---|
| 14 | public static int midDomainUpperBound = 10000;
|
---|
| 15 |
|
---|
| 16 | public static double timeForUsingModelForSmallDomain = 0.2; //0.3 //0.2
|
---|
| 17 | public static double timeForUsingModelForMidDomain = 0.3; //0.1 //0.3
|
---|
| 18 | public static double timeForUsingModelForLargeDomain = 0.4; //0.5 //0.4
|
---|
| 19 |
|
---|
| 20 | public static double neigExplorationDisFactor = 0.05;
|
---|
| 21 | public static double concessionFactor = 0.1;
|
---|
| 22 | // k \in [0, 1]. For k = 0 the agent starts with a bid of maximum utility
|
---|
| 23 | public static double k = 0;
|
---|
| 24 |
|
---|
| 25 | public static double minimumUtility = 0.8;
|
---|
| 26 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.