Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/13/09 17:28:07 (15 years ago)
Author:
gkronber
Message:

Worked on #722 (IModel should provide a Predict() method to get predicted values for an input vector).
At the same time removed parameter PunishmentFactor from GP algorithms (this parameter is internal to TreeEvaluators now).

Location:
trunk/sources/HeuristicLab.Modeling.Database/3.2
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Modeling.Database/3.2/HeuristicLab.Modeling.Database-3.2.csproj

    r2223 r2285  
    9797  </ItemGroup>
    9898  <ItemGroup>
     99    <ProjectReference Include="..\..\HeuristicLab.Core\3.2\HeuristicLab.Core-3.2.csproj">
     100      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
     101      <Name>HeuristicLab.Core-3.2</Name>
     102    </ProjectReference>
    99103    <ProjectReference Include="..\..\HeuristicLab.Modeling\3.2\HeuristicLab.Modeling-3.2.csproj">
    100104      <Project>{80F7FADA-549D-4151-8856-79B620A50DBA}</Project>
  • trunk/sources/HeuristicLab.Modeling.Database/3.2/HeuristicLabModelingDatabasePlugin.cs

    r2223 r2285  
    2828  [ClassInfo(Name = "HeuristicLab.Modeling.Database-3.2")]
    2929  [PluginFile(Filename = "HeuristicLab.Modeling.Database-3.2.dll", Filetype = PluginFileType.Assembly)]
     30  [Dependency(Dependency = "HeuristicLab.Core-3.2")]
    3031  [Dependency(Dependency = "HeuristicLab.Modeling-3.2")]
    3132  public class HeuristicLabModelingDatabasePlugin : PluginBase {
  • trunk/sources/HeuristicLab.Modeling.Database/3.2/IModelingDatabase.cs

    r2278 r2285  
    2727namespace HeuristicLab.Modeling.Database {
    2828  public interface IModelingDatabase {
    29     void Persist(HeuristicLab.Modeling.IModel model, string algorithmName, string algorithmDescription);
     29    void Persist(HeuristicLab.Modeling.IAnalyzerModel model, string algorithmName, string algorithmDescription);
    3030    void Persist(HeuristicLab.Modeling.IAlgorithm algorithm);
    3131    IEnumerable<IModel> GetAllModels();
Note: See TracChangeset for help on using the changeset viewer.