| // Copyright 2022 The Go Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style |
| // license that can be found in the LICENSE file. |
| // For each D, vec[D] has length D+1, |
| // and the label for (D, k) is stored in vec[D][(D+k)/2]. |
| // Temporary checking DO NOT COMMIT true TO PRODUCTION CODE |
| // debugging. check that the (d,k) pair is valid |
| // (that is, -d<=k<=d and d+k even) |
| if k >= -D && k <= D && (D+k)%2 == 0 { |
| panic(fmt.Sprintf("out of range, d=%d,k=%d", D, k)) |
| func (t *label) set(D, k, x int) { |
| t.vec = append(t.vec, nil) |
| t.vec[D] = make([]int, D+1) |
| t.vec[D][(D+k)/2] = x // known that D+k is even |
| func (t *label) get(d, k int) int { |
| return int(t.vec[d][(d+k)/2]) |
| func newtriang(limit int) label { |
| // Preallocate if limit is not large. |
| return label{vec: make([][]int, limit)} |