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

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

Uses of PlasticityRule in ca.nengo.model
 

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

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

Uses of PlasticityRule in ca.nengo.model.impl
 

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

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

Uses of PlasticityRule in ca.nengo.model.plasticity
 

Methods in ca.nengo.model.plasticity that return PlasticityRule
 PlasticityRule PlasticityRule.clone()
           
 

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 PlasticityRule for real valued input.
 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)