@overrides(AbstractPlasticSynapseDynamics.get_weight_maximum)
def get_weight_maximum(self, connector, weights):
w_max = super(SynapseDynamicsSTDP, self).get_weight_maximum(
connector, weights)
// The maximum weight is the largest that it could be set to from
// the weight dependence
return max(w_max, self.__weight_dependence.weight_maximum)
def get_provenance_data(self, pre_population_label, post_population_label):
prov_data = list()
if self.__timing_dependence is not None: