C# Класс SharpNeatGUI.TimeSeriesGraphForm

Form for displaying a graph plot of time series data (e.g. best genome fitness per generation).
Наследование: System.Windows.Forms.Form
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
Reconnect ( AbstractGenerationalAlgorithm ea ) : void

Called when a new evolution algorithm is initialized. Clean up any existing event listeners and connect up to the new evolution algorithm.

TimeSeriesGraphForm ( string title, string xAxisTitle, string y1AxisTitle, string y2AxisTitle, TimeSeriesDataSource dataSourceArray, AbstractGenerationalAlgorithm ea ) : System

Construct the form with the provided details and data sources.

_ea_UpdateEvent ( object sender, EventArgs e ) : void

Handle update event from the evolution algorithm - update the view.

Защищенные методы

Метод Описание
Dispose ( bool disposing ) : void

Clean up any resources being used.

Приватные методы

Метод Описание
GenomeForm_FormClosing ( object sender, FormClosingEventArgs e ) : void
InitGraph ( string title, string xAxisTitle, string y1AxisTitle, string y2AxisTitle, TimeSeriesDataSource dataSourceArray ) : void
InitializeComponent ( ) : void

Required method for Designer support - do not modify the contents of this method with the code editor.

Описание методов

Dispose() защищенный Метод

Clean up any resources being used.
protected Dispose ( bool disposing ) : void
disposing bool true if managed resources should be disposed; otherwise, false.
Результат void

Reconnect() публичный Метод

Called when a new evolution algorithm is initialized. Clean up any existing event listeners and connect up to the new evolution algorithm.
public Reconnect ( AbstractGenerationalAlgorithm ea ) : void
ea AbstractGenerationalAlgorithm
Результат void

TimeSeriesGraphForm() публичный Метод

Construct the form with the provided details and data sources.
public TimeSeriesGraphForm ( string title, string xAxisTitle, string y1AxisTitle, string y2AxisTitle, TimeSeriesDataSource dataSourceArray, AbstractGenerationalAlgorithm ea ) : System
title string
xAxisTitle string
y1AxisTitle string
y2AxisTitle string
dataSourceArray TimeSeriesDataSource
ea AbstractGenerationalAlgorithm
Результат System

_ea_UpdateEvent() публичный Метод

Handle update event from the evolution algorithm - update the view.
public _ea_UpdateEvent ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
Результат void