Changeset 14029 for branches/crossvalidation-2434/HeuristicLab.Operators
- Timestamp:
- 07/08/16 14:40:02 (8 years ago)
- Location:
- branches/crossvalidation-2434
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/crossvalidation-2434
- Property svn:mergeinfo changed
-
branches/crossvalidation-2434/HeuristicLab.Operators/3.3/InstrumentedOperator.cs
r12012 r14029 61 61 Parameters.Add(new FixedValueParameter<OperatorList>(AfterExecutionOperatorsParameterName, "Actions that are executed after the execution of the operator", new OperatorList())); 62 62 BeforeExecutionOperatorsParameter.Hidden = true; 63 BeforeExecutionOperatorsParameter.GetsCollected = false; 63 64 AfterExecutionOperatorsParameter.Hidden = true; 65 AfterExecutionOperatorsParameter.GetsCollected = false; 64 66 } 65 67 … … 77 79 } 78 80 #endregion 81 } 82 83 protected override IEnumerable<KeyValuePair<string, IItem>> GetCollectedValues(IValueParameter param) { 84 foreach (var b in base.GetCollectedValues(param)) yield return b; 85 if (param != BeforeExecutionOperatorsParameter && param != AfterExecutionOperatorsParameter) yield break; 86 var operatorList = param.Value as OperatorList; 87 if (operatorList != null) { 88 var counter = 0; 89 foreach (var op in operatorList) { 90 yield return new KeyValuePair<string, IItem>(counter.ToString(), op); 91 var children = new Dictionary<string, IItem>(); 92 op.CollectParameterValues(children); 93 foreach (var c in children) yield return new KeyValuePair<string, IItem>(counter + "." + c.Key, c.Value); 94 counter++; 95 } 96 } 79 97 } 80 98 -
branches/crossvalidation-2434/HeuristicLab.Operators/3.3/Plugin.cs.frame
r12753 r14029 26 26 /// Plugin class for HeuristicLab.Operators plugin. 27 27 /// </summary> 28 [Plugin("HeuristicLab.Operators", "3.3.1 2.$WCREV$")]28 [Plugin("HeuristicLab.Operators", "3.3.13.$WCREV$")] 29 29 [PluginFile("HeuristicLab.Operators-3.3.dll", PluginFileType.Assembly)] 30 30 [PluginDependency("HeuristicLab.Collections", "3.3")] -
branches/crossvalidation-2434/HeuristicLab.Operators/3.3/Properties/AssemblyInfo.cs.frame
r12753 r14029 54 54 // by using the '*' as shown below: 55 55 [assembly: AssemblyVersion("3.3.0.0")] 56 [assembly: AssemblyFileVersion("3.3.1 2.$WCREV$")]56 [assembly: AssemblyFileVersion("3.3.13.$WCREV$")]
Note: See TracChangeset
for help on using the changeset viewer.