Changeset 9178
- Timestamp:
- 01/22/13 16:46:49 (12 years ago)
- Location:
- trunk/sources
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Core/3.3/HeuristicLab.Core-3.3.csproj
r9151 r9178 152 152 <Compile Include="Interfaces\IMultiOperator.cs" /> 153 153 <Compile Include="Interfaces\IFixedValueParameter.cs" /> 154 <Compile Include="Interfaces\IOperatorGraphOperator.cs" /> 154 155 <Compile Include="Interfaces\IStatefulItem.cs" /> 155 156 <Compile Include="OperatorExecutionException.cs" /> -
trunk/sources/HeuristicLab.Core/3.3/OperatorGraph.cs
r9075 r9178 263 263 visited.Add(current); 264 264 265 IOperatorGraphOperator operatorGraphOperator = current as IOperatorGraphOperator; 266 if (operatorGraphOperator != null) open.Push(operatorGraphOperator.OperatorGraph.InitialOperator); 267 265 268 foreach (var parameter in current.Parameters.OfType<IValueParameter>()) { 266 269 if (!typeof(IOperator).IsAssignableFrom(parameter.DataType)) continue; -
trunk/sources/HeuristicLab.Operators/3.3/AlgorithmOperator.cs
r7259 r9178 31 31 [Item("AlgorithmOperator", "An operator which represents an algorithm represented as an operator graph.")] 32 32 [StorableClass] 33 public abstract class AlgorithmOperator : SingleSuccessorOperator {33 public abstract class AlgorithmOperator : SingleSuccessorOperator, IOperatorGraphOperator { 34 34 public static new Image StaticItemImage { 35 35 get { return HeuristicLab.Common.Resources.VSImageLibrary.Module; }
Note: See TracChangeset
for help on using the changeset viewer.