Skip to content

Commit

Permalink
Release 1
Browse files Browse the repository at this point in the history
  • Loading branch information
gstamatakis committed Jan 5, 2018
1 parent a1ebf36 commit 53e6b28
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 206 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#SELECTED FOR ANAC: BestAgent

Agent used in 2017 ANAC for Repeated Multilateral Negotiations in Arbitrary Domains.

Simply extend Core.ThrashAgent and implement the AgentAPI interface e.g. BestAgent.java .
Expand Down
Binary file added reports/reort.pdf
Binary file not shown.
Binary file added reports/report.docx
Binary file not shown.
158 changes: 0 additions & 158 deletions src/Bad/BadAgent.java

This file was deleted.

26 changes: 0 additions & 26 deletions src/Bad/BadOpponent.java

This file was deleted.

9 changes: 0 additions & 9 deletions src/BadAgentImpl.java

This file was deleted.

8 changes: 4 additions & 4 deletions src/BestAgent.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public ValFreqEnum getFrequencyValueSelection() {

@Override
public SimulatedAnnealingParams getSimulatedAnnealingParams() {
return new SimulatedAnnealingParams(1.0, 0.001, 0.999, 1);
return new SimulatedAnnealingParams(1.0, 0.001, 0.999, 2);
}

@Override
Expand Down Expand Up @@ -66,17 +66,17 @@ public boolean useHistory() {

@Override
public double getSoftConcessionThreshold() {
return 0.70;
return 0.80;
}

@Override
public double getConcessionThreshold() {
return 0.98;
return 0.95;
}

@Override
public int getMemoryDepth() {
return 3;
return 4;
}

@Override
Expand Down
8 changes: 4 additions & 4 deletions src/BestAgentWithoutMem.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public SimulatedAnnealingParams getSimulatedAnnealingParams() {

@Override
public double getBidUtilThreshold() {
return 0.96;
return 0.99;
}

@Override
Expand All @@ -66,17 +66,17 @@ public boolean useHistory() {

@Override
public double getSoftConcessionThreshold() {
return 0.9;
return 0.80;
}

@Override
public double getConcessionThreshold() {
return 0.99;
return 0.95;
}

@Override
public int getMemoryDepth() {
return 1;
return 4;
}

@Override
Expand Down
6 changes: 3 additions & 3 deletions src/TimeAgent.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public SimulatedAnnealingParams getSimulatedAnnealingParams() {

@Override
public double getBidUtilThreshold() {
return 0.99;
return 0.96;
}

@Override
Expand All @@ -44,7 +44,7 @@ public double getTimeScalingFactor() {

@Override
public double getCutoffValue() {
return 1e-6;
return 1e-5;
}

@Override
Expand All @@ -64,7 +64,7 @@ public double getConcessionThreshold() {

@Override
public double getSoftConcessionThreshold() {
return 0.9;
return 0.8;
}

@Override
Expand Down
4 changes: 2 additions & 2 deletions src/TimeAgentWithoutMem.java
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@ public double getConcessionThreshold() {

@Override
public double getSoftConcessionThreshold() {
return 0.9;
return 0.96;
}

@Override
public int getMemoryDepth() {
return 3;
return 4;
}

@Override
Expand Down

0 comments on commit 53e6b28

Please sign in to comment.