Changeset 2843 for trunk/sources/HeuristicLab.GP/3.3/BaseClasses
- Timestamp:
- 02/19/10 18:49:17 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.GP/3.3/BaseClasses/FunctionLibraryInjectorBase.cs
r2729 r2843 33 33 34 34 public override string Description { 35 get { return @"Descr ption is missing."; }35 get { return @"Description is missing."; } 36 36 } 37 37 … … 55 55 56 56 public override IOperation Apply(IScope scope) { 57 scope.AddVariable(new HeuristicLab.Core.Variable(scope.TranslateName(FUNCTIONLIBRARY), functionLibrary));57 scope.AddVariable(new HeuristicLab.Core.Variable(scope.TranslateName(FUNCTIONLIBRARY), (FunctionLibrary)functionLibrary.Clone())); 58 58 return null; 59 59 }
Note: See TracChangeset
for help on using the changeset viewer.