File: bipartite.test

package info (click to toggle)
tcllib 1.20%2Bdfsg-1
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 68,064 kB
  • sloc: tcl: 216,842; ansic: 14,250; sh: 2,846; xml: 1,766; yacc: 1,145; pascal: 881; makefile: 107; perl: 84; f90: 84; python: 33; ruby: 13; php: 11
file content (147 lines) | stat: -rw-r--r-- 4,790 bytes parent folder | download | duplicates (8)
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
# -*- tcl -*-
# Graph ops tests - Minimum spanning tree/forest per Bipartite
# Copyright (c) 2008-2010 Andreas Kupries <andreas_kupries@users.sourceforge.net>
# All rights reserved.
# RCS: @(#) $Id: bipartite.test,v 1.4 2010/09/09 21:48:27 andreas_kupries Exp $

# Syntax: struct::graph::op::isBipartite? G ?partitionvar?

# -------------------------------------------------------------------------
# Wrong # args: Missing, Too many

test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-bipartite-1.0 {bipartite, wrong args, missing} -body {
    struct::graph::op::isBipartite?
} -returnCodes error -result [tcltest::wrongNumArgs struct::graph::op::isBipartite? {g ?bipartitionvar?} 0]

test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-bipartite-1.1 {bipartite, wrong args, too many} -body {
    struct::graph::op::isBipartite? g x y
} -returnCodes error -result [tcltest::tooManyArgs struct::graph::op::isBipartite? {g ?bipartitionvar?}]

# -------------------------------------------------------------------------
# Logical arguments checks and failures

# -------------------------------------------------------------------------
# Ok arguments.

test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-bipartite-3.0 {bipartite, empty graph} -setup {
    SETUP
} -body {
    struct::graph::op::isBipartite? mygraph
} -cleanup {
    mygraph destroy
} -result 1

test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-bipartite-3.1 {bipartite, nodes, no arcs} -setup {
    SETUP
    mygraph node insert 0 1 2 3 4 5
} -body {
    struct::graph::op::isBipartite? mygraph
} -cleanup {
    mygraph destroy
} -result 1

test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-bipartite-3.2 {bipartite, no} -setup {
    SETUP_D
} -body {
    struct::graph::op::isBipartite? mygraph
} -cleanup {
    mygraph destroy
} -result 0

test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-bipartite-3.3 {bipartite, yes} -setup {
    SETUP_E
} -body {
    struct::graph::op::isBipartite? mygraph
} -cleanup {
    mygraph destroy
} -result 1

test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-bipartite-3.4 {bipartite, yes} -setup {
    SETUP_F
} -body {
    struct::graph::op::isBipartite? mygraph
} -cleanup {
    mygraph destroy
} -result 1

test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-bipartite-3.5 {bipartite, yes} -setup {
    SETUP_G
} -body {
    struct::graph::op::isBipartite? mygraph
} -cleanup {
    mygraph destroy
} -result 1

test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-bipartite-3.6 {bipartite, yes} -setup {
    SETUP_C
} -body {
    struct::graph::op::isBipartite? mygraph
} -cleanup {
    mygraph destroy
} -result 1

# -------------------------------------------------------------------------
# Ok arguments, get the partitions.

test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-bipartite-4.0 {bipartite, empty graph} -setup {
    SETUP
    set result {}
} -body {
    struct::graph::op::isBipartite? mygraph result
    set result
} -cleanup {
    mygraph destroy
} -result {{} {}}

test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-bipartite-4.1 {bipartite, nodes, no arcs} -setup {
    SETUP
    mygraph node insert 0 1 2 3 4 5
    set result {}
} -body {
    struct::graph::op::isBipartite? mygraph result
    bicanon $result
} -cleanup {
    mygraph destroy
} -result {{} {0 1 2 3 4 5}}

test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-bipartite-4.3 {bipartite, yes} -setup {
    SETUP_E
    set result {}
} -body {
    struct::graph::op::isBipartite? mygraph result
    bicanon $result
} -cleanup {
    mygraph destroy
} -result {{1b 2b 3b 4b 5b 6b 7b 8b} {1w 2w 3w 4w 5w 6w 7w 8w}}

test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-bipartite-4.4 {bipartite, yes} -setup {
    SETUP_F
    set result {}
} -body {
    struct::graph::op::isBipartite? mygraph result
    bicanon $result
} -cleanup {
    mygraph destroy
} -result {{1b 2b 3b 4b} {1w 2w 3w 4w}}

test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-bipartite-4.5 {bipartite, yes} -setup {
    SETUP_G
    set result {}
} -body {
    struct::graph::op::isBipartite? mygraph result
    bicanon $result
} -cleanup {
    mygraph destroy
} -result {{1b 2b 3b 4b 5b} {1w 2w 3w 4w 5w}}

test graphop-t${treeimpl}-g${impl}-s${setimpl}-st${stkimpl}-q${queimpl}-bipartite-4.6 {bipartite, yes} -setup {
    SETUP_C
    set result {}
} -body {
    struct::graph::op::isBipartite? mygraph result
    bicanon $result
} -cleanup {
    mygraph destroy
} -result {{A D F} {B C E}}

# ---------------------------------------------------