Beispiel #1
0
def test_connection_copy_2():
    o1 = Connection(nsyn=2, weights=.005, delays=.005)
    o2 = o1.copy()
    compare(o1, o2)
Beispiel #2
0
def test_connection_copy_2():
    o1 = Connection(nsyn=2, weights=0.005, delays=0.005)
    o2 = o1.copy()
    compare(o1, o2)
Beispiel #3
0
def test_connection_copy_1():
    o1 = Connection(0, 1, 2, weights=.005, delays=.005)
    o2 = o1.copy()
    compare(o1, o2)
Beispiel #4
0
def test_connection_copy_1():
    o1 = Connection(0, 1, 2, weights=0.005, delays=0.005)
    o2 = o1.copy()
    compare(o1, o2)