(x int)
| 118 | } |
| 119 | |
| 120 | func (builder *builder) constantValue(x int) (constraint.Element, bool) { |
| 121 | i := builder.varConstId[x] |
| 122 | if i == 0 { |
| 123 | return constraint.Element{}, false |
| 124 | } |
| 125 | return builder.constValues[i], true |
| 126 | } |
| 127 | |
| 128 | func (builder *builder) addVarId() int { |
| 129 | builder.maxVar += 1 |
no outgoing calls
no test coverage detected