Changeset 2194 for branches/HeuristicLab.Modeling Database Backend/sources/HeuristicLab.Modeling.Database
- Timestamp:
- 07/28/09 15:29:10 (15 years ago)
- Location:
- branches/HeuristicLab.Modeling Database Backend/sources/HeuristicLab.Modeling.Database/3.2
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Modeling Database Backend/sources/HeuristicLab.Modeling.Database/3.2/HeuristicLab.Modeling.Database-3.2.csproj
r2191 r2194 97 97 </ItemGroup> 98 98 <ItemGroup> 99 <ProjectReference Include="..\..\HeuristicLab.Modeling\3.2\HeuristicLab.Modeling-3.2.csproj"> 100 <Project>{80F7FADA-549D-4151-8856-79B620A50DBA}</Project> 101 <Name>HeuristicLab.Modeling-3.2</Name> 102 </ProjectReference> 99 103 <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj"> 100 104 <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project> -
branches/HeuristicLab.Modeling Database Backend/sources/HeuristicLab.Modeling.Database/3.2/IInputVariable.cs
r2188 r2194 28 28 public interface IInputVariable { 29 29 IModel Model { get; } 30 IVariable Variable { get; } 30 IVariable Variable { get; } 31 31 } 32 32 } -
branches/HeuristicLab.Modeling Database Backend/sources/HeuristicLab.Modeling.Database/3.2/IModel.cs
r2188 r2194 30 30 IAlgorithm Algorithm { get; } 31 31 byte[] Data { get; } 32 int TrainingS tart { get; }33 int Training End { get; }34 int ValidationS tart { get; }35 int Validation End { get; }36 int TestS tart { get; }37 int Test End { get; }32 int TrainingSamplesStart { get; } 33 int TrainingSamplesEnd { get; } 34 int ValidationSamplesStart { get; } 35 int ValidationSamplesEnd { get; } 36 int TestSamplesStart { get; } 37 int TestSamplesEnd { get; } 38 38 } 39 39 } -
branches/HeuristicLab.Modeling Database Backend/sources/HeuristicLab.Modeling.Database/3.2/IModelingDatabase.cs
r2188 r2194 27 27 namespace HeuristicLab.Modeling.Database { 28 28 public interface IModelingDatabase { 29 void Persist( IAlgorithm algorithm);29 void Persist(HeuristicLab.Modeling.IAlgorithm algorithm); 30 30 IEnumerable<IModel> GetAllModels(); 31 31 IEnumerable<IResult> GetAllResults();
Note: See TracChangeset
for help on using the changeset viewer.