Skip to main content
. 2022 Oct 24;22(21):8124. doi: 10.3390/s22218124
Algorithm 2  Neuronal firing signal carrier; propagate a single signal thought for all possible nodes in the neural network graph recursively based on its position.
functionsignal_carrier(g,n,r,bootstrap)
    sget_inbound_signal(g,n,r,bootstrap)
    if s=None then
        return None
    sapply_signal(g,n,r,s)
    if s=None then
        return None
    set_outbound_signals(g,n,r,s)
for all successorsing.node(n).successors() do
    signal_carrier(g,n,r,None)