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 | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using HeuristicLab.Core;
|
---|
6 | using System.Xml;
|
---|
7 |
|
---|
8 | namespace 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.