pub fn read_init_solution<R: Read>(
    reader: BufReader<R>,
    problem: Arc<Problem>,
    random: Arc<dyn Random + Send + Sync>
) -> Result<Solution, GenericError>
Expand description

Reads initial solution from a buffer. NOTE: Solution feasibility is not checked.