File: connect_test.go

package info (click to toggle)
golang-github-yourbasic-graph 1.0.5-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 400 kB
  • sloc: makefile: 2
file content (84 lines) | stat: -rw-r--r-- 2,416 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
package build

import (
	"fmt"
	"testing"
)

func TestConnect(t *testing.T) {
	cost := func(v, w int) int64 { return int64(10*v + w) }
	res := Grid(1, 2).AddCostFunc(cost).Connect(1, Grid(1, 2).AddCostFunc(cost))
	exp := "3 [(0 1):1 (1 0):10 (1 2):1 (2 1):10]"
	if mess, diff := diff(res.String(), exp); diff {
		t.Errorf("Connect %s", mess)
	}
	Consistent("Connect1", t, res)

	res = Grid(1, 2).AddCostFunc(cost).Connect(0, Grid(1, 2).AddCostFunc(cost))
	exp = "3 [(0 1):1 (0 2):1 (1 0):10 (2 0):10]"
	if mess, diff := diff(res.String(), exp); diff {
		t.Errorf("Connect %s", mess)
	}
	Consistent("Connect2", t, res)

	res = Kn(1).Connect(0, Grid(1, 2).AddCostFunc(cost))
	exp = "2 [(0 1):1 (1 0):10]"
	if mess, diff := diff(res.String(), exp); diff {
		t.Errorf("Connect %s", mess)
	}
	Consistent("Connect3", t, res)

	res = Grid(1, 2).AddCostFunc(cost).Connect(1, Kn(1))
	exp = "2 [(0 1):1 (1 0):10]"
	if mess, diff := diff(res.String(), exp); diff {
		t.Errorf("Connect %s", mess)
	}
	Consistent("Connect4", t, res)

	res = Grid(1, 2).AddCostFunc(cost).Connect(0, Kn(1))
	exp = "2 [(0 1):1 (1 0):10]"
	if mess, diff := diff(res.String(), exp); diff {
		t.Errorf("Connect %s", mess)
	}
	Consistent("Connect5", t, res)

	res = Kn(0).Connect(0, Kn(1))
	if res != nil {
		t.Errorf("Connect should produce nil connecting a null graph.")
	}
	Consistent("Connect6", t, res)

	res = Kn(1).Connect(0, Kn(0))
	if res != nil {
		t.Errorf("Connect should produce nil connecting a null graph.")
	}
	Consistent("Connect7", t, res)

	res = Cycle(3).Connect(0, Cycle(3)).Connect(0, Cycle(3))
	exp = "7 [{0 1} {0 2} {0 3} {0 4} {0 5} {0 6} {1 2} {3 4} {5 6}]"
	if mess, diff := diff(res.String(), exp); diff {
		t.Errorf("Connect %s", mess)
	}
	Consistent("Connect8", t, res)

	for m := 0; m < 5; m++ {
		for n := 0; n < 5; n++ {
			res = Kn(m).Connect(m-1, Kn(n))
			mess := fmt.Sprintf("Kn(%d).Connect(Kn(%d))", m, n)
			Consistent(mess, t, res)

			res = Grid(m, n).AddCostFunc(cost).Connect(m-1, Kn(n))
			mess = fmt.Sprintf("Grid(%d,%d).Connect(Kn(%d))", m, n, n)
			Consistent(mess, t, res)
			res = Kn(n).Connect(n-1, Grid(m, n).AddCostFunc(cost))
			mess = fmt.Sprintf("Kn(%d).Connect(Grid(%d,%d))", n, m, n)
			Consistent(mess, t, res)

			km := Kn(m).Keep(func(v, w int) bool {
				return v != m-1 && w != m-1
			}).AddCostFunc(cost)
			res = km.Connect(0, Kn(n).AddCostFunc(cost))
			Consistent(mess, t, res)
		}
	}
}