Serialized Form


Package simbad.gui

Class simbad.gui.AgentInspector extends javax.swing.JInternalFrame implements Serializable

Serialized Fields

simulator

Simulator simulator

agent

SimpleAgent agent

textArea

javax.swing.JTextArea textArea

sensorPanels

java.util.ArrayList<E> sensorPanels
The list of all agent's sensor panels


actuatorPanels

java.util.ArrayList<E> actuatorPanels
The list of all agent's actuator panels


thread

java.lang.Thread thread

framesPerSecond

float framesPerSecond

chooser

javax.swing.JList chooser

font

java.awt.Font font

Class simbad.gui.Console extends javax.swing.JInternalFrame implements Serializable

Serialized Fields

thread

java.lang.Thread thread

out

java.io.PipedOutputStream out

in

java.io.PipedInputStream in

jtextArea

javax.swing.JTextArea jtextArea

jscrollPane

javax.swing.JScrollPane jscrollPane

Class simbad.gui.ControlWindow extends javax.swing.JInternalFrame implements Serializable

Class simbad.gui.Simbad extends javax.swing.JFrame implements Serializable

Serialized Fields

menubar

javax.swing.JMenuBar menubar

desktop

javax.swing.JDesktopPane desktop

worldWindow

WorldWindow worldWindow

controlWindow

ControlWindow controlWindow

world

World world

simulator

Simulator simulator

console

Console console

agentInspectors

java.util.ArrayList<E> agentInspectors

backgroundMode

boolean backgroundMode

Class simbad.gui.SimulatorControlGUI extends javax.swing.JPanel implements Serializable

Serialized Fields

simulator

Simulator simulator

timeFactorField

javax.swing.JFormattedTextField timeFactorField

parentFrame

javax.swing.JFrame parentFrame

smallFont

java.awt.Font smallFont

Class simbad.gui.WorldControlGUI extends javax.swing.JPanel implements Serializable

Serialized Fields

world

World world

simulator

Simulator simulator

agentFollower

AgentFollower agentFollower

smallFont

java.awt.Font smallFont

Class simbad.gui.WorldWindow extends javax.swing.JInternalFrame implements Serializable

Serialized Fields

world

World world

Package simbad.holodeck

Class simbad.holodeck.SimbadHolodeck extends javax.swing.JFrame implements Serializable

Serialized Fields

menubar

javax.swing.JMenuBar menubar

desktop

javax.swing.JDesktopPane desktop

worldWindow

WorldWindow worldWindow

controlWindow

ControlWindow controlWindow

world

World world

simulator

Simulator simulator

console

Console console

agentInspectors

java.util.ArrayList<E> agentInspectors

backgroundMode

boolean backgroundMode

Package simbad.picoevo.ext.representation

Class simbad.picoevo.ext.representation.Element_NEAT_Gene extends Element implements Serializable

Serialized Fields

innovationID

int innovationID

recurrent

boolean recurrent

enabled

boolean enabled

Class simbad.picoevo.ext.representation.Element_NEAT_LGene extends Element_NEAT_Gene implements Serializable

Serialized Fields

fromNeuron

int fromNeuron

toNeuron

int toNeuron

weight

double weight

Class simbad.picoevo.ext.representation.Element_NEAT_NGene extends Element_NEAT_Gene implements Serializable

Serialized Fields

neuronType

int neuronType

activationResponse

double activationResponse

neuronID

int neuronID

splitX

double splitX

splitY

double splitY

Package simbad.piconode.core.arc

Class simbad.piconode.core.arc.Arc extends java.lang.Object implements Serializable

Serialized Fields

_source

Node _source

_target

Node _target

lGene

Element_NEAT_LGene lGene

Class simbad.piconode.core.arc.ArcForBackPropLearning extends WeightedArc implements Serializable

Serialized Fields

_bigDeltaWeightAdjustmentValue

double _bigDeltaWeightAdjustmentValue

Class simbad.piconode.core.arc.ConstrainedArc extends Arc implements Serializable

Class simbad.piconode.core.arc.ModularArc extends Arc implements Serializable

Serialized Fields

_inputRegIndex

int _inputRegIndex

Class simbad.piconode.core.arc.WeightedArc extends ConstrainedArc implements Serializable

Serialized Fields

_weightValue

double _weightValue

Package simbad.piconode.core.node

Class simbad.piconode.core.node.ConnectedNode extends Node implements Serializable

Serialized Fields

_incomingArcsList

java.util.ArrayList<E> _incomingArcsList

_outgoingArcsList

java.util.ArrayList<E> _outgoingArcsList

Class simbad.piconode.core.node.FeedForwardNeuralNetwork extends NeuralNetwork implements Serializable

Class simbad.piconode.core.node.FeedForwardNeuralNetworkForBackPropLearning extends FeedForwardNeuralNetwork implements Serializable

Serialized Fields

_activationFunctionForArcsFromBiasNeuron

ActivationFunctionWithDerivative _activationFunctionForArcsFromBiasNeuron

_biasNeuron

NeuronForBackPropLearning _biasNeuron

_etaLearningRate

double _etaLearningRate

Class simbad.piconode.core.node.ModularNode extends ConnectedNode implements Serializable

Serialized Fields

_updated

boolean _updated

Class simbad.piconode.core.node.Module extends ModularNode implements Serializable

Serialized Fields

_inputRegister

double[] _inputRegister

_outputRegister

double[] _outputRegister

_oldOutputRegister

double[] _oldOutputRegister

Class simbad.piconode.core.node.Network extends Module implements Serializable

Serialized Fields

_arcList

java.util.ArrayList<E> _arcList

_nodeList

java.util.ArrayList<E> _nodeList

Class simbad.piconode.core.node.NeuralNetwork extends Network implements Serializable

Serialized Fields

_outputNeuronsList

java.util.ArrayList<E> _outputNeuronsList

_inputNeuronsList

java.util.ArrayList<E> _inputNeuronsList

_biasNeuron

Neuron _biasNeuron

_containsBiasNeuron

boolean _containsBiasNeuron

_activationFunctionForArcsFromBiasNeuron

ActivationFunction _activationFunctionForArcsFromBiasNeuron

_biasArcList

java.util.ArrayList<E> _biasArcList

_init

boolean _init

_allNeuronsUnorderedList

java.util.ArrayList<E> _allNeuronsUnorderedList

Class simbad.piconode.core.node.Neuron extends NeuronalNode implements Serializable

Serialized Fields

_activationFunction

ActivationFunction _activationFunction

Class simbad.piconode.core.node.NeuronalNode extends ConnectedNode implements Serializable

Serialized Fields

_network

NeuralNetwork _network

_neuronValue

double _neuronValue

_isInputNode

boolean _isInputNode

_isOutputNode

boolean _isOutputNode

Class simbad.piconode.core.node.NeuronForBackPropLearning extends Neuron implements Serializable

Serialized Fields

_learningNodeFlag

boolean _learningNodeFlag

_deltaErrorSignal

double _deltaErrorSignal

Class simbad.piconode.core.node.Node extends java.lang.Object implements Serializable

Serialized Fields

_name

java.lang.String _name

nGene

Element_NEAT_NGene nGene

Class simbad.piconode.core.node.RecurrentNeuralNetwork extends NeuralNetwork implements Serializable

Class simbad.piconode.core.node.RecurrentNeuron extends Neuron implements Serializable

Serialized Fields

_newNeuronValue

double _newNeuronValue

_isNewValueBuffered

boolean _isNewValueBuffered

Class simbad.piconode.core.node.SelfOrganizingMap extends NeuralNetwork implements Serializable

Serialized Fields

_mapRadius

double _mapRadius

_lambdaTimeConstant

double _lambdaTimeConstant

_startLearningRate

double _startLearningRate

_learningRate

double _learningRate

_steps

int _steps

_totalSteps

int _totalSteps

_BMUindex

int _BMUindex

_dx

int _dx

_dy

int _dy

Class simbad.piconode.core.node.SOMoutputNeuron extends NeuronalNode implements Serializable

Serialized Fields

_coordinates

int[] _coordinates

Class simbad.piconode.core.node.ValueContainer extends ModularNode implements Serializable

Serialized Fields

_value

double _value

Package simbad.piconode.core.operator

Class simbad.piconode.core.operator.ActivationFunction extends Operator implements Serializable

Class simbad.piconode.core.operator.ActivationFunctionWithDerivative extends ActivationFunction implements Serializable

Class simbad.piconode.core.operator.Operator extends java.lang.Object implements Serializable


Package simbad.piconode.ext

Class simbad.piconode.ext.ActivationFunction_copy extends ActivationFunction implements Serializable

Class simbad.piconode.ext.ActivationFunction_copyWithDecay extends ActivationFunction implements Serializable

Serialized Fields

_decay

double _decay

Class simbad.piconode.ext.ActivationFunction_hyperbolicTangent extends ActivationFunctionWithDerivative implements Serializable

Class simbad.piconode.ext.ActivationFunction_logisticSigmoid extends ActivationFunctionWithDerivative implements Serializable

Serialized Fields

_sigmoidKValue

double _sigmoidKValue

Class simbad.piconode.ext.ActivationFunction_piecewiseLinear extends ActivationFunctionWithDerivative implements Serializable

Class simbad.piconode.ext.ActivationFunction_threshold extends ActivationFunctionWithDerivative implements Serializable


Package simbad.piconode.visual

Class simbad.piconode.visual.NNFormArc extends javax.swing.JPanel implements Serializable

serialVersionUID: 1L

Serialized Fields

arc

NNArc arc

weightTF

javax.swing.JTextField weightTF

minimumTF

javax.swing.JTextField minimumTF

maximumTF

javax.swing.JTextField maximumTF

title

javax.swing.JLabel title

canvas

NNCanvas canvas

colorNNColor

NNColor colorNNColor

_applyButton

javax.swing.JButton _applyButton

weightCh

javax.swing.JCheckBox weightCh

minimumCh

javax.swing.JCheckBox minimumCh

maximumCh

javax.swing.JCheckBox maximumCh

colorCh

javax.swing.JCheckBox colorCh

Class simbad.piconode.visual.NNFormNode extends javax.swing.JPanel implements Serializable

serialVersionUID: 1L

Serialized Fields

node

NNNode node

nameTF

javax.swing.JTextField nameTF

valeurTF

javax.swing.JTextField valeurTF

typeCB

javax.swing.JComboBox typeCB

functionCB

javax.swing.JComboBox functionCB

title

javax.swing.JLabel title

colorNNColor

NNColor colorNNColor

_applyButton

javax.swing.JButton _applyButton

typeCh

javax.swing.JCheckBox typeCh

functionCh

javax.swing.JCheckBox functionCh

colorCh

javax.swing.JCheckBox colorCh

canvas

NNCanvas canvas

Class simbad.piconode.visual.NNFrame extends javax.swing.JFrame implements Serializable

serialVersionUID: 1L

Serialized Fields

_menuBar

javax.swing.JMenuBar _menuBar

cg

java.awt.GridBagConstraints cg

_infoPanel

javax.swing.JPanel _infoPanel

_commandPanel

javax.swing.JPanel _commandPanel

selectRadioButton

javax.swing.JRadioButton selectRadioButton

nodeRadioButton

javax.swing.JRadioButton nodeRadioButton

arcRadioButton

javax.swing.JRadioButton arcRadioButton

picomenu

boolean picomenu

_canvasScroll

NNScrollPane _canvasScroll

_canvas

NNCanvas _canvas

formArc

NNFormArc formArc

formNode

NNFormNode formNode

file

java.io.File file

grid

boolean grid

Package simbad.sim

Class simbad.sim.Eye.EyeJPanel extends javax.swing.JPanel implements Serializable

Serialized Fields

bim

java.awt.image.BufferedImage bim

Class simbad.sim.LampActuator.LampActuatorJPanel extends javax.swing.JPanel implements Serializable

Serialized Fields

color

java.awt.Color color

font

java.awt.Font font

Class simbad.sim.LightSensor.LigthSensorJPanel extends javax.swing.JPanel implements Serializable

Serialized Fields

color

java.awt.Color color

font

java.awt.Font font

format

java.text.DecimalFormat format