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. Also used to hold the ORM session that Encog uses to work with Hibernate.

Author:
jheaton

Field Summary
static int DEFAULT_PRECISION
          The default precision to use for compares.
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.
static java.lang.String VERSION
          The current engog version, this should be read from the properties.
 
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

VERSION

public static final java.lang.String VERSION
The current engog version, this should be read from the properties.

See Also:
Constant Field Values

DEFAULT_PRECISION

public static final int DEFAULT_PRECISION
The default precision to use for compares.

See Also:
Constant Field Values

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 incremented 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