- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Problems.Programmable/3.3/ProblemDefinitionScript.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 26 26 using HeuristicLab.Core; 27 27 using HeuristicLab.Optimization; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 using HeuristicLab.Scripting; 30 30 31 31 namespace HeuristicLab.Problems.Programmable { 32 32 [Item("ProblemDefinitionScript", "Script that defines the parameter vector and evaluates the solution for a programmable problem.")] 33 [Storable Class]33 [StorableType("5573B778-C60C-44BF-98FB-A8E189818C00")] 34 34 public abstract class ProblemDefinitionScript : Script, IProblemDefinition { 35 35 protected bool SuppressEvents { get; set; } … … 45 45 46 46 [StorableConstructor] 47 protected ProblemDefinitionScript( bool deserializing) : base(deserializing) { }47 protected ProblemDefinitionScript(StorableConstructorFlag _) : base(_) { } 48 48 protected ProblemDefinitionScript(ProblemDefinitionScript original, Cloner cloner) 49 49 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.