| 3687 | } |
| 3688 | |
| 3689 | void initialiseUserScaleData(const HighsOptions& options, |
| 3690 | HighsUserScaleData& user_scale_data) { |
| 3691 | user_scale_data.initialise(options.user_objective_scale, |
| 3692 | options.user_bound_scale, options.infinite_cost, |
| 3693 | options.infinite_bound, options.small_matrix_value, |
| 3694 | options.large_matrix_value); |
| 3695 | } |
| 3696 | |
| 3697 | void HighsUserScaleData::initialise(const HighsInt& user_objective_scale_, |
| 3698 | const HighsInt& user_bound_scale_, |
no test coverage detected