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.
Afficher le fichier Open project: colgreen/sharpneat Class Usage Examples

Méthodes publiques

Méthode 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 méthode

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
Résultat System

ReadExperimentXml() public static méthode

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
Résultat List

ReadExperimentXml() public static méthode

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