Skip to content

Commit

Permalink
cargo fmt fix
Browse files Browse the repository at this point in the history
  • Loading branch information
JeroenGar committed Apr 3, 2024
1 parent e93e115 commit e551494
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jagua-rs/src/entities/problems/strip_packing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ use crate::entities::instances::strip_packing::SPInstance;
use crate::entities::layout::Layout;
use crate::entities::placed_item::PlacedItemUID;
use crate::entities::placing_option::PlacingOption;
use crate::entities::problems::problem_generic::LayoutIndex;
use crate::entities::problems::problem_generic::private::ProblemGenericPrivate;
use crate::entities::problems::problem_generic::LayoutIndex;
use crate::entities::problems::problem_generic::ProblemGeneric;
use crate::entities::solution::Solution;
use crate::fsize;
Expand Down Expand Up @@ -261,7 +261,7 @@ impl ProblemGeneric for SPProblem {
&self.missing_item_qtys
}

fn template_layout_indices_with_stock(&self) -> impl Iterator<Item=LayoutIndex> {
fn template_layout_indices_with_stock(&self) -> impl Iterator<Item = LayoutIndex> {
iter::empty::<LayoutIndex>()
}

Expand Down

0 comments on commit e551494

Please sign in to comment.