Skip to content

Commit

Permalink
solution
Browse files Browse the repository at this point in the history
  • Loading branch information
fulmicoton committed Jun 21, 2024
1 parent 11dfdbc commit a16a437
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -643,9 +643,15 @@ pub fn build_physical_indexing_plan(
convert_physical_plan_to_solution(previous_plan, &id_to_ord_map, &mut previous_solution);
}

println!("------------------------");
println!("problem={:?}", problem);
println!("previous_solution={:?}", previous_solution);

// Compute the new scheduling solution using a heuristic.
let new_solution = scheduling_logic::solve(problem, previous_solution);

println!("solution={:?}", new_solution);

// Convert the new scheduling solution back to a physical plan.
let new_physical_plan = convert_scheduling_solution_to_physical_plan(
&new_solution,
Expand Down

0 comments on commit a16a437

Please sign in to comment.