- Timestamp:
- 07/23/17 11:17:18 (7 years ago)
- Location:
- branches/Async
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/Async
- Property svn:ignore
-
old new 24 24 protoc.exe 25 25 obj 26 .vs
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/Async/HeuristicLab.Core
- Property svn:mergeinfo changed
/branches/symbreg-factors-2650/HeuristicLab.Core (added) merged: 14497,14499,14591-14592,14751 /trunk/sources/HeuristicLab.Core merged: 14171,14185,14195,14656,14826,15084
- Property svn:mergeinfo changed
-
branches/Async/HeuristicLab.Core/3.3/Interfaces/IMultiOperator.cs
r12012 r15281 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 5Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 21 21 22 22 23 using System.Collections.Generic; 24 23 25 namespace HeuristicLab.Core { 24 public interface IMultiOperator<T> : IOperator where T : class,IOperator { 25 IItemList<T> Operators { get; } 26 public interface IMultiOperator : IOperator { 27 IEnumerable<IOperator> Operators { get; } 28 bool AddOperator(IOperator op); 29 bool RemoveOperator(IOperator op); 30 } 31 public interface IMultiOperator<T> : IMultiOperator where T : class,IOperator { 32 new IItemList<T> Operators { get; } 26 33 } 27 34 }
Note: See TracChangeset
for help on using the changeset viewer.