C# Класс Encog.EncogFramework

Main Encog class, does little more than provide version information. Also used to hold the ORM session that Encog uses to work with Hibernate.
Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
EncogFileVersion string
PLATFORM string
Version string

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

Метод Описание
RegisterPlugin ( EncogPluginBase plugin ) : void

Register a plugin. If this plugin provides a core service, such as calculation or logging, this will remove the old plugin.

Shutdown ( ) : void

Shutdown Encog.

UnregisterPlugin ( EncogPluginBase plugin ) : void

Unregister a plugin. If you unregister the current logging or calc plugin, a new system one will be created. Encog will crash without a logging or system plugin.

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

Метод Описание
EncogFramework ( ) : System

Private constructor.

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

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

Register a plugin. If this plugin provides a core service, such as calculation or logging, this will remove the old plugin.
public RegisterPlugin ( EncogPluginBase plugin ) : void
plugin EncogPluginBase The plugin to register.
Результат void

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

Shutdown Encog.
public Shutdown ( ) : void
Результат void

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

Unregister a plugin. If you unregister the current logging or calc plugin, a new system one will be created. Encog will crash without a logging or system plugin.
public UnregisterPlugin ( EncogPluginBase plugin ) : void
plugin EncogPluginBase
Результат void

Описание свойств

EncogFileVersion публичное статическое свойство

The encog file version. This determines of an encog file can be read. This is simply an integer, that started with zero and is incramented each time the format of the encog data file changes.
public static string EncogFileVersion
Результат string

PLATFORM публичное статическое свойство

The platform.
public static string PLATFORM
Результат string

Version публичное статическое свойство

The current engog version, this should be read from the properties.
public static string Version
Результат string