Skip to content

Basic Network

Bases: NetworkABC

Source code in cellnition/science/network_models/basic_network.py
13
14
15
16
17
18
19
20
21
22
23
class BasicNet(NetworkABC):
    '''

    '''

    def __init__(self):
        '''

        '''

        super().__init__()  # Initialize the base class

__init__()

Source code in cellnition/science/network_models/basic_network.py
18
19
20
21
22
23
def __init__(self):
    '''

    '''

    super().__init__()  # Initialize the base class