Uses of Class
ca.nengo.model.SimulationMode

Packages that use SimulationMode
ca.nengo.model   
ca.nengo.model.impl   
ca.nengo.model.muscle.impl   
ca.nengo.model.nef.impl   
ca.nengo.model.neuron.impl   
 

Uses of SimulationMode in ca.nengo.model
 

Methods in ca.nengo.model that return SimulationMode
static SimulationMode SimulationMode.getClosestMode(SimulationMode requested, SimulationMode[] supported)
          A convenience method for finding the closest supported mode to a requested mode.
 SimulationMode SimulationMode.getFallbackMode()
           
 SimulationMode SimulationMode.ModeConfigurable.getMode()
           
static SimulationMode SimulationMode.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SimulationMode[] SimulationMode.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in ca.nengo.model with parameters of type SimulationMode
static SimulationMode SimulationMode.getClosestMode(SimulationMode requested, SimulationMode[] supported)
          A convenience method for finding the closest supported mode to a requested mode.
static SimulationMode SimulationMode.getClosestMode(SimulationMode requested, SimulationMode[] supported)
          A convenience method for finding the closest supported mode to a requested mode.
 void SimulationMode.ModeConfigurable.setMode(SimulationMode mode)
          Sets the object to run in either the given mode or the closest mode that it supports (all ModeConfigurables must support SimulationMode.DEFAULT, and must default to this mode).
 

Uses of SimulationMode in ca.nengo.model.impl
 

Methods in ca.nengo.model.impl that return SimulationMode
 SimulationMode AbstractEnsemble.getMode()
          Note that this reflects the latest mode requested of the Ensemble, and that individual Neurons may run in different modes (see setMode).
 SimulationMode PassthroughNode.getMode()
           
 SimulationMode NetworkImpl.getMode()
           
 SimulationMode FunctionInput.getMode()
           
 SimulationMode AbstractNode.getMode()
           
 SimulationMode MockNode.getMode()
           
 SimulationMode MockConfigurable.getSimulationModeField()
           
 

Methods in ca.nengo.model.impl with parameters of type SimulationMode
 void AbstractEnsemble.setMode(SimulationMode mode)
          When this method is called, setMode(...) is called on each Node in the Ensemble.
 void PassthroughNode.setMode(SimulationMode mode)
          Does nothing (only DEFAULT mode is supported).
 void NetworkImpl.setMode(SimulationMode mode)
           
 void FunctionInput.setMode(SimulationMode mode)
          This call has no effect.
 void EnsembleImpl.setMode(SimulationMode mode)
          This Ensemble does not support SimulationMode.DIRECT.
 void AbstractNode.setMode(SimulationMode mode)
           
 void MockNode.setMode(SimulationMode mode)
           
 void MockConfigurable.setSimulationModeField(SimulationMode val)
           
 

Uses of SimulationMode in ca.nengo.model.muscle.impl
 

Methods in ca.nengo.model.muscle.impl that return SimulationMode
 SimulationMode LinkSegmentModelImpl.getMode()
           
 SimulationMode SkeletalMuscleImpl.getMode()
           
 

Methods in ca.nengo.model.muscle.impl with parameters of type SimulationMode
 void LinkSegmentModelImpl.setMode(SimulationMode mode)
           
 void SkeletalMuscleImpl.setMode(SimulationMode mode)
           
 

Uses of SimulationMode in ca.nengo.model.nef.impl
 

Methods in ca.nengo.model.nef.impl that return SimulationMode
 SimulationMode DecodedOrigin.getMode()
           
 

Methods in ca.nengo.model.nef.impl with parameters of type SimulationMode
static float[][] NEFUtil.getOutput(DecodedOrigin origin, float[][] input, SimulationMode mode)
          Calculates an instantaneous input-output mapping for an ensemble.
 void DecodedOrigin.setMode(SimulationMode mode)
           
 void NEFEnsembleImpl.setMode(SimulationMode mode)
           
 

Uses of SimulationMode in ca.nengo.model.neuron.impl
 

Methods in ca.nengo.model.neuron.impl that return SimulationMode
 SimulationMode PoissonSpikeGenerator.getMode()
           
 SimulationMode SpikingNeuron.getMode()
           
 SimulationMode ALIFSpikeGenerator.getMode()
           
 SimulationMode IzhikevichSpikeGenerator.getMode()
           
 SimulationMode DynamicalSystemSpikeGenerator.getMode()
           
 SimulationMode LIFSpikeGenerator.getMode()
           
 

Methods in ca.nengo.model.neuron.impl with parameters of type SimulationMode
 void PoissonSpikeGenerator.setMode(SimulationMode mode)
           
 void SpikingNeuron.setMode(SimulationMode mode)
           
 void ALIFSpikeGenerator.setMode(SimulationMode mode)
          DEFAULT and RATE are supported.
 void IzhikevichSpikeGenerator.setMode(SimulationMode mode)
           
 void DynamicalSystemSpikeGenerator.setMode(SimulationMode mode)
           
 void SpikeGeneratorOrigin.setMode(SimulationMode mode)
          Need this to fix bug where the generator's mode is changed, but myOutput is still of the type of the old mode
 void LIFSpikeGenerator.setMode(SimulationMode mode)