Skip to content

Commit

Permalink
minor error in graph scaling
Browse files Browse the repository at this point in the history
  • Loading branch information
snorthman committed Jun 13, 2017
1 parent 0639d3e commit 9e7a8da
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/SharpNeatDomains/IPD/IPDDomain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ private void CreateArchiveGraph()
g.Y2AxisList.Add("Rank");
g.Y2AxisList[1].IsVisible = false;
g.Y2AxisList[1].Scale.Min = 0.0;
g.Y2AxisList[1].Scale.Max = _info.OpponentPool.Length;
g.Y2AxisList[1].Scale.Max = 1.0;

g.Y2Axis.IsVisible = true;
g.Y2Axis.Title.Text = "Wins";
Expand Down
4 changes: 2 additions & 2 deletions src/SharpNeatDomains/SharpNeatDomains.experiments.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<Description>
TBD.
</Description>
<EvaluationMode>Novelty</EvaluationMode>
<EvaluationMode>Score</EvaluationMode>
<!--
Score, (objective)
Wins, (objective)
Expand All @@ -26,7 +26,7 @@
<PastInputReach>5</PastInputReach>
<EvaluationLimit>100000</EvaluationLimit>
<StaticOpponents>
GTFT,TF2T,Pavlov,ALLR,ZDGTFT_2,ZD_2,Grudger,HARD_JOSS,Majority,HardTFT,HardTF2T,Prober,Prober2,Prober3,HardProber,NaiveProber
GTFT,ZDGTFT_2,ZD_2
</StaticOpponents>
<!--
AllC,
Expand Down

0 comments on commit 9e7a8da

Please sign in to comment.