net.sourceforge.cilib.neuralnetwork.foundation
Interface NNPattern

All Superinterfaces:
Cloneable, Serializable
All Known Implementing Classes:
StandardPattern

public interface NNPattern
extends Cloneable

TODO: Complete this javadoc.


Method Summary
 NNPattern getClone()
          Create a cloned copy of the current object and return it.
 Vector getInput()
           
 int getInputLength()
           
 Vector getTarget()
           
 int getTargetLength()
           
 void setInput(Vector v)
           
 void setTarget(Vector t)
           
 

Method Detail

getTargetLength

int getTargetLength()

getInputLength

int getInputLength()

getInput

Vector getInput()

getTarget

Vector getTarget()

getClone

NNPattern 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()

setInput

void setInput(Vector v)

setTarget

void setTarget(Vector t)


Copyright © 2009 CIRG. All Rights Reserved.