Changeset 50
- Timestamp:
- 03/06/08 01:53:00 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Operators/OperatorExtractor.cs
r48 r50 36 36 public OperatorExtractor() 37 37 : base() { 38 AddVariableInfo(new VariableInfo("Operator", "Extracted operator", typeof(IOperator), VariableKind.In)); 38 39 } 39 40 40 41 public override IOperation Apply(IScope scope) { 41 IOperator op = scope.GetVariableValue<IOperator>(Name, true, true);42 IOperator op = GetVariableValue<IOperator>("Operator", scope, true, true); 42 43 return new AtomicOperation(op, scope); 43 44 }
Note: See TracChangeset
for help on using the changeset viewer.