Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/vowpal_wabbit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuong Hoang <lhoang@live.com>2014-11-08 09:44:46 +0300
committerLuong Hoang <lhoang@live.com>2014-11-08 09:44:46 +0300
commit600fe408fd8442a805a3540f20947015eb43efcf (patch)
tree55dcade8871313eaba60095948f5233c5c618152 /cs_test
parent67c052d6e49b3fbfac152c56c2b4654da3580924 (diff)
#85: added IScorer interface, renamed some methods
Diffstat (limited to 'cs_test')
-rw-r--r--cs_test/ExploreOnlySample.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/cs_test/ExploreOnlySample.cs b/cs_test/ExploreOnlySample.cs
index 0d1d7632..4d89a7ab 100644
--- a/cs_test/ExploreOnlySample.cs
+++ b/cs_test/ExploreOnlySample.cs
@@ -66,7 +66,7 @@ namespace cs_test
}
class MyPolicy : IPolicy<MyContext>
{
- public uint Choose_Action(MyContext context)
+ public uint ChooseAction(MyContext context)
{
return 5;
}