almostworstfit

package
v0.0.0-...-80c8c53 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 9, 2022 License: MIT Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AlmostWorstFit

type AlmostWorstFit struct{}

AlmostWorstFit is an optimizer that implements the almost-worst-fit algorithm expanded to solve the bin packing problem with heterogeneous bins and items with different sizes that depend on the bin choice. The first attempt is to assign the item to the second emptiest bin. If it doesn't fit, then the item is placed in the emptiest bin. If the item can't be assigned to both of them, it is put into any other buckets in heap array order. That means that if the item doesn't fit the two emptiest bins, the third emptiest one is checked, and then the consecutive ones in heap order.

func (AlmostWorstFit) Optimize

func (a AlmostWorstFit) Optimize(ctx context.Context, data *data.Data) (*optimizer.Result, error)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL