pyclustering.nnet.conn_type Class Reference

Enumerator of connection types between oscillators. More...

+ Inheritance diagram for pyclustering.nnet.conn_type:
+ Collaboration diagram for pyclustering.nnet.conn_type:

Static Public Attributes

int NONE = 0;
 No connection between oscillators. More...
 
int ALL_TO_ALL = 1;
 All oscillators have connection with each other. More...
 
int GRID_FOUR = 2;
 Connections between oscillators represent grid where one oscillator can be connected with four neighbor oscillators: right, upper, left, lower. More...
 
int GRID_EIGHT = 3;
 Connections between oscillators represent grid where one oscillator can be connected with eight neighbor oscillators: right, right-upper, upper, upper-left, left, left-lower, lower, lower-right. More...
 
int LIST_BIDIR = 4;
 Connections between oscillators represent bidirectional list. More...
 
int DYNAMIC = 5;
 Connections are defined by user or by network during simulation. More...
 

Detailed Description

Enumerator of connection types between oscillators.

Definition at line 59 of file __init__.py.

Member Data Documentation

◆ ALL_TO_ALL

int pyclustering.nnet.conn_type.ALL_TO_ALL = 1;
static

All oscillators have connection with each other.

Definition at line 69 of file __init__.py.

◆ DYNAMIC

int pyclustering.nnet.conn_type.DYNAMIC = 5;
static

Connections are defined by user or by network during simulation.

Definition at line 81 of file __init__.py.

◆ GRID_EIGHT

int pyclustering.nnet.conn_type.GRID_EIGHT = 3;
static

Connections between oscillators represent grid where one oscillator can be connected with eight neighbor oscillators: right, right-upper, upper, upper-left, left, left-lower, lower, lower-right.

Definition at line 75 of file __init__.py.

◆ GRID_FOUR

int pyclustering.nnet.conn_type.GRID_FOUR = 2;
static

Connections between oscillators represent grid where one oscillator can be connected with four neighbor oscillators: right, upper, left, lower.

Definition at line 72 of file __init__.py.

◆ LIST_BIDIR

int pyclustering.nnet.conn_type.LIST_BIDIR = 4;
static

Connections between oscillators represent bidirectional list.

Definition at line 78 of file __init__.py.

◆ NONE

int pyclustering.nnet.conn_type.NONE = 0;
static

No connection between oscillators.

Definition at line 66 of file __init__.py.


The documentation for this class was generated from the following file: