id
int64 500
3.5k
| prompt
stringlengths 265
1.76k
| answer
stringclasses 10
values | num_nodes
int64 3
7
| num_edges
int64 3
29
| avg_node_edge
float64 1
4.14
| graph_density
float64 0.17
1
| num_classes
int64 2
7
| avg_node_class
float64 1
3.5
| max_num_field
int64 1
7
| min_num_field
int64 1
4
| avg_num_field
float64 1
5.33
| path_length
int64 3
7
| max_node_visits
int64 1
4
| max_edge_visits
int64 1
4
| unique_node_number
int64 2
7
| path_node_coverage
float64 0.29
1
| unique_edge_number
int64 2
7
| path_edge_coverage
float64 0.1
1
| num_cycle
int64 0
6
| shortest_cycle
float64 2
6
⌀ | longest_cycle
float64 2
7
⌀ | average_cycle
float64 2
6
⌀ | unique_edge_label
int64 1
7
| max_label_occurrences
int64 1
7
| max_label_consecutive
int64 1
7
| max_node_outdegree
int64 1
3
| correctness
bool 1
class | one_correct
bool 1
class |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
500 | class A:
def __init__(self, txt: str):
self.u: C = None
self.w: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: A = None
self.t: A = None
self.q: A = None
self.txt = txt
b = A("b")
h = B("h")
g = C("g")
b.u = g
b.w = g
h.p = g
g.z = b
g.t = b
g.q = b
assert h.p.q.u.txt == " | g" | 3 | 3 | 1 | 0.5 | 3 | 1 | 3 | 1 | 2 | 3 | 2 | 1 | 3 | 1 | 3 | 1 | 1 | 2 | 2 | 2 | 3 | 1 | 1 | 1 | true | true |
501 | class A:
def __init__(self, txt: str):
self.r: C = None
self.o: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: B = None
self.s: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.v: C = None
self.t: C = None
self.y: A = None
self.x: A = None
self.txt = txt
h = A("h")
a = B("a")
d = C("d")
e = D("e")
n = E("n")
k = A("k")
j = C("j")
h.r = d
h.o = e
a.x = n
d.o = a
d.s = j
e.o = h
n.v = j
n.t = j
n.y = k
n.x = k
k.r = j
k.o = e
j.o = a
j.s = d
assert n.y.o.o.r.txt == " | d" | 7 | 12 | 1.714286 | 0.285714 | 5 | 1.4 | 4 | 1 | 2 | 4 | 1 | 1 | 5 | 0.714286 | 4 | 0.333333 | 0 | null | null | null | 3 | 2 | 2 | 1 | true | true |
502 | class A:
def __init__(self, txt: str):
self.r: C = None
self.s: C = None
self.q: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
l = A("l")
j = B("j")
g = C("g")
l.r = g
l.s = g
l.q = g
j.p = l
j.w = g
g.o = l
assert l.r.o.s.txt == " | g" | 3 | 4 | 1.333333 | 0.666667 | 3 | 1 | 3 | 1 | 2 | 3 | 2 | 1 | 2 | 0.666667 | 3 | 0.75 | 2 | 2 | 2 | 2 | 3 | 1 | 1 | 2 | true | true |
503 | class A:
def __init__(self, txt: str):
self.o: B = None
self.r: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.s: F = None
self.v: D = None
self.o: E = None
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: D = None
self.x: E = None
self.s: E = None
self.z: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: E = None
self.z: F = None
self.r: E = None
self.q: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: E = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: B = None
self.y: A = None
self.r: A = None
self.s: D = None
self.x: D = None
self.txt = txt
l = A("l")
h = B("h")
d = C("d")
k = D("k")
e = E("e")
n = F("n")
a = E("a")
l.o = h
l.r = a
h.t = l
h.s = n
h.v = k
h.o = a
h.w = d
d.q = k
d.x = a
d.s = e
d.z = l
k.y = a
k.r = a
k.z = n
k.q = d
e.x = a
n.t = h
n.y = l
n.r = l
n.s = k
n.x = k
a.x = e
assert k.q.s.x.txt == " | a" | 7 | 19 | 2.714286 | 0.452381 | 6 | 1.166667 | 5 | 1 | 3.5 | 3 | 1 | 1 | 4 | 0.571429 | 3 | 0.157895 | 0 | null | null | null | 3 | 1 | 1 | 1 | true | true |
504 | class A:
def __init__(self, txt: str):
self.s: B = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
i = A("i")
h = B("h")
n = B("n")
d = B("d")
i.s = n
i.p = h
h.z = i
n.z = i
d.z = i
assert n.z.p.z.txt == " | i" | 4 | 5 | 1.25 | 0.416667 | 2 | 2 | 2 | 1 | 1.5 | 3 | 2 | 1 | 3 | 0.75 | 3 | 0.6 | 1 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | true | true |
505 | class A:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.y: A = None
self.txt = txt
d = A("d")
l = B("l")
n = A("n")
h = B("h")
g = B("g")
k = B("k")
d.x = h
l.s = d
l.y = d
n.x = k
h.s = n
h.y = d
g.s = d
g.y = d
k.s = n
k.y = d
assert h.y.x.y.txt == " | d" | 6 | 8 | 1.333333 | 0.266667 | 2 | 3 | 2 | 1 | 1.5 | 3 | 2 | 2 | 2 | 0.333333 | 2 | 0.25 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | true | true |
506 | class A:
def __init__(self, txt: str):
self.y: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: F = None
self.w: E = None
self.o: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: F = None
self.x: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
k = A("k")
j = B("j")
e = C("e")
f = D("f")
g = E("g")
b = F("b")
k.y = f
j.z = g
j.q = e
e.s = b
e.o = b
e.w = g
f.v = b
f.x = k
g.q = b
b.t = e
assert k.y.v.t.txt == " | e" | 6 | 9 | 1.5 | 0.3 | 6 | 1 | 3 | 1 | 1.666667 | 3 | 1 | 1 | 4 | 0.666667 | 3 | 0.333333 | 0 | null | null | null | 3 | 1 | 1 | 1 | true | true |
507 | class A:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: B = None
self.v: A = None
self.t: A = None
self.txt = txt
h = A("h")
j = B("j")
n = C("n")
h.z = n
j.r = h
n.y = j
n.v = h
n.t = h
assert h.z.y.r.txt == " | h" | 3 | 4 | 1.333333 | 0.666667 | 3 | 1 | 3 | 1 | 1.666667 | 3 | 2 | 1 | 3 | 1 | 3 | 0.75 | 1 | 3 | 3 | 3 | 3 | 1 | 1 | 1 | true | true |
508 | class A:
def __init__(self, txt: str):
self.u: C = None
self.w: B = None
self.y: D = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: D = None
self.v: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: B = None
self.r: B = None
self.u: B = None
self.txt = txt
b = A("b")
j = B("j")
m = C("m")
e = D("e")
b.u = m
b.w = j
b.r = j
b.y = e
j.o = e
j.v = e
m.w = b
e.w = j
e.r = j
e.u = j
assert b.u.w.u.w.txt == " | b" | 4 | 6 | 1.5 | 0.5 | 4 | 1 | 4 | 1 | 2.5 | 4 | 3 | 2 | 2 | 0.5 | 2 | 0.333333 | 3 | 2 | 4 | 2.5 | 2 | 2 | 1 | 1 | true | true |
509 | class A:
def __init__(self, txt: str):
self.y: C = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.t: A = None
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.q: B = None
self.txt = txt
n = A("n")
f = B("f")
a = C("a")
i = A("i")
l = B("l")
n.y = a
n.o = f
f.z = i
f.t = i
f.s = n
a.s = i
a.q = f
i.y = a
i.o = l
l.z = i
l.s = i
l.t = n
assert i.y.q.z.y.s.txt == " | i" | 5 | 10 | 2 | 0.5 | 3 | 1.666667 | 3 | 2 | 2.333333 | 5 | 3 | 2 | 3 | 0.6 | 4 | 0.4 | 3 | 2 | 5 | 3.25 | 4 | 2 | 1 | 2 | true | true |
510 | class A:
def __init__(self, txt: str):
self.s: B = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: B = None
self.t: B = None
self.txt = txt
e = A("e")
h = B("h")
k = B("k")
d = B("d")
a = A("a")
e.s = d
e.r = a
h.w = k
h.t = d
k.w = d
k.t = h
d.w = h
d.t = h
a.s = k
a.r = e
assert h.w.w.t.txt == " | h" | 5 | 9 | 1.8 | 0.45 | 2 | 2.5 | 2 | 2 | 2 | 3 | 2 | 1 | 3 | 0.6 | 3 | 0.333333 | 1 | 3 | 3 | 3 | 2 | 2 | 2 | 1 | true | true |
511 | class A:
def __init__(self, txt: str):
self.y: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: C = None
self.t: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
a = A("a")
b = B("b")
f = C("f")
a.y = f
b.y = f
b.t = a
f.p = a
assert f.p.y.p.txt == " | a" | 3 | 4 | 1.333333 | 0.666667 | 3 | 1 | 2 | 1 | 1.333333 | 3 | 2 | 2 | 2 | 0.666667 | 2 | 0.5 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | true | true |
512 | class A:
def __init__(self, txt: str):
self.q: C = None
self.w: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
c = A("c")
a = B("a")
n = C("n")
c.q = n
c.w = n
a.p = c
n.s = c
assert n.s.w.s.txt == " | c" | 3 | 3 | 1 | 0.5 | 3 | 1 | 2 | 1 | 1.333333 | 3 | 2 | 2 | 2 | 0.666667 | 2 | 0.666667 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | true | true |
513 | class A:
def __init__(self, txt: str):
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.u: A = None
self.txt = txt
f = A("f")
g = B("g")
h = B("h")
b = B("b")
i = B("i")
m = B("m")
n = A("n")
f.x = n
g.p = i
g.u = n
h.p = g
h.u = f
b.p = i
b.u = n
i.p = b
i.u = n
m.p = i
m.u = f
n.x = f
assert f.x.x.x.x.txt == " | f" | 7 | 12 | 1.714286 | 0.285714 | 2 | 3.5 | 2 | 1 | 1.5 | 4 | 3 | 2 | 2 | 0.285714 | 2 | 0.166667 | 3 | 2 | 4 | 2.5 | 1 | 4 | 4 | 1 | true | true |
514 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
l = A("l")
j = B("j")
b = B("b")
m = A("m")
l.p = j
j.o = b
b.o = j
m.p = b
assert m.p.o.o.o.txt == " | j" | 4 | 4 | 1 | 0.333333 | 2 | 2 | 1 | 1 | 1 | 4 | 2 | 2 | 3 | 0.75 | 3 | 0.75 | 2 | 2 | 2 | 2 | 2 | 3 | 3 | 1 | true | true |
515 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.x: A = None
self.v: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
d = A("d")
m = B("m")
n = C("n")
d.r = m
m.q = d
m.x = d
m.v = d
n.p = d
assert m.v.r.q.txt == " | d" | 3 | 3 | 1 | 0.5 | 3 | 1 | 3 | 1 | 1.666667 | 3 | 2 | 1 | 2 | 0.666667 | 3 | 1 | 2 | 2 | 2 | 2 | 3 | 1 | 1 | 2 | true | true |
516 | class A:
def __init__(self, txt: str):
self.x: B = None
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.y: A = None
self.txt = txt
d = A("d")
n = B("n")
l = B("l")
j = B("j")
e = A("e")
d.x = j
d.o = e
n.v = e
n.y = e
l.v = d
l.y = e
j.v = d
j.y = d
e.x = l
e.o = d
assert n.y.o.x.v.txt == " | d" | 5 | 8 | 1.6 | 0.4 | 2 | 2.5 | 2 | 2 | 2 | 4 | 2 | 1 | 4 | 0.8 | 4 | 0.5 | 1 | 2 | 2 | 2 | 4 | 1 | 1 | 1 | true | true |
517 | class A:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: B = None
self.t: C = None
self.y: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
e = A("e")
b = B("b")
c = C("c")
a = D("a")
j = B("j")
e.p = j
b.z = j
b.t = c
b.y = a
c.w = b
a.t = e
j.z = b
j.t = c
j.y = a
assert e.p.z.z.z.txt == " | b" | 5 | 9 | 1.8 | 0.45 | 4 | 1.25 | 3 | 1 | 1.5 | 4 | 2 | 2 | 3 | 0.6 | 3 | 0.333333 | 2 | 2 | 2 | 2 | 2 | 3 | 3 | 1 | true | true |
518 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.p: C = None
self.o: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.t: A = None
self.u: A = None
self.txt = txt
j = A("j")
l = B("l")
h = C("h")
j.q = l
l.r = j
l.o = j
l.p = h
h.x = l
h.t = j
h.u = j
assert j.q.p.t.txt == " | j" | 3 | 5 | 1.666667 | 0.833333 | 3 | 1 | 3 | 1 | 2.333333 | 3 | 2 | 1 | 3 | 1 | 3 | 0.6 | 1 | 3 | 3 | 3 | 3 | 1 | 1 | 1 | true | true |
519 | class A:
def __init__(self, txt: str):
self.o: B = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: C = None
self.s: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
k = A("k")
f = B("f")
i = C("i")
n = C("n")
h = B("h")
k.o = h
k.t = f
f.u = n
f.s = h
i.u = h
n.u = h
h.u = i
h.s = f
assert h.s.u.u.u.txt == " | i" | 5 | 8 | 1.6 | 0.4 | 3 | 1.666667 | 2 | 1 | 1.666667 | 4 | 2 | 1 | 4 | 0.8 | 4 | 0.5 | 1 | 3 | 3 | 3 | 2 | 3 | 3 | 2 | true | true |
520 | class A:
def __init__(self, txt: str):
self.y: C = None
self.t: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.o: A = None
self.r: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
a = A("a")
j = B("j")
e = C("e")
a.y = e
a.t = e
j.t = a
j.o = a
j.r = a
e.q = a
assert j.o.y.q.txt == " | a" | 3 | 3 | 1 | 0.5 | 3 | 1 | 3 | 1 | 2 | 3 | 2 | 1 | 3 | 1 | 3 | 1 | 1 | 2 | 2 | 2 | 3 | 1 | 1 | 1 | true | true |
521 | class A:
def __init__(self, txt: str):
self.v: D = None
self.p: C = None
self.z: C = None
self.y: E = None
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: C = None
self.u: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.r: C = None
self.z: C = None
self.x: E = None
self.w: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: C = None
self.y: A = None
self.z: D = None
self.s: C = None
self.txt = txt
b = A("b")
j = B("j")
f = C("f")
e = D("e")
a = E("a")
k = B("k")
g = B("g")
b.v = e
b.p = f
b.z = f
b.y = a
b.r = j
j.w = f
j.u = e
f.o = a
e.r = f
e.z = f
e.w = f
e.x = a
a.u = f
a.s = f
a.y = b
a.z = e
k.w = f
k.u = e
g.w = f
g.u = e
assert g.u.w.o.txt == " | a" | 7 | 16 | 2.285714 | 0.380952 | 5 | 1.4 | 5 | 1 | 3.2 | 3 | 1 | 1 | 4 | 0.571429 | 3 | 0.1875 | 0 | null | null | null | 3 | 1 | 1 | 1 | true | true |
522 | class A:
def __init__(self, txt: str):
self.s: B = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
d = A("d")
e = B("e")
a = C("a")
d.s = e
d.p = e
e.s = d
a.y = e
assert e.s.p.s.txt == " | d" | 3 | 3 | 1 | 0.5 | 3 | 1 | 2 | 1 | 1.333333 | 3 | 2 | 2 | 2 | 0.666667 | 2 | 0.666667 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | true | true |
523 | class A:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: A = None
self.q: B = None
self.v: B = None
self.txt = txt
f = A("f")
g = B("g")
b = C("b")
c = A("c")
m = C("m")
d = A("d")
l = B("l")
f.x = m
g.s = l
b.x = d
b.q = g
b.v = l
c.x = b
m.x = d
m.q = l
m.v = g
d.x = m
l.s = g
assert d.x.q.s.txt == " | g" | 7 | 11 | 1.571429 | 0.261905 | 3 | 2.333333 | 3 | 1 | 1.666667 | 3 | 1 | 1 | 4 | 0.571429 | 3 | 0.272727 | 0 | null | null | null | 3 | 1 | 1 | 1 | true | true |
524 | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.v: C = None
self.o: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
e = A("e")
g = B("g")
h = C("h")
c = B("c")
b = C("b")
e.w = g
g.x = c
g.v = h
g.o = e
h.z = b
c.x = g
c.v = h
c.o = e
b.z = h
assert e.w.o.w.o.txt == " | e" | 5 | 9 | 1.8 | 0.45 | 3 | 1.666667 | 3 | 1 | 1.666667 | 4 | 3 | 2 | 2 | 0.4 | 2 | 0.222222 | 3 | 2 | 4 | 2.5 | 2 | 2 | 1 | 1 | true | true |
525 | class A:
def __init__(self, txt: str):
self.x: D = None
self.s: F = None
self.w: D = None
self.o: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: C = None
self.w: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: C = None
self.y: C = None
self.q: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: C = None
self.s: A = None
self.v: F = None
self.y: A = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: D = None
self.txt = txt
a = A("a")
c = B("c")
j = C("j")
l = D("l")
i = E("i")
h = F("h")
a.x = l
a.w = l
a.s = h
a.o = h
c.u = j
c.w = a
j.t = i
l.s = j
l.y = j
l.q = h
i.r = j
i.s = a
i.y = a
i.v = h
h.v = l
assert c.u.t.r.t.r.txt == " | j" | 6 | 11 | 1.833333 | 0.366667 | 6 | 1 | 4 | 1 | 2.5 | 5 | 3 | 2 | 3 | 0.5 | 3 | 0.272727 | 3 | 2 | 4 | 2.5 | 3 | 2 | 1 | 1 | true | true |
526 | class A:
def __init__(self, txt: str):
self.u: C = None
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.u: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
n = A("n")
b = B("b")
i = C("i")
k = C("k")
c = A("c")
e = A("e")
n.u = k
n.r = e
b.y = n
b.u = k
i.v = c
k.v = c
c.u = i
c.r = n
e.u = i
e.r = n
assert i.v.r.r.u.v.u.txt == " | i" | 6 | 10 | 1.666667 | 0.333333 | 3 | 2 | 2 | 1 | 1.666667 | 6 | 3 | 2 | 4 | 0.666667 | 5 | 0.5 | 3 | 2 | 6 | 4 | 3 | 2 | 2 | 2 | true | true |
527 | class A:
def __init__(self, txt: str):
self.q: A = None
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.q: A = None
self.txt = txt
e = A("e")
b = B("b")
f = A("f")
e.q = f
e.y = f
b.u = e
b.q = e
f.q = e
f.y = e
assert b.u.y.y.txt == " | e" | 3 | 3 | 1 | 0.5 | 2 | 1.5 | 2 | 2 | 2 | 3 | 2 | 1 | 3 | 1 | 3 | 1 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | true | true |
528 | class A:
def __init__(self, txt: str):
self.w: B = None
self.y: F = None
self.r: E = None
self.s: E = None
self.v: B = None
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: D = None
self.z: F = None
self.u: E = None
self.w: C = None
self.r: A = None
self.t: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: B = None
self.x: B = None
self.p: B = None
self.w: F = None
self.t: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: E = None
self.s: B = None
self.u: F = None
self.q: B = None
self.x: B = None
self.r: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.x: B = None
self.o: F = None
self.r: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.w: F = None
self.o: D = None
self.z: B = None
self.t: A = None
self.y: D = None
self.p: F = None
self.txt = txt
a = A("a")
e = B("e")
i = C("i")
f = D("f")
m = E("m")
n = F("n")
c = F("c")
a.w = e
a.v = e
a.y = c
a.r = m
a.s = m
a.z = i
e.o = f
e.z = n
e.u = m
e.w = i
e.r = a
e.t = a
i.s = e
i.x = e
i.p = e
i.t = e
i.w = n
f.y = m
f.s = e
f.q = e
f.x = e
f.u = c
f.r = n
m.x = e
m.o = c
m.r = n
n.w = c
n.p = c
n.o = f
n.y = f
n.z = e
n.t = a
c.w = n
c.p = n
c.o = f
c.y = f
c.z = e
c.t = a
assert f.y.o.p.p.z.t.txt == " | a" | 7 | 26 | 3.714286 | 0.619048 | 6 | 1.166667 | 6 | 3 | 5.333333 | 6 | 2 | 1 | 6 | 0.857143 | 6 | 0.230769 | 1 | 2 | 2 | 2 | 5 | 2 | 2 | 2 | true | true |
529 | class A:
def __init__(self, txt: str):
self.w: A = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
j = A("j")
m = B("m")
e = A("e")
j.w = e
j.p = m
m.z = e
e.w = j
e.p = m
assert e.w.p.z.txt == " | e" | 3 | 5 | 1.666667 | 0.833333 | 2 | 1.5 | 2 | 1 | 1.5 | 3 | 2 | 1 | 3 | 1 | 3 | 0.6 | 1 | 3 | 3 | 3 | 3 | 1 | 1 | 1 | true | true |
530 | class A:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: C = None
self.q: D = None
self.x: D = None
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: B = None
self.y: B = None
self.z: B = None
self.txt = txt
j = A("j")
d = B("d")
a = C("a")
c = D("c")
j.t = a
d.u = a
d.q = c
d.x = c
d.s = j
a.w = c
c.o = d
c.y = d
c.z = d
assert c.y.x.y.txt == " | d" | 4 | 6 | 1.5 | 0.5 | 4 | 1 | 4 | 1 | 2.25 | 3 | 2 | 2 | 2 | 0.5 | 2 | 0.333333 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | true | true |
531 | class A:
def __init__(self, txt: str):
self.o: B = None
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: C = None
self.y: A = None
self.q: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: C = None
self.q: B = None
self.s: B = None
self.txt = txt
f = A("f")
k = B("k")
a = C("a")
d = C("d")
j = A("j")
f.o = k
f.u = j
k.t = a
k.y = f
k.q = f
a.x = d
a.q = k
a.s = k
d.x = a
d.q = k
d.s = k
j.o = k
j.u = f
assert d.x.s.q.txt == " | f" | 5 | 10 | 2 | 0.5 | 3 | 1.666667 | 3 | 2 | 2.666667 | 3 | 1 | 1 | 4 | 0.8 | 3 | 0.3 | 0 | null | null | null | 3 | 1 | 1 | 1 | true | true |
532 | class A:
def __init__(self, txt: str):
self.o: A = None
self.s: B = None
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: D = None
self.w: A = None
self.x: D = None
self.y: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
h = A("h")
b = B("b")
d = C("d")
c = D("c")
g = A("g")
h.o = g
h.s = b
h.z = d
b.w = d
d.v = c
d.x = c
d.w = g
d.y = g
c.x = b
g.o = h
g.s = b
g.z = d
assert h.s.w.y.z.v.txt == " | c" | 5 | 10 | 2 | 0.5 | 4 | 1.25 | 4 | 1 | 2.25 | 5 | 2 | 1 | 5 | 1 | 5 | 0.5 | 1 | 2 | 2 | 2 | 5 | 1 | 1 | 2 | true | true |
533 | class A:
def __init__(self, txt: str):
self.t: B = None
self.q: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: C = None
self.w: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: C = None
self.o: A = None
self.v: B = None
self.txt = txt
j = A("j")
m = B("m")
n = C("n")
e = D("e")
l = D("l")
j.t = m
j.q = n
m.r = n
m.w = j
n.z = m
e.w = n
e.o = j
e.v = m
l.w = n
l.o = j
l.v = m
assert m.r.z.w.txt == " | j" | 5 | 11 | 2.2 | 0.55 | 4 | 1.25 | 3 | 1 | 2 | 3 | 2 | 1 | 3 | 0.6 | 3 | 0.272727 | 1 | 2 | 2 | 2 | 3 | 1 | 1 | 2 | true | true |
534 | class A:
def __init__(self, txt: str):
self.z: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: C = None
self.txt = txt
l = A("l")
c = B("c")
a = C("a")
h = A("h")
m = A("m")
e = C("e")
k = B("k")
l.z = a
c.v = k
a.q = e
h.z = e
m.z = a
e.q = a
k.v = c
assert a.q.q.q.q.q.q.txt == " | a" | 7 | 7 | 1 | 0.166667 | 3 | 2.333333 | 1 | 1 | 1 | 6 | 4 | 3 | 2 | 0.285714 | 2 | 0.285714 | 5 | 2 | 6 | 3.111111 | 1 | 6 | 6 | 1 | true | true |
535 | class A:
def __init__(self, txt: str):
self.t: A = None
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: A = None
self.p: C = None
self.txt = txt
c = A("c")
f = B("f")
h = C("h")
m = C("m")
g = A("g")
k = B("k")
c.t = g
c.s = h
f.o = h
h.q = c
h.p = m
m.q = c
m.p = h
g.t = c
g.s = h
k.o = m
assert h.q.s.p.p.q.txt == " | c" | 6 | 10 | 1.666667 | 0.333333 | 3 | 2 | 2 | 1 | 1.666667 | 5 | 3 | 2 | 3 | 0.5 | 4 | 0.4 | 3 | 2 | 4 | 3 | 3 | 2 | 2 | 2 | true | true |
536 | class A:
def __init__(self, txt: str):
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: A = None
self.r: A = None
self.txt = txt
h = A("h")
k = B("k")
i = C("i")
h.q = k
k.z = h
i.y = h
i.r = h
assert k.z.q.z.txt == " | h" | 3 | 3 | 1 | 0.5 | 3 | 1 | 2 | 1 | 1.333333 | 3 | 2 | 2 | 2 | 0.666667 | 2 | 0.666667 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | true | true |
537 | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: C = None
self.t: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
b = A("b")
e = B("e")
m = C("m")
b.w = e
e.r = m
e.t = m
m.q = b
assert b.w.t.q.txt == " | b" | 3 | 3 | 1 | 0.5 | 3 | 1 | 2 | 1 | 1.333333 | 3 | 2 | 1 | 3 | 1 | 3 | 1 | 1 | 3 | 3 | 3 | 3 | 1 | 1 | 1 | true | true |
538 | class A:
def __init__(self, txt: str):
self.p: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: A = None
self.u: A = None
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: E = None
self.p: A = None
self.q: F = None
self.s: G = None
self.y: C = None
self.t: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: A = None
self.w: G = None
self.v: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.o: C = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.r: D = None
self.o: D = None
self.q: D = None
self.p: D = None
self.t: E = None
self.txt = txt
n = A("n")
c = B("c")
e = C("e")
i = D("i")
l = E("l")
a = F("a")
k = G("k")
n.p = e
c.q = n
c.u = n
c.w = e
e.y = a
i.v = l
i.p = n
i.q = a
i.s = k
i.y = e
i.t = e
l.r = n
l.w = k
l.v = e
a.o = e
k.r = i
k.o = i
k.q = i
k.p = i
k.t = l
assert k.q.y.y.o.y.txt == " | a" | 7 | 15 | 2.142857 | 0.357143 | 7 | 1 | 6 | 1 | 2.857143 | 5 | 2 | 2 | 4 | 0.571429 | 4 | 0.266667 | 2 | 2 | 2 | 2 | 3 | 3 | 2 | 1 | true | true |
539 | class A:
def __init__(self, txt: str):
self.v: C = None
self.x: D = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: A = None
self.txt = txt
e = A("e")
d = B("d")
c = C("c")
h = D("h")
e.v = c
e.x = h
e.q = d
d.s = e
c.r = d
h.s = e
assert e.x.s.q.s.txt == " | e" | 4 | 6 | 1.5 | 0.5 | 4 | 1 | 3 | 1 | 1.5 | 4 | 3 | 1 | 3 | 0.75 | 4 | 0.666667 | 2 | 2 | 4 | 2.666667 | 3 | 2 | 1 | 2 | true | true |
540 | class A:
def __init__(self, txt: str):
self.y: B = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.z: A = None
self.txt = txt
b = A("b")
a = B("a")
m = B("m")
c = B("c")
g = A("g")
f = A("f")
b.y = c
b.o = c
a.x = m
a.z = b
m.x = a
m.z = f
c.x = m
c.z = f
g.y = m
g.o = c
f.y = m
f.o = c
assert b.y.z.o.z.y.x.txt == " | a" | 6 | 11 | 1.833333 | 0.366667 | 2 | 3 | 2 | 2 | 2 | 6 | 2 | 2 | 5 | 0.833333 | 5 | 0.454545 | 2 | 2 | 2 | 2 | 4 | 2 | 1 | 2 | true | true |
541 | class A:
def __init__(self, txt: str):
self.v: C = None
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: C = None
self.o: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: C = None
self.u: B = None
self.txt = txt
n = A("n")
a = B("a")
d = C("d")
j = C("j")
n.v = d
n.t = a
a.w = j
a.o = d
d.r = j
d.u = a
j.r = d
j.u = a
assert d.u.w.u.txt == " | a" | 4 | 8 | 2 | 0.666667 | 3 | 1.333333 | 2 | 2 | 2 | 3 | 2 | 1 | 3 | 0.75 | 3 | 0.375 | 1 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | true | true |
542 | class A:
def __init__(self, txt: str):
self.p: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: A = None
self.y: B = None
self.t: B = None
self.txt = txt
b = A("b")
a = B("a")
f = C("f")
k = B("k")
b.p = f
a.q = k
a.s = b
f.r = b
f.y = k
f.t = a
k.q = a
k.s = b
assert k.q.q.s.txt == " | b" | 4 | 8 | 2 | 0.666667 | 3 | 1.333333 | 3 | 1 | 2 | 3 | 2 | 1 | 3 | 0.75 | 3 | 0.375 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 2 | true | true |
543 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: A = None
self.x: A = None
self.t: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
f = A("f")
l = B("l")
j = C("j")
k = D("k")
c = B("c")
f.t = l
l.y = c
j.r = f
j.x = f
j.t = k
k.q = f
c.y = l
assert k.q.t.y.txt == " | c" | 5 | 6 | 1.2 | 0.3 | 4 | 1.25 | 3 | 1 | 1.5 | 3 | 1 | 1 | 4 | 0.8 | 3 | 0.5 | 0 | null | null | null | 3 | 1 | 1 | 1 | true | true |
544 | class A:
def __init__(self, txt: str):
self.s: D = None
self.p: D = None
self.o: B = None
self.q: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.z: B = None
self.t: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
n = A("n")
f = B("f")
i = C("i")
c = D("c")
n.s = c
n.p = c
n.o = f
n.q = i
f.u = n
i.z = f
i.t = f
c.s = f
assert i.t.u.q.t.txt == " | f" | 4 | 6 | 1.5 | 0.5 | 4 | 1 | 4 | 1 | 2 | 4 | 2 | 2 | 3 | 0.75 | 3 | 0.5 | 2 | 3 | 3 | 3 | 3 | 2 | 1 | 1 | true | true |
545 | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.s: A = None
self.txt = txt
f = A("f")
k = B("k")
j = A("j")
f.r = j
k.w = j
k.s = f
j.r = f
assert j.r.r.r.txt == " | f" | 3 | 4 | 1.333333 | 0.666667 | 2 | 1.5 | 2 | 1 | 1.5 | 3 | 2 | 2 | 2 | 0.666667 | 2 | 0.5 | 2 | 2 | 2 | 2 | 1 | 3 | 3 | 1 | true | true |
546 | class A:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
n = A("n")
i = B("i")
g = B("g")
n.u = i
i.s = g
g.s = i
assert n.u.s.s.txt == " | i" | 3 | 3 | 1 | 0.5 | 2 | 1.5 | 1 | 1 | 1 | 3 | 2 | 1 | 3 | 1 | 3 | 1 | 1 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | true | true |
547 | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
a = A("a")
f = B("f")
e = A("e")
a.u = e
f.z = a
e.u = a
assert e.u.u.u.txt == " | a" | 3 | 3 | 1 | 0.5 | 2 | 1.5 | 1 | 1 | 1 | 3 | 2 | 2 | 2 | 0.666667 | 2 | 0.666667 | 2 | 2 | 2 | 2 | 1 | 3 | 3 | 1 | true | true |
548 | class A:
def __init__(self, txt: str):
self.r: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: A = None
self.z: A = None
self.o: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: D = None
self.v: D = None
self.x: B = None
self.s: A = None
self.t: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: B = None
self.t: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
i = A("i")
f = B("f")
g = C("g")
h = D("h")
a = E("a")
i.r = a
f.r = i
f.z = i
f.o = g
g.o = h
g.v = h
g.x = f
g.s = i
g.t = i
h.p = f
h.t = a
a.r = f
assert g.s.r.r.r.txt == " | i" | 5 | 9 | 1.8 | 0.45 | 5 | 1 | 5 | 1 | 2.4 | 4 | 2 | 1 | 4 | 0.8 | 4 | 0.444444 | 1 | 3 | 3 | 3 | 2 | 3 | 3 | 1 | true | true |
549 | class A:
def __init__(self, txt: str):
self.s: D = None
self.p: C = None
self.r: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.s: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: B = None
self.txt = txt
b = A("b")
a = B("a")
f = C("f")
j = D("j")
b.s = j
b.p = f
b.r = f
a.u = b
a.s = b
f.v = j
j.y = a
assert b.s.y.s.r.txt == " | f" | 4 | 5 | 1.25 | 0.416667 | 4 | 1 | 3 | 1 | 1.75 | 4 | 2 | 1 | 4 | 1 | 4 | 0.8 | 1 | 3 | 3 | 3 | 3 | 2 | 1 | 2 | true | true |
550 | class A:
def __init__(self, txt: str):
self.w: C = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: E = None
self.w: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: B = None
self.q: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.y: B = None
self.q: A = None
self.u: B = None
self.txt = txt
b = A("b")
g = B("g")
e = C("e")
l = D("l")
d = E("d")
a = A("a")
b.w = e
b.s = g
g.t = e
e.x = d
e.w = g
l.s = g
l.q = g
d.y = g
d.u = g
d.q = b
a.w = e
a.s = g
assert e.x.q.w.x.txt == " | d" | 6 | 10 | 1.666667 | 0.333333 | 5 | 1.2 | 3 | 1 | 2 | 4 | 2 | 2 | 3 | 0.5 | 3 | 0.3 | 2 | 3 | 3 | 3 | 3 | 2 | 1 | 1 | true | true |
551 | class A:
def __init__(self, txt: str):
self.t: B = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: C = None
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: A = None
self.p: B = None
self.txt = txt
h = A("h")
c = B("c")
k = C("k")
h.t = c
h.v = c
c.p = k
c.y = h
k.y = h
k.p = c
assert k.y.t.y.txt == " | h" | 3 | 5 | 1.666667 | 0.833333 | 3 | 1 | 2 | 2 | 2 | 3 | 2 | 1 | 3 | 1 | 3 | 0.6 | 1 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | true | true |
552 | class A:
def __init__(self, txt: str):
self.r: E = None
self.u: C = None
self.p: B = None
self.q: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: E = None
self.r: A = None
self.z: A = None
self.t: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.s: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: C = None
self.u: C = None
self.v: B = None
self.txt = txt
l = A("l")
f = B("f")
e = C("e")
d = D("d")
a = E("a")
j = D("j")
l.r = a
l.q = a
l.u = e
l.p = f
f.s = a
f.t = a
f.r = l
f.z = l
e.u = f
d.s = e
a.s = e
a.u = e
a.v = f
j.s = e
assert l.u.u.z.p.t.txt == " | a" | 6 | 10 | 1.666667 | 0.333333 | 5 | 1.2 | 4 | 1 | 2.6 | 5 | 2 | 1 | 4 | 0.666667 | 5 | 0.5 | 2 | 2 | 3 | 2.5 | 4 | 2 | 2 | 2 | true | true |
553 | class A:
def __init__(self, txt: str):
self.w: C = None
self.p: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
i = A("i")
b = B("b")
k = C("k")
i.w = k
i.p = b
b.u = i
k.v = i
assert b.u.p.u.txt == " | i" | 3 | 4 | 1.333333 | 0.666667 | 3 | 1 | 2 | 1 | 1.333333 | 3 | 2 | 2 | 2 | 0.666667 | 2 | 0.5 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | true | true |
554 | class A:
def __init__(self, txt: str):
self.v: A = None
self.w: A = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.r: A = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: B = None
self.o: B = None
self.q: A = None
self.txt = txt
a = A("a")
c = B("c")
g = C("g")
k = A("k")
l = B("l")
a.v = k
a.w = k
a.o = l
c.x = l
c.r = k
c.y = g
g.w = c
g.o = l
g.q = k
k.v = a
k.w = a
k.o = l
l.x = c
l.r = k
l.y = g
assert l.r.w.o.r.w.txt == " | a" | 5 | 13 | 2.6 | 0.65 | 3 | 1.666667 | 3 | 3 | 3 | 5 | 2 | 2 | 3 | 0.6 | 3 | 0.230769 | 3 | 3 | 3 | 3 | 3 | 2 | 1 | 1 | true | true |
555 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: B = None
self.s: B = None
self.w: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
m = A("m")
i = B("i")
l = C("l")
j = C("j")
g = B("g")
h = A("h")
m.o = i
i.r = g
i.s = g
i.w = j
l.t = g
j.t = g
g.r = i
g.s = i
g.w = j
h.o = g
assert m.o.s.w.txt == " | j" | 6 | 8 | 1.333333 | 0.266667 | 3 | 2 | 3 | 1 | 1.666667 | 3 | 1 | 1 | 4 | 0.666667 | 3 | 0.375 | 0 | null | null | null | 3 | 1 | 1 | 1 | true | true |
556 | class A:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
d = A("d")
e = B("e")
f = B("f")
m = B("m")
l = A("l")
d.v = e
e.v = m
f.v = m
m.v = e
l.v = f
assert m.v.v.v.txt == " | e" | 5 | 5 | 1 | 0.25 | 2 | 2.5 | 1 | 1 | 1 | 3 | 2 | 2 | 2 | 0.4 | 2 | 0.4 | 2 | 2 | 2 | 2 | 1 | 3 | 3 | 1 | true | true |
557 | class A:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: B = None
self.txt = txt
c = A("c")
e = B("e")
l = B("l")
f = B("f")
g = A("g")
c.o = g
e.p = f
l.p = e
f.p = l
g.o = c
assert g.o.o.o.txt == " | c" | 5 | 5 | 1 | 0.25 | 2 | 2.5 | 1 | 1 | 1 | 3 | 2 | 2 | 2 | 0.4 | 2 | 0.4 | 2 | 2 | 2 | 2 | 1 | 3 | 3 | 1 | true | true |
558 | class A:
def __init__(self, txt: str):
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: F = None
self.z: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: G = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: A = None
self.x: A = None
self.s: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: G = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: G = None
self.w: A = None
self.v: E = None
self.p: C = None
self.u: B = None
self.o: D = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.y: A = None
self.p: F = None
self.txt = txt
i = A("i")
e = B("e")
a = C("a")
b = D("b")
k = E("k")
j = F("j")
h = G("h")
i.o = a
e.w = j
e.z = a
a.x = h
b.w = i
b.x = i
b.s = k
k.s = h
j.x = h
j.w = i
j.v = k
j.p = a
j.u = e
j.o = b
h.y = i
h.p = j
assert k.s.p.x.y.o.x.y.txt == " | i" | 7 | 15 | 2.142857 | 0.357143 | 7 | 1 | 6 | 1 | 2.285714 | 7 | 3 | 2 | 5 | 0.714286 | 6 | 0.4 | 3 | 2 | 5 | 3.25 | 5 | 2 | 1 | 2 | true | true |
559 | class A:
def __init__(self, txt: str):
self.y: D = None
self.o: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: B = None
self.r: B = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: C = None
self.y: C = None
self.o: A = None
self.txt = txt
d = A("d")
i = B("i")
h = C("h")
m = D("m")
d.y = m
d.o = h
i.v = d
h.v = i
h.r = i
m.v = h
m.y = h
m.o = d
assert m.v.v.v.txt == " | d" | 4 | 6 | 1.5 | 0.5 | 4 | 1 | 3 | 1 | 2 | 3 | 1 | 1 | 4 | 1 | 3 | 0.5 | 0 | null | null | null | 1 | 3 | 3 | 1 | true | true |
560 | class A:
def __init__(self, txt: str):
self.w: B = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.w: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: C = None
self.y: A = None
self.txt = txt
c = A("c")
e = B("e")
j = C("j")
b = C("b")
c.w = e
c.o = e
e.u = c
e.w = c
j.u = b
j.y = c
b.u = j
b.y = c
assert e.w.w.w.txt == " | c" | 4 | 6 | 1.5 | 0.5 | 3 | 1.333333 | 2 | 2 | 2 | 3 | 2 | 2 | 2 | 0.5 | 2 | 0.333333 | 2 | 2 | 2 | 2 | 1 | 3 | 3 | 1 | true | true |
561 | class A:
def __init__(self, txt: str):
self.o: A = None
self.z: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
c = A("c")
n = B("n")
m = A("m")
c.o = m
c.z = n
n.p = c
m.o = c
m.z = n
assert n.p.z.p.txt == " | c" | 3 | 5 | 1.666667 | 0.833333 | 2 | 1.5 | 2 | 1 | 1.5 | 3 | 2 | 2 | 2 | 0.666667 | 2 | 0.4 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | true | true |
562 | class A:
def __init__(self, txt: str):
self.t: G = None
self.w: F = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: G = None
self.s: F = None
self.w: C = None
self.v: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: E = None
self.q: A = None
self.p: F = None
self.w: F = None
self.r: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: C = None
self.u: C = None
self.o: E = None
self.z: G = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: F = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.r: D = None
self.s: B = None
self.x: C = None
self.y: B = None
self.txt = txt
class G:
def __init__(self, txt: str):
self.u: C = None
self.w: C = None
self.z: D = None
self.t: C = None
self.y: E = None
self.p: E = None
self.txt = txt
i = A("i")
d = B("d")
m = C("m")
e = D("e")
c = E("c")
b = F("b")
j = G("j")
i.t = j
i.w = b
d.t = j
d.s = b
d.w = m
d.v = m
m.v = c
m.q = i
m.r = i
m.p = b
m.w = b
e.y = m
e.u = m
e.o = c
e.z = j
c.u = b
b.r = e
b.s = d
b.y = d
b.x = m
j.u = m
j.w = m
j.t = m
j.z = e
j.y = c
j.p = c
assert m.r.w.x.v.txt == " | c" | 7 | 18 | 2.571429 | 0.428571 | 7 | 1 | 6 | 1 | 3.714286 | 4 | 2 | 1 | 4 | 0.571429 | 4 | 0.222222 | 1 | 3 | 3 | 3 | 4 | 1 | 1 | 2 | true | true |
563 | class A:
def __init__(self, txt: str):
self.u: D = None
self.x: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: E = None
self.t: F = None
self.o: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.u: E = None
self.t: C = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: B = None
self.q: E = None
self.t: B = None
self.y: F = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: D = None
self.s: C = None
self.w: D = None
self.t: B = None
self.x: D = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.s: B = None
self.p: A = None
self.o: D = None
self.txt = txt
g = A("g")
i = B("i")
m = C("m")
l = D("l")
c = E("c")
a = F("a")
k = C("k")
g.u = l
g.x = k
i.u = c
i.t = a
i.o = l
m.u = c
m.t = k
l.u = i
l.t = i
l.q = c
l.y = a
c.u = l
c.w = l
c.x = l
c.s = m
c.t = i
a.s = i
a.p = g
a.o = l
k.u = c
k.t = m
assert l.t.o.y.txt == " | a" | 7 | 18 | 2.571429 | 0.428571 | 6 | 1.166667 | 5 | 2 | 3.166667 | 3 | 2 | 1 | 3 | 0.428571 | 3 | 0.166667 | 1 | 2 | 2 | 2 | 3 | 1 | 1 | 2 | true | true |
564 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.w: A = None
self.txt = txt
a = A("a")
j = B("j")
g = B("g")
a.r = j
j.t = a
j.w = a
g.t = a
g.w = a
assert j.w.r.w.txt == " | a" | 3 | 3 | 1 | 0.5 | 2 | 1.5 | 2 | 1 | 1.5 | 3 | 2 | 2 | 2 | 0.666667 | 2 | 0.666667 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | true | true |
565 | class A:
def __init__(self, txt: str):
self.p: B = None
self.r: F = None
self.w: E = None
self.s: F = None
self.x: C = None
self.o: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: F = None
self.s: F = None
self.r: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.u: F = None
self.o: C = None
self.r: C = None
self.p: B = None
self.v: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
d = A("d")
n = B("n")
g = C("g")
a = D("a")
j = E("j")
c = F("c")
m = A("m")
d.p = n
d.r = c
d.s = c
d.w = j
d.o = j
d.x = g
n.z = c
n.s = c
n.r = j
g.w = j
a.z = j
j.u = c
j.o = g
j.r = g
j.v = g
j.p = n
c.u = d
m.p = n
m.r = c
m.s = c
m.w = j
m.o = j
m.x = g
assert g.w.r.w.u.u.s.u.txt == " | d" | 7 | 16 | 2.285714 | 0.380952 | 6 | 1.166667 | 6 | 1 | 2.833333 | 7 | 2 | 2 | 4 | 0.571429 | 5 | 0.3125 | 4 | 2 | 2 | 2 | 4 | 3 | 2 | 2 | true | true |
566 | class A:
def __init__(self, txt: str):
self.r: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: B = None
self.txt = txt
d = A("d")
e = B("e")
j = B("j")
f = A("f")
d.r = j
e.x = j
j.x = e
f.r = j
assert f.r.x.x.x.txt == " | e" | 4 | 4 | 1 | 0.333333 | 2 | 2 | 1 | 1 | 1 | 4 | 2 | 2 | 3 | 0.75 | 3 | 0.75 | 2 | 2 | 2 | 2 | 2 | 3 | 3 | 1 | true | true |
567 | class A:
def __init__(self, txt: str):
self.o: A = None
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: B = None
self.r: A = None
self.txt = txt
e = A("e")
f = B("f")
a = B("a")
d = A("d")
i = B("i")
h = A("h")
g = B("g")
e.o = h
e.w = i
f.q = a
f.r = h
a.q = g
a.r = d
d.o = e
d.w = f
i.q = f
i.r = d
h.o = d
h.w = f
g.q = f
g.r = h
assert e.o.w.q.r.o.txt == " | e" | 7 | 14 | 2 | 0.333333 | 2 | 3.5 | 2 | 2 | 2 | 5 | 2 | 1 | 5 | 0.714286 | 5 | 0.357143 | 1 | 5 | 5 | 5 | 4 | 2 | 1 | 1 | true | true |
568 | class A:
def __init__(self, txt: str):
self.t: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.txt = txt
f = A("f")
d = B("d")
k = B("k")
l = B("l")
f.t = k
f.q = d
d.p = f
k.p = f
l.p = f
assert d.p.q.p.txt == " | f" | 4 | 5 | 1.25 | 0.416667 | 2 | 2 | 2 | 1 | 1.5 | 3 | 2 | 2 | 2 | 0.5 | 2 | 0.4 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | true | true |
569 | class A:
def __init__(self, txt: str):
self.z: E = None
self.o: F = None
self.w: E = None
self.y: B = None
self.q: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: D = None
self.x: C = None
self.z: D = None
self.o: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.p: F = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.x: B = None
self.z: E = None
self.o: E = None
self.y: A = None
self.s: E = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.q: B = None
self.v: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: A = None
self.u: B = None
self.y: B = None
self.s: C = None
self.x: A = None
self.txt = txt
n = A("n")
l = B("l")
j = C("j")
b = D("b")
i = E("i")
k = F("k")
n.z = i
n.w = i
n.q = i
n.o = k
n.y = l
l.y = b
l.z = b
l.x = j
l.o = n
j.p = k
b.x = l
b.z = i
b.o = i
b.s = i
b.y = n
i.q = l
i.v = l
k.v = n
k.x = n
k.u = l
k.y = l
k.s = j
assert k.y.o.o.v.y.y.txt == " | b" | 6 | 14 | 2.333333 | 0.466667 | 6 | 1 | 5 | 1 | 3.666667 | 6 | 2 | 1 | 4 | 0.666667 | 6 | 0.428571 | 3 | 2 | 4 | 3 | 3 | 3 | 2 | 2 | true | true |
570 | class A:
def __init__(self, txt: str):
self.q: B = None
self.x: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
f = A("f")
b = B("b")
n = A("n")
k = B("k")
e = B("e")
m = A("m")
f.q = k
f.x = n
b.u = n
n.q = b
n.x = f
k.u = m
e.u = f
m.q = b
m.x = f
assert b.u.x.q.u.x.txt == " | f" | 6 | 9 | 1.5 | 0.3 | 2 | 3 | 2 | 1 | 1.5 | 5 | 2 | 1 | 5 | 0.833333 | 5 | 0.555556 | 1 | 3 | 3 | 3 | 3 | 2 | 1 | 1 | true | true |
571 | class A:
def __init__(self, txt: str):
self.o: B = None
self.x: E = None
self.t: B = None
self.y: E = None
self.r: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.x: E = None
self.w: A = None
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: D = None
self.y: A = None
self.z: A = None
self.w: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: C = None
self.s: B = None
self.o: E = None
self.q: A = None
self.z: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: E = None
self.w: C = None
self.u: C = None
self.txt = txt
n = A("n")
a = B("a")
h = C("h")
i = D("i")
d = E("d")
g = C("g")
m = E("m")
n.o = a
n.t = a
n.x = m
n.r = m
n.y = d
a.z = n
a.w = n
a.x = d
a.q = h
h.r = i
h.y = n
h.z = n
h.w = n
i.v = h
i.s = a
i.z = a
i.o = d
i.q = n
d.r = m
d.w = h
d.u = g
g.r = i
g.y = n
g.z = n
g.w = n
m.r = d
m.w = g
m.u = g
assert m.u.z.y.u.r.txt == " | i" | 7 | 19 | 2.714286 | 0.452381 | 5 | 1.4 | 5 | 3 | 4.2 | 5 | 2 | 1 | 5 | 0.714286 | 5 | 0.263158 | 1 | 3 | 3 | 3 | 4 | 2 | 1 | 2 | true | true |
572 | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.w: A = None
self.txt = txt
j = A("j")
m = B("m")
g = A("g")
j.v = g
m.z = j
m.w = g
g.v = j
assert g.v.v.v.txt == " | j" | 3 | 4 | 1.333333 | 0.666667 | 2 | 1.5 | 2 | 1 | 1.5 | 3 | 2 | 2 | 2 | 0.666667 | 2 | 0.5 | 2 | 2 | 2 | 2 | 1 | 3 | 3 | 1 | true | true |
573 | class A:
def __init__(self, txt: str):
self.v: A = None
self.q: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
g = A("g")
e = B("e")
i = C("i")
l = A("l")
k = C("k")
g.v = l
g.q = k
e.q = i
i.s = e
l.v = g
l.q = k
k.s = e
assert g.v.v.v.v.txt == " | g" | 5 | 7 | 1.4 | 0.35 | 3 | 1.666667 | 2 | 1 | 1.333333 | 4 | 3 | 2 | 2 | 0.4 | 2 | 0.285714 | 3 | 2 | 4 | 2.5 | 1 | 4 | 4 | 1 | true | true |
574 | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.r: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: C = None
self.s: A = None
self.y: B = None
self.txt = txt
j = A("j")
c = B("c")
a = C("a")
d = C("d")
j.w = c
c.r = a
a.w = d
a.s = j
a.y = c
d.w = a
d.s = j
d.y = c
assert c.r.y.r.txt == " | a" | 4 | 8 | 2 | 0.666667 | 3 | 1.333333 | 3 | 1 | 1.666667 | 3 | 2 | 2 | 2 | 0.5 | 2 | 0.25 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | true | true |
575 | class A:
def __init__(self, txt: str):
self.v: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: D = None
self.x: D = None
self.t: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: C = None
self.r: C = None
self.u: C = None
self.txt = txt
a = A("a")
n = B("n")
c = C("c")
i = D("i")
a.v = c
n.x = c
c.q = i
c.x = i
c.t = i
i.y = c
i.r = c
i.u = c
assert n.x.q.r.txt == " | c" | 4 | 4 | 1 | 0.333333 | 4 | 1 | 3 | 1 | 2 | 3 | 2 | 1 | 3 | 0.75 | 3 | 0.75 | 1 | 2 | 2 | 2 | 3 | 1 | 1 | 1 | true | true |
576 | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.txt = txt
h = A("h")
c = B("c")
f = B("f")
e = A("e")
n = B("n")
d = B("d")
h.r = e
c.w = h
f.w = e
e.r = h
n.w = e
d.w = h
assert h.r.r.r.r.r.r.txt == " | h" | 6 | 6 | 1 | 0.2 | 2 | 3 | 1 | 1 | 1 | 6 | 4 | 3 | 2 | 0.333333 | 2 | 0.333333 | 5 | 2 | 6 | 3.111111 | 1 | 6 | 6 | 1 | true | true |
577 | class A:
def __init__(self, txt: str):
self.z: B = None
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: A = None
self.s: B = None
self.txt = txt
j = A("j")
i = B("i")
a = B("a")
j.z = a
j.o = a
i.z = j
i.s = a
a.z = j
a.s = i
assert a.z.o.z.txt == " | j" | 3 | 5 | 1.666667 | 0.833333 | 2 | 1.5 | 2 | 2 | 2 | 3 | 2 | 2 | 2 | 0.666667 | 2 | 0.4 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | true | true |
578 | class A:
def __init__(self, txt: str):
self.y: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: A = None
self.z: A = None
self.txt = txt
h = A("h")
k = B("k")
b = A("b")
e = B("e")
d = B("d")
h.y = b
k.y = h
k.z = h
b.y = h
e.y = h
e.z = b
d.y = h
d.z = h
assert h.y.y.y.y.txt == " | h" | 5 | 6 | 1.2 | 0.3 | 2 | 2.5 | 2 | 1 | 1.5 | 4 | 3 | 2 | 2 | 0.4 | 2 | 0.333333 | 3 | 2 | 4 | 2.5 | 1 | 4 | 4 | 1 | true | true |
579 | class A:
def __init__(self, txt: str):
self.r: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.v: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: A = None
self.r: B = None
self.s: B = None
self.txt = txt
i = A("i")
h = B("h")
b = C("b")
a = A("a")
i.r = b
h.v = b
b.o = i
b.r = h
b.s = h
a.r = b
assert a.r.o.r.o.txt == " | i" | 4 | 5 | 1.25 | 0.416667 | 3 | 1.333333 | 3 | 1 | 1.666667 | 4 | 2 | 2 | 3 | 0.75 | 3 | 0.6 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | true | true |
580 | class A:
def __init__(self, txt: str):
self.w: B = None
self.x: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
g = A("g")
n = B("n")
l = B("l")
g.w = n
g.x = l
n.o = g
l.o = g
assert n.o.x.o.txt == " | g" | 3 | 4 | 1.333333 | 0.666667 | 2 | 1.5 | 2 | 1 | 1.5 | 3 | 2 | 1 | 3 | 1 | 3 | 0.75 | 1 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | true | true |
581 | class A:
def __init__(self, txt: str):
self.q: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.s: A = None
self.q: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: A = None
self.t: B = None
self.txt = txt
g = A("g")
a = B("a")
m = C("m")
g.q = m
a.s = g
a.q = g
m.q = g
m.t = a
assert a.q.q.q.txt == " | g" | 3 | 4 | 1.333333 | 0.666667 | 3 | 1 | 2 | 1 | 1.666667 | 3 | 2 | 1 | 3 | 1 | 3 | 0.75 | 1 | 2 | 2 | 2 | 1 | 3 | 3 | 1 | true | true |
582 | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.x: A = None
self.y: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: B = None
self.o: B = None
self.r: B = None
self.txt = txt
c = A("c")
l = B("l")
h = C("h")
a = B("a")
g = A("g")
m = A("m")
c.u = m
l.t = c
l.x = m
l.y = g
h.x = a
h.o = a
h.r = a
a.t = g
a.y = g
a.x = m
g.u = c
m.u = c
assert c.u.u.u.u.txt == " | c" | 6 | 9 | 1.5 | 0.3 | 3 | 2 | 3 | 1 | 2.333333 | 4 | 3 | 2 | 2 | 0.333333 | 2 | 0.222222 | 3 | 2 | 4 | 2.5 | 1 | 4 | 4 | 1 | true | true |
583 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: A = None
self.w: A = None
self.txt = txt
g = A("g")
f = B("f")
m = B("m")
g.o = f
f.p = g
f.w = g
m.p = g
m.w = g
assert f.w.o.p.txt == " | g" | 3 | 3 | 1 | 0.5 | 2 | 1.5 | 2 | 1 | 1.5 | 3 | 2 | 1 | 2 | 0.666667 | 3 | 1 | 2 | 2 | 2 | 2 | 3 | 1 | 1 | 2 | true | true |
584 | class A:
def __init__(self, txt: str):
self.t: E = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.y: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.q: A = None
self.x: B = None
self.t: C = None
self.w: C = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: C = None
self.x: B = None
self.v: F = None
self.t: B = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.v: C = None
self.q: A = None
self.txt = txt
d = A("d")
k = B("k")
a = C("a")
h = D("h")
g = E("g")
f = F("f")
d.t = g
k.x = a
a.y = g
h.q = d
h.x = k
h.t = a
h.w = a
g.r = a
g.x = k
g.t = k
g.v = f
f.v = a
f.q = d
assert h.x.x.y.txt == " | g" | 6 | 11 | 1.833333 | 0.366667 | 6 | 1 | 4 | 1 | 2.166667 | 3 | 1 | 1 | 4 | 0.666667 | 3 | 0.272727 | 0 | null | null | null | 2 | 2 | 2 | 1 | true | true |
585 | class A:
def __init__(self, txt: str):
self.r: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: A = None
self.v: B = None
self.txt = txt
a = A("a")
n = B("n")
l = A("l")
c = A("c")
f = B("f")
a.r = c
n.x = c
n.v = f
l.r = a
c.r = a
f.x = l
f.v = n
assert c.r.r.r.r.r.txt == " | a" | 5 | 7 | 1.4 | 0.35 | 2 | 2.5 | 2 | 1 | 1.5 | 5 | 3 | 3 | 2 | 0.4 | 2 | 0.285714 | 4 | 2 | 4 | 2.666667 | 1 | 5 | 5 | 1 | true | true |
586 | class A:
def __init__(self, txt: str):
self.z: B = None
self.y: B = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: C = None
self.o: C = None
self.t: C = None
self.u: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
i = A("i")
j = B("j")
b = C("b")
k = D("k")
d = C("d")
i.z = j
i.y = j
i.s = j
j.y = b
j.o = d
j.t = d
j.u = k
b.q = i
k.o = i
d.q = i
assert j.u.o.z.o.q.txt == " | i" | 5 | 7 | 1.4 | 0.35 | 4 | 1.25 | 4 | 1 | 2.25 | 5 | 2 | 1 | 4 | 0.8 | 5 | 0.714286 | 2 | 3 | 3 | 3 | 4 | 2 | 1 | 2 | true | true |
587 | class A:
def __init__(self, txt: str):
self.y: D = None
self.v: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: D = None
self.s: E = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: E = None
self.p: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.z: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.o: A = None
self.x: B = None
self.txt = txt
e = A("e")
m = B("m")
h = C("h")
l = D("l")
k = E("k")
e.y = l
e.v = m
m.p = l
m.s = k
h.v = k
h.p = e
l.z = e
k.o = e
k.x = m
assert l.z.y.z.txt == " | e" | 5 | 9 | 1.8 | 0.45 | 5 | 1 | 2 | 1 | 1.8 | 3 | 2 | 2 | 2 | 0.4 | 2 | 0.222222 | 2 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | true | true |
588 | class A:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.u: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
i = A("i")
l = B("l")
f = C("f")
g = A("g")
i.w = l
l.t = i
l.u = f
f.o = l
g.w = l
assert i.w.u.o.t.txt == " | i" | 4 | 5 | 1.25 | 0.416667 | 3 | 1.333333 | 2 | 1 | 1.333333 | 4 | 2 | 1 | 3 | 0.75 | 4 | 0.8 | 2 | 2 | 4 | 3 | 4 | 1 | 1 | 2 | true | true |
589 | class A:
def __init__(self, txt: str):
self.r: E = None
self.q: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.z: E = None
self.u: E = None
self.p: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: E = None
self.o: E = None
self.p: A = None
self.u: E = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.y: A = None
self.u: A = None
self.v: A = None
self.x: C = None
self.r: A = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.r: C = None
self.v: B = None
self.s: C = None
self.txt = txt
j = A("j")
c = B("c")
l = C("l")
k = D("k")
b = E("b")
h = E("h")
j.r = h
j.q = k
c.z = b
c.u = h
c.p = j
l.x = b
l.o = b
l.u = b
l.p = j
k.y = j
k.u = j
k.v = j
k.r = j
k.x = l
b.r = l
b.s = l
b.v = c
h.r = l
h.s = l
h.v = c
assert h.v.u.s.p.q.r.txt == " | j" | 6 | 13 | 2.166667 | 0.433333 | 5 | 1.2 | 5 | 2 | 3.4 | 6 | 2 | 1 | 5 | 0.833333 | 6 | 0.461538 | 2 | 2 | 2 | 2 | 6 | 1 | 1 | 2 | true | true |
590 | class A:
def __init__(self, txt: str):
self.y: C = None
self.s: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.q: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
l = A("l")
a = B("a")
b = C("b")
l.y = b
l.s = a
a.q = b
b.v = l
assert a.q.v.y.txt == " | b" | 3 | 4 | 1.333333 | 0.666667 | 3 | 1 | 2 | 1 | 1.333333 | 3 | 2 | 1 | 3 | 1 | 3 | 0.75 | 1 | 2 | 2 | 2 | 3 | 1 | 1 | 1 | true | true |
591 | class A:
def __init__(self, txt: str):
self.o: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: A = None
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: B = None
self.v: A = None
self.x: B = None
self.txt = txt
e = A("e")
h = B("h")
g = C("g")
i = A("i")
e.o = h
h.w = i
h.y = g
g.q = h
g.x = h
g.v = e
i.o = h
assert e.o.y.v.txt == " | e" | 4 | 6 | 1.5 | 0.5 | 3 | 1.333333 | 3 | 1 | 2 | 3 | 2 | 1 | 3 | 0.75 | 3 | 0.5 | 1 | 3 | 3 | 3 | 3 | 1 | 1 | 1 | true | true |
592 | class A:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.o: A = None
self.txt = txt
i = A("i")
n = B("n")
l = B("l")
i.t = l
n.o = i
l.o = i
assert n.o.t.o.txt == " | i" | 3 | 3 | 1 | 0.5 | 2 | 1.5 | 1 | 1 | 1 | 3 | 2 | 1 | 3 | 1 | 3 | 1 | 1 | 2 | 2 | 2 | 2 | 2 | 1 | 1 | true | true |
593 | class A:
def __init__(self, txt: str):
self.u: C = None
self.p: C = None
self.w: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: A = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.q: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.u: C = None
self.t: B = None
self.o: A = None
self.txt = txt
n = A("n")
m = B("m")
c = C("c")
e = D("e")
n.u = c
n.p = c
n.w = e
m.t = n
c.q = e
e.u = c
e.t = m
e.o = n
assert c.q.t.t.w.txt == " | e" | 4 | 7 | 1.75 | 0.583333 | 4 | 1 | 3 | 1 | 2 | 4 | 2 | 1 | 4 | 1 | 4 | 0.571429 | 1 | 3 | 3 | 3 | 3 | 2 | 2 | 1 | true | true |
594 | class A:
def __init__(self, txt: str):
self.r: F = None
self.s: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.w: C = None
self.r: D = None
self.x: D = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.o: D = None
self.r: D = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.v: B = None
self.txt = txt
class E:
def __init__(self, txt: str):
self.s: C = None
self.txt = txt
class F:
def __init__(self, txt: str):
self.x: E = None
self.txt = txt
g = A("g")
f = B("f")
h = C("h")
a = D("a")
e = E("e")
n = F("n")
j = D("j")
g.r = n
g.s = h
f.w = h
f.r = j
f.x = a
h.o = j
h.r = a
a.v = f
e.s = h
n.x = e
j.v = f
assert f.r.v.x.v.txt == " | f" | 7 | 11 | 1.571429 | 0.261905 | 6 | 1.166667 | 3 | 1 | 1.666667 | 4 | 3 | 1 | 3 | 0.428571 | 4 | 0.363636 | 2 | 2 | 4 | 2.666667 | 3 | 2 | 1 | 2 | true | true |
595 | class A:
def __init__(self, txt: str):
self.v: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.s: B = None
self.txt = txt
e = A("e")
b = B("b")
k = C("k")
m = A("m")
e.v = m
b.y = k
k.s = b
m.v = e
assert b.y.s.y.s.txt == " | b" | 4 | 4 | 1 | 0.333333 | 3 | 1.333333 | 1 | 1 | 1 | 4 | 3 | 2 | 2 | 0.5 | 2 | 0.5 | 3 | 2 | 4 | 2.5 | 2 | 2 | 1 | 1 | true | true |
596 | class A:
def __init__(self, txt: str):
self.p: D = None
self.x: C = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.p: D = None
self.s: B = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.r: D = None
self.x: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.p: C = None
self.y: D = None
self.s: B = None
self.txt = txt
d = A("d")
h = B("h")
f = C("f")
i = D("i")
e = B("e")
l = D("l")
d.p = l
d.x = f
h.p = i
h.s = e
f.r = l
f.x = d
i.p = f
i.y = l
i.s = h
e.p = l
e.s = h
l.p = f
l.y = i
l.s = e
assert f.x.x.x.p.y.txt == " | i" | 6 | 14 | 2.333333 | 0.466667 | 4 | 1.5 | 3 | 2 | 2.25 | 5 | 2 | 2 | 4 | 0.666667 | 4 | 0.285714 | 2 | 2 | 2 | 2 | 3 | 3 | 3 | 2 | true | true |
597 | class A:
def __init__(self, txt: str):
self.z: B = None
self.s: B = None
self.q: B = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.x: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.w: B = None
self.y: C = None
self.txt = txt
f = A("f")
l = B("l")
h = C("h")
j = A("j")
k = C("k")
a = B("a")
f.z = a
f.s = l
f.q = l
l.x = h
h.w = a
h.y = k
j.z = l
j.q = l
j.s = a
k.w = l
k.y = h
a.x = h
assert k.y.y.y.txt == " | h" | 6 | 10 | 1.666667 | 0.333333 | 3 | 2 | 3 | 1 | 2 | 3 | 2 | 2 | 2 | 0.333333 | 2 | 0.2 | 2 | 2 | 2 | 2 | 1 | 3 | 3 | 1 | true | true |
598 | class A:
def __init__(self, txt: str):
self.p: D = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.y: C = None
self.txt = txt
class C:
def __init__(self, txt: str):
self.x: D = None
self.s: B = None
self.q: A = None
self.r: A = None
self.txt = txt
class D:
def __init__(self, txt: str):
self.w: B = None
self.txt = txt
a = A("a")
i = B("i")
k = C("k")
h = D("h")
m = C("m")
a.p = h
i.y = m
k.x = h
k.s = i
k.q = a
k.r = a
h.w = i
m.x = h
m.s = i
m.q = a
m.r = a
assert k.r.p.w.y.r.txt == " | a" | 5 | 9 | 1.8 | 0.45 | 4 | 1.25 | 4 | 1 | 1.75 | 5 | 2 | 1 | 5 | 1 | 5 | 0.555556 | 1 | 4 | 4 | 4 | 4 | 2 | 1 | 1 | true | true |
599 | class A:
def __init__(self, txt: str):
self.u: A = None
self.txt = txt
class B:
def __init__(self, txt: str):
self.t: B = None
self.txt = txt
i = A("i")
j = B("j")
f = B("f")
d = B("d")
m = A("m")
c = B("c")
i.u = m
j.t = d
f.t = c
d.t = f
m.u = i
c.t = f
assert d.t.t.t.txt == " | f" | 6 | 6 | 1 | 0.2 | 2 | 3 | 1 | 1 | 1 | 3 | 2 | 1 | 3 | 0.5 | 3 | 0.5 | 1 | 2 | 2 | 2 | 1 | 3 | 3 | 1 | true | true |
End of preview. Expand
in Dataset Viewer.
README.md exists but content is empty.
Use the Edit dataset card button to edit it.
- Downloads last month
- 8