FitType
Description
Possibilities of solution fitting.
Values of this enumeration:
- FirstFit - An algorithm stops as soon, as first fit is found.
- BestFit - Best possible solution is being looked for.
namespace FitType
{
enum Type
{
FirstFit,
BestFit
};
}
