Initialize
| 351 | public: |
| 352 | /// Initialize |
| 353 | CommonOptions(const JobShopOptions& opt) { |
| 354 | clone = false; |
| 355 | threads = opt.threads(); |
| 356 | c_d = opt.c_d(); |
| 357 | a_d = opt.a_d(); |
| 358 | nogoods_limit = opt.nogoods() ? opt.nogoods_limit() : 0U; |
| 359 | } |
| 360 | }; |
| 361 | |
| 362 | /// Model for probing |
nothing calls this directly
no test coverage detected