Free cookie consent management tool by TermsFeed Policy Generator

Changeset 12004 for trunk


Ignore:
Timestamp:
02/13/15 14:46:45 (9 years ago)
Author:
abeham
Message:

#2174: Added non-discoverable attribute to the outdated problems

Location:
trunk/sources
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.ExternalEvaluation/3.3/ExternalEvaluationProblem.cs

    r11961 r12004  
    3333using HeuristicLab.Parameters;
    3434using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     35using HeuristicLab.PluginInfrastructure;
    3536
    3637namespace HeuristicLab.Problems.ExternalEvaluation {
    3738  [Item("External Evaluation Problem", "A problem that is evaluated in a different process.")]
    3839  [StorableClass]
     40  [NonDiscoverableType]
    3941  public sealed class ExternalEvaluationProblem : ParameterizedNamedItem, ISingleObjectiveHeuristicOptimizationProblem, IStorableContent {
    4042    public string Filename { get; set; }
  • trunk/sources/HeuristicLab.Problems.OneMax/3.3/OneMaxProblem.cs

    r11994 r12004  
    3535  [Item("OneMax Problem", "Represents a OneMax Problem.")]
    3636  [StorableClass]
     37  [NonDiscoverableType]
    3738  public sealed class OneMaxProblem : SingleObjectiveHeuristicOptimizationProblem<IOneMaxEvaluator, IBinaryVectorCreator>, IStorableContent {
    3839    public string Filename { get; set; }
Note: See TracChangeset for help on using the changeset viewer.