Return machine of step \a j in job \a i
| 108 | } |
| 109 | /// Return machine of step \a j in job \a i |
| 110 | int machine(int i, int j) const { |
| 111 | return data[2 + i*machines()*2 + j*2]; |
| 112 | } |
| 113 | /// Return duration of step \a j in job \a i |
| 114 | int duration(int i, int j) const { |
| 115 | return data[2 + i*machines()*2 + j*2 + 1]; |
no outgoing calls
no test coverage detected