Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/07/11 21:00:11 (12 years ago)
Author:
ascheibe
Message:

#1672

  • added missing invokes
  • removed collecting types of object graph for retrieval of plugins as this isn't needed for MetaOpt. I think the problem was that MetaOpt always stored types of all available algorithms and problems which caused the problem (#1527) with Hive.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Clients.Hive/3.3/HiveJobs/EngineHiveTask.cs

    r7142 r7152  
    2222using System;
    2323using System.Collections.Generic;
    24 using System.Linq;
    2524using HeuristicLab.Common;
    2625using HeuristicLab.Core;
     
    6160      jobData.Data = PersistenceUtil.Serialize(ItemTask, out usedTypes);
    6261
    63       // add type objects from object graph to work around ticket #1527
    64       var typeObjects = ItemTask.GetObjectGraphObjects().OfType<Type>();
    65       usedTypes = new List<Type>(usedTypes).Union(typeObjects);
    66 
    6762      PluginUtil.CollectDeclaringPlugins(plugins, usedTypes);
    68 
    6963      return jobData;
    7064    }
Note: See TracChangeset for help on using the changeset viewer.