C# Class 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.
ファイルを表示 Open project: encog/encog-silverlight-core

Public Properties

Property Type Description
EncogFileVersion string
PLATFORM string
Version string

Public Methods

Method Description
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.

Private Methods

Method Description
EncogFramework ( ) : System

Private constructor.

Method Details

RegisterPlugin() public method

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.
return void

Shutdown() public method

Shutdown Encog.
public Shutdown ( ) : void
return void

UnregisterPlugin() public method

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
return void

Property Details

EncogFileVersion public_oe static_oe property

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
return string

PLATFORM public_oe static_oe property

The platform.
public static string PLATFORM
return string

Version public_oe static_oe property

The current engog version, this should be read from the properties.
public static string Version
return string