Changeset 11851 for branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Algorithms.Bandits
- Timestamp:
- 02/01/15 20:30:44 (10 years ago)
- Location:
- branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Algorithms.Bandits
- Files:
-
- 2 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 -
branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Algorithms.Bandits/HeuristicLab.Algorithms.Bandits.csproj
r11850 r11851 31 31 </PropertyGroup> 32 32 <ItemGroup> 33 <Reference Include="ALGLIB-3.7.0">34 <HintPath>..\..\..\trunk\sources\bin\ALGLIB-3.7.0.dll</HintPath>35 </Reference>36 33 <Reference Include="System" /> 37 34 <Reference Include="System.Core" /> … … 69 66 <Name>HeuristicLab.Distributions</Name> 70 67 </ProjectReference> 71 <ProjectReference Include="..\HeuristicLab.Problems.GrammaticalOptimization\HeuristicLab.Problems.GrammaticalOptimization.csproj">72 <Project>{cb9dccf6-667e-4a13-b82d-dbd6b45a045e}</Project>73 <Name>HeuristicLab.Problems.GrammaticalOptimization</Name>74 </ProjectReference>75 68 </ItemGroup> 76 69 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Note: See TracChangeset
for help on using the changeset viewer.