Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/08/11 14:37:52 (13 years ago)
Author:
ascheibe
Message:

#1233 Review comments: renamed HiveEperiment to Job

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.HiveEngine/3.3/HiveEngine.cs

    r6721 r6723  
    7373    }
    7474
    75     // HiveExperiment can't be storable, so RefreshableHiveExperiment can't be stored. But as previous runs are only informative it does not matter (only execution time on hive will be wrong because of that -> Todo)
     75    // Job can't be storable, so RefreshableHiveExperiment can't be stored. But as previous runs are only informative it does not matter (only execution time on hive will be wrong because of that -> Todo)
    7676    private ItemCollection<RefreshableHiveExperiment> hiveExperiments = new ItemCollection<RefreshableHiveExperiment>();
    7777    public ItemCollection<RefreshableHiveExperiment> HiveExperiments {
     
    296296    private RefreshableHiveExperiment CreateHiveExperiment() {
    297297      lock (locker) {
    298         var hiveExperiment = new HiveExperiment();
     298        var hiveExperiment = new Job();
    299299        hiveExperiment.Name = "HiveEngine Run " + hiveExperiments.Count;
    300300        hiveExperiment.DateCreated = DateTime.Now;
Note: See TracChangeset for help on using the changeset viewer.