net.sourceforge.cilib.neuralnetwork.generic
Class Weight

java.lang.Object
  extended by net.sourceforge.cilib.neuralnetwork.generic.Weight
All Implemented Interfaces:
Serializable, Cloneable

public class Weight
extends Object
implements Cloneable

Author:
stefanv
See Also:
Serialized Form

Constructor Summary
Weight()
           
Weight(Type w)
           
 
Method Summary
 Weight getClone()
          Create a cloned copy of the current object and return it.
 Type getPreviousChange()
           
 Type getWeightValue()
           
 void setPreviousChange(Type previousChange)
           
 void setWeightValue(Type weightValue)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Weight

public Weight()
Parameters:
weightValue -

Weight

public Weight(Type w)
Method Detail

getClone

public Weight getClone()
Description copied from interface: Cloneable
Create a cloned copy of the current object and return it. In general the created copy will be a deep copy of the provided instance. As a result this operation an be quite expensive if used incorrectly.

Specified by:
getClone in interface Cloneable
Returns:
An exact clone of the current object instance.
See Also:
Object.clone()

getWeightValue

public Type getWeightValue()

setWeightValue

public void setWeightValue(Type weightValue)

getPreviousChange

public Type getPreviousChange()

setPreviousChange

public void setPreviousChange(Type previousChange)


Copyright © 2009 CIRG. All Rights Reserved.