Free cookie consent management tool by TermsFeed Policy Generator

Changeset 4545


Ignore:
Timestamp:
10/01/10 19:35:06 (14 years ago)
Author:
gkronber
Message:

Fixed warnings. #915

Location:
trunk/sources
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Encodings.PermutationEncoding/3.3/Crossovers/PartiallyMatchedCrossover.cs

    r4477 r4545  
    2727  /// <summary>
    2828  /// An operator which performs the partially matched crossover on two permutations.
    29   /// </summar>
     29  /// </summary>
    3030  /// <remarks>
    3131  /// It is implemented as described in Fogel, D.B. 1988. An Evolutionary Approach to the Traveling Salesman Problem. Biological Cybernetics, 60, pp. 139-144, Springer-Verlag.
     
    8989
    9090    /// <summary>
    91     /// Checks number of parents and calls <see cref="Apply(Apply(IRandom, Permutation, Permutation)"/>.
     91    /// Checks number of parents and calls <see cref="Apply(IRandom, Permutation, Permutation)"/>.
    9292    /// </summary>
    9393    /// <exception cref="InvalidOperationException">Thrown if there are not exactly two permutations in <paramref name="parents"/>.</exception>
  • trunk/sources/HeuristicLab.Encodings.RealVectorEncoding/3.3/StrategyParameters/StdDevStrategyVectorManipulator.cs

    r4068 r4545  
    7575    /// <param name="generalLearningRate">The general learning rate dampens the mutation over all dimensions.</param>
    7676    /// <param name="learningRate">The learning rate dampens the mutation in each dimension.</param>
     77    /// <param name="bounds">The minimal and maximal value for each component, bounds are cycled if the length of bounds is smaller than the length of vector</param>
    7778    public static void Apply(IRandom random, RealVector vector, double generalLearningRate, double learningRate, DoubleMatrix bounds) {
    7879      NormalDistributedRandom N = new NormalDistributedRandom(random, 0.0, 1.0);
  • trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.LibSVM/1.6.3/LibSVM-1.6.3/Model.cs

    r4068 r4545  
    200200    /// Reads a Model from the provided stream.
    201201    /// </summary>
    202     /// <param name="stream">The stream from which to read the Model.</param>
     202    /// <param name="input">The stream from which to read the Model.</param>
    203203    /// <returns>the Model</returns>
    204204    public static Model Read(TextReader input) {
  • trunk/sources/HeuristicLab.Parameters.Views/3.3/HeuristicLab.Parameters.Views-3.3.csproj

    r4332 r4545  
    9494  </PropertyGroup>
    9595  <ItemGroup>
    96     <Reference Include="HeuristicLab.Data-3.3">
    97       <HintPath>..\..\HeuristicLab.Data\3.3\bin\Debug\HeuristicLab.Data-3.3.dll</HintPath>
    98     </Reference>
    99     <Reference Include="HeuristicLab.Data.Views-3.3">
    100       <HintPath>..\..\HeuristicLab.Data.Views\3.3\bin\Debug\HeuristicLab.Data.Views-3.3.dll</HintPath>
    101     </Reference>
    102     <Reference Include="HeuristicLab.Optimization-3.3">
    103       <HintPath>..\..\HeuristicLab.Optimization\3.3\bin\Debug\HeuristicLab.Optimization-3.3.dll</HintPath>
    104     </Reference>
    10596    <Reference Include="System" />
    10697    <Reference Include="System.Core">
     
    185176      <Name>HeuristicLab.Core-3.3</Name>
    186177    </ProjectReference>
     178    <ProjectReference Include="..\..\HeuristicLab.Data.Views\3.3\HeuristicLab.Data.Views-3.3.csproj">
     179      <Project>{72104A0B-90E7-42F3-9ABE-9BBBADD4B943}</Project>
     180      <Name>HeuristicLab.Data.Views-3.3</Name>
     181    </ProjectReference>
     182    <ProjectReference Include="..\..\HeuristicLab.Data\3.3\HeuristicLab.Data-3.3.csproj">
     183      <Project>{BBAB9DF5-5EF3-4BA8-ADE9-B36E82114937}</Project>
     184      <Name>HeuristicLab.Data-3.3</Name>
     185    </ProjectReference>
    187186    <ProjectReference Include="..\..\HeuristicLab.MainForm.WindowsForms\3.3\HeuristicLab.MainForm.WindowsForms-3.3.csproj">
    188187      <Project>{AB687BBE-1BFE-476B-906D-44237135431D}</Project>
     
    196195      <Project>{662B4B15-8F4D-4AE5-B3EB-D91C215F5AF2}</Project>
    197196      <Name>HeuristicLab.Optimization.Views-3.3</Name>
     197    </ProjectReference>
     198    <ProjectReference Include="..\..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj">
     199      <Project>{14AB8D24-25BC-400C-A846-4627AA945192}</Project>
     200      <Name>HeuristicLab.Optimization-3.3</Name>
    198201    </ProjectReference>
    199202    <ProjectReference Include="..\..\HeuristicLab.Parameters\3.3\HeuristicLab.Parameters-3.3.csproj">
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Regression/3.3/Symbolic/MultiObjectiveSymbolicRegressionProblem.cs

    r4166 r4545  
    112112    }
    113113
    114     protected virtual void OnEvaluatorChanged(EventArgs e) {
     114    protected override void OnEvaluatorChanged(EventArgs e) {
     115      base.OnEvaluatorChanged(e);
    115116      ParameterizeEvaluator();
    116117      RaiseEvaluatorChanged(e);
  • trunk/sources/HeuristicLab.Problems.DataAnalysis/3.3/Tests/Token.cs

    r4068 r4545  
    4040    }
    4141
     42    public override int GetHashCode() {
     43      return Symbol.GetHashCode() & StringValue.GetHashCode();
     44    }
     45
    4246    public static Token Parse(string strToken) {
    4347      strToken = strToken.Trim();
Note: See TracChangeset for help on using the changeset viewer.