The Encog Project

org.encog
Class Encog

java.lang.Object
  extended by org.encog.Encog

public final class Encog
extends java.lang.Object

Main Encog class, does little more than provide version information.

Author:
jheaton

Field Summary
static java.lang.String ENCOG_FILE_VERSION
          The encog file version.
static java.lang.String ENCOG_VERSION
          The version of the Encog JAR we are working with.
 
Method Summary
static Encog getInstance()
          Get the instance to the singleton.
 java.util.Map<java.lang.String,java.lang.String> getProperties()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

ENCOG_VERSION

public static final java.lang.String ENCOG_VERSION
The version of the Encog JAR we are working with. Given in the form x.x.x.

See Also:
Constant Field Values

ENCOG_FILE_VERSION

public static final java.lang.String ENCOG_FILE_VERSION
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.

See Also:
Constant Field Values
Method Detail

getInstance

public static Encog getInstance()
Get the instance to the singleton.

Returns:
The instance.

getProperties

public java.util.Map<java.lang.String,java.lang.String> getProperties()
Returns:
the properties

The Encog Project