Source code for spynnaker8.models.connectors.small_world_connector

# Copyright (c) 2017-2019 The University of Manchester
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

from pyNN.space import Space
from spynnaker.pyNN.models.neural_projections.connectors import (
    SmallWorldConnector as
    _BaseClass)


[docs]class SmallWorldConnector(_BaseClass): __slots__ = [] def __init__( self, degree, rewiring, allow_self_connections=True, space=Space(), safe=True, verbose=False, n_connections=None): # pylint: disable=too-many-arguments super(SmallWorldConnector, self).__init__( degree=degree, rewiring=rewiring, allow_self_connections=allow_self_connections, safe=safe, verbose=verbose, n_connections=n_connections)