Commit 42b6e542 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent c78dc0d3
......@@ -150,7 +150,7 @@ func (S *RangeSet) AddRange(r Range) {
// done
}
// Del removes Range r from the set.
// DelRange removes Range r from the set.
func (S *RangeSet) DelRange(r Range) {
if traceRangeSet {
fmt.Printf("\n\nDelRange:\n")
......@@ -162,7 +162,6 @@ func (S *RangeSet) DelRange(r Range) {
S.verify()
defer S.verify()
return // XXX temp
panic("TODO") // XXX
}
......
......@@ -110,13 +110,13 @@ func TestRangeSet(t *testing.T) {
for _, tt := range testv {
U := tt.A.Union(tt.B)
// D := tt.A.Difference(tt.B)
D := tt.A.Difference(tt.B)
if !U.Equal(tt.Union) {
t.Errorf("Union:\n A: %s\n B: %s\n ->u: %s\n okU: %s\n", tt.A, tt.B, U, tt.Union)
}
// if !D.Equal(tt.Difference) {
// t.Errorf("Difference:\n A: %s\n B: %s\n ->d: %s\n okD: %s\n", tt.A, tt.B, D, tt.Difference)
// }
if !D.Equal(tt.Difference) {
t.Errorf("Difference:\n A: %s\n B: %s\n ->d: %s\n okD: %s\n", tt.A, tt.B, D, tt.Difference)
}
}
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment