Changeset 11851 for branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Algorithms.Bandits/ActionInfos
- Timestamp:
- 02/01/15 20:30:44 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Algorithms.Bandits/ActionInfos/ModelPolicyActionInfo.cs
r11849 r11851 12 12 public double Value { 13 13 get { 14 return model.Sample ExpectedReward(new Random());14 return model.Sample(new Random()); 15 15 } 16 16 } … … 27 27 28 28 public double SampleExpectedReward(Random random) { 29 return model.Sample ExpectedReward(random);29 return model.Sample(random); 30 30 } 31 31
Note: See TracChangeset
for help on using the changeset viewer.