Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.CEDMA.Console/Agent.cs @ 367

Last change on this file since 367 was 357, checked in by gkronber, 16 years ago

worked on ticket #187. code is a mess. work-in-progress.

File size: 562 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Core;
6using System.Xml;
7
8namespace HeuristicLab.CEDMA.Console {
9  public class Agent : ItemBase, IAgent {
10    private string name;
11    private OperatorGraph operatorGraph;
12    public string Name {
13      get { return name; }
14      set { name = value; }
15    }
16
17    public IOperatorGraph OperatorGraph {
18      get { return operatorGraph; }
19    }
20
21    public Agent() : base() {
22      operatorGraph = new OperatorGraph();
23    }
24  }
25}
Note: See TracBrowser for help on using the repository browser.