Free cookie consent management tool by TermsFeed Policy Generator

Changeset 409


Ignore:
Timestamp:
07/29/08 20:49:23 (16 years ago)
Author:
gkronber
Message:

fixed a minor display bug (related to #204)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.CEDMA.Core/Agent.cs

    r403 r409  
    7171          newAgent.Status = entry.Status;
    7272          IOperatorGraph opGraph = (IOperatorGraph)PersistenceManager.RestoreFromGZip(entry.RawData);
    73           OperatorGraph.Clear();
    74           foreach(IOperator op in opGraph.Operators) OperatorGraph.AddOperator(op);
    75           OperatorGraph.InitialOperator = opGraph.InitialOperator;
     73          newAgent.OperatorGraph.Clear();
     74          foreach(IOperator op in opGraph.Operators) newAgent.OperatorGraph.AddOperator(op);
     75          newAgent.OperatorGraph.InitialOperator = opGraph.InitialOperator;
    7676          agents.Add(newAgent);
    7777        }
Note: See TracChangeset for help on using the changeset viewer.