| Constructor and Description |
|---|
ForwardMap(int width)
Generates a quadratic forward map of given width with default neurons and links.
|
ForwardMap(int width,
int height,
Neuron neuron,
Link link)
Constructs a forward map with given neurons and links.
|
ForwardMap(Map map)
Constructs a map copy.
|
| Modifier and Type | Method and Description |
|---|---|
ForwardMap |
clone()
Returns a shallow clone of this map.
|
protected boolean |
connect(Map other)
Connects each neuron (sink) of this map with each neuron of the given map (source)
using the link type of this map.
|
java.lang.String |
toString()
Returns the type(width x height) of this map.
|
connect, disconnect, getDepth, getHeight, getLinkCount, getNeuron, getNeuron, getNeurons, getSize, getWidth, reset, setIOType, toXMLpublic ForwardMap(Map map)
map - the map to be copiedpublic ForwardMap(int width)
width - the square widthpublic ForwardMap clone()
protected boolean connect(Map other)