Whether field is pre-assigned
| 121 | } |
| 122 | /// Whether field is pre-assigned |
| 123 | bool assigned(int i, int j) const { |
| 124 | return info(i,j) > 0; |
| 125 | } |
| 126 | /// Return value at position \a i and \j |
| 127 | int val(int i, int j) const { |
| 128 | assert(assigned(i,j)); |