Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/22/11 13:34:53 (12 years ago)
Author:
mkommend
Message:

#1654: Implemented MultiSymbolicDataAnalysisExpressionTreeCreator.

Location:
trunk/sources
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources

    • Property svn:ignore
      •  

        old new  
        44*.suo
        55*.vsp
         6Doxygen
        67Google.ProtocolBuffers-0.9.1.dll
        78HeuristicLab 3.3.5.1.ReSharper.user
        89HeuristicLab 3.3.6.0.ReSharper.user
        910HeuristicLab.4.5.resharper.user
         11HeuristicLab.ExtLibs.6.0.ReSharper.user
        1012HeuristicLab.resharper.user
        1113ProtoGen.exe
         
        1618bin
        1719protoc.exe
        18 HeuristicLab.ExtLibs.6.0.ReSharper.user
        19 Doxygen
  • trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/ArchitectureManipulators/MultiSymbolicExpressionTreeArchitectureManipulator.cs

    r6929 r7037  
    9797
    9898      List<ISymbolicExpressionTreeManipulator> list = new List<ISymbolicExpressionTreeManipulator>();
    99       foreach (Type type in ApplicationManager.Manager.GetTypes(typeof(ISymbolicExpressionTreeManipulator))) {
     99      var plugin = ApplicationManager.Manager.GetDeclaringPlugin(this.GetType());
     100      foreach (Type type in ApplicationManager.Manager.GetTypes(typeof(ISymbolicExpressionTreeManipulator), plugin)) {
    100101        if (!typeof(IMultiOperator<ISymbolicExpressionTreeManipulator>).IsAssignableFrom(type))
    101102          list.Add((ISymbolicExpressionTreeManipulator)Activator.CreateInstance(type));
Note: See TracChangeset for help on using the changeset viewer.