C# Class SharpNeatGUI.ExperimentInfo

Stores experiment class info. Used by problem domain drop down combobox in GUI to hold details of how to instantiate selected experiments.
Show file Open project: colgreen/sharpneat Class Usage Examples

Public Methods

Method Description
ExperimentInfo ( string name, string assemblyPath, string className, XmlElement xmlConfig ) : System

Constructs with the provided experiment info.

ReadExperimentXml ( XmlDocument xmlDoc ) : List

Read an experiments XML file and return the parsed experiments as a list of ExperimentInfo objects.

ReadExperimentXml ( string filepath ) : List

Read an experiments XML file and return the parsed experiments as a list of ExperimentInfo objects.

Method Details

ExperimentInfo() public method

Constructs with the provided experiment info.
public ExperimentInfo ( string name, string assemblyPath, string className, XmlElement xmlConfig ) : System
name string
assemblyPath string
className string
xmlConfig System.Xml.XmlElement
return System

ReadExperimentXml() public static method

Read an experiments XML file and return the parsed experiments as a list of ExperimentInfo objects.
public static ReadExperimentXml ( XmlDocument xmlDoc ) : List
xmlDoc System.Xml.XmlDocument
return List

ReadExperimentXml() public static method

Read an experiments XML file and return the parsed experiments as a list of ExperimentInfo objects.
public static ReadExperimentXml ( string filepath ) : List
filepath string
return List