Uses of Interface
ca.nengo.model.plasticity.PlasticityRule

Packages that use PlasticityRule
ca.nengo.model.impl   
ca.nengo.model.nef.impl   
ca.nengo.model.neuron.impl   
ca.nengo.model.plasticity   
ca.nengo.model.plasticity.impl   
 

Uses of PlasticityRule in ca.nengo.model.impl
 

Methods in ca.nengo.model.impl that return PlasticityRule
 PlasticityRule EnsembleImpl.getPlasticityRule(java.lang.String terminationName)
           
 

Methods in ca.nengo.model.impl with parameters of type PlasticityRule
 void EnsembleImpl.setPlasticityRule(java.lang.String terminationName, PlasticityRule rule)
          Sets the given plasticity rule for all Plastic Nodes in the Ensemble.
 

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

Methods in ca.nengo.model.nef.impl that return PlasticityRule
 PlasticityRule NEFEnsembleImpl.getPlasticityRule(java.lang.String terminationName)
           
 

Methods in ca.nengo.model.nef.impl with parameters of type PlasticityRule
 void NEFEnsembleImpl.setPlasticityRule(java.lang.String terminationName, PlasticityRule rule)
          TODO: should there be a pass-through option as in EnsembleImpl?
 

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

Methods in ca.nengo.model.neuron.impl that return PlasticityRule
 PlasticityRule PlasticExpandableSpikingNeuron.getPlasticityRule(java.lang.String terminationName)
           
 PlasticityRule LinearSynapticIntegrator.getPlasticityRule(java.lang.String terminationName)
           
 

Methods in ca.nengo.model.neuron.impl with parameters of type PlasticityRule
 void PlasticExpandableSpikingNeuron.setPlasticityRule(java.lang.String terminationName, PlasticityRule rule)
           
 void LinearSynapticIntegrator.setPlasticityRule(java.lang.String terminationName, PlasticityRule rule)
           
 

Uses of PlasticityRule in ca.nengo.model.plasticity
 

Methods in ca.nengo.model.plasticity that return PlasticityRule
 PlasticityRule PlasticityRule.clone()
           
 PlasticityRule Plastic.getPlasticityRule(java.lang.String terminationName)
           
 

Methods in ca.nengo.model.plasticity with parameters of type PlasticityRule
 void Plastic.setPlasticityRule(java.lang.String terminationName, PlasticityRule rule)
           
 

Uses of PlasticityRule in ca.nengo.model.plasticity.impl
 

Classes in ca.nengo.model.plasticity.impl that implement PlasticityRule
 class CompositePlasticityRule
          A PlasticityRule that delegates to underlying spike-based and rate-based rules.
static class CompositePlasticityRule.NullRule
          A null plasticity rule that always returns zeros from getDerivative().
 class RealPlasticityRule
          A basic implementation of EnsemblePlasticityRule.
 class SpikePlasticityRule
          A PlasticityRule that accepts spiking input.
 

Methods in ca.nengo.model.plasticity.impl that return PlasticityRule
 PlasticityRule SpikePlasticityRule.clone()
           
 PlasticityRule CompositePlasticityRule.clone()
           
 PlasticityRule CompositePlasticityRule.NullRule.clone()
           
 PlasticityRule RealPlasticityRule.clone()
           
 PlasticityRule CompositePlasticityRule.getRealRule()
           
 PlasticityRule CompositePlasticityRule.getSpikeRule()
           
 

Methods in ca.nengo.model.plasticity.impl with parameters of type PlasticityRule
 void CompositePlasticityRule.setRealRule(PlasticityRule rule)
           
 void CompositePlasticityRule.setSpikeRule(PlasticityRule rule)
           
 

Constructors in ca.nengo.model.plasticity.impl with parameters of type PlasticityRule
CompositePlasticityRule(PlasticityRule spikeRule, PlasticityRule realRule)