NewHintForId is not implemented and will panic if called.
(id solver.HintID, nbOutputs int, inputs ...frontend.Variable)
| 202 | |
| 203 | // NewHintForId is not implemented and will panic if called. |
| 204 | func (builder *builder) NewHintForId(id solver.HintID, nbOutputs int, inputs ...frontend.Variable) ([]frontend.Variable, error) { |
| 205 | return builder.newHintForId(id, nbOutputs, inputs) |
| 206 | } |
| 207 | |
| 208 | func (builder *builder) newHintForId(id solver.HintID, nbOutputs int, inputs []frontend.Variable) ([]frontend.Variable, error) { |
| 209 | hintInputs := builder.toVariableIds(inputs...) |
nothing calls this directly
no test coverage detected