iamaya2 / MatHH

A Matlab-based Hyper-Heuristic framework
MIT License
6 stars 1 forks source link

Implement 0/1 KP #52

Closed iamaya2 closed 11 months ago

iamaya2 commented 2 years ago
iamaya2 commented 2 years ago

Pending: Create disp method for KPItem and KPKnapsack classes.

iamaya2 commented 1 year ago

For handling features:

iamaya2 commented 11 months ago

Issue #52: Implement 0/1 KP

iamaya2 commented 11 months ago
  • [ ] Define method for evaluating features within instance class. The method scans all keys within instance object and request handles from domain class. Then, evaluates each handle. If no inputs are given, invoke default features method.

Changed default behavior to use all the features that the object contains instead of all features from the domain

iamaya2 commented 11 months ago
  • [ ] Define method within instance class for redefining the feature IDs to use.

Deprecated. Instead, custom feature IDs can be given when creating the KPInstance object. By default, all features from the domain are used.

iamaya2 commented 11 months ago
  • [ ] Develop KP class (extends problemDomain)

Contains:

Pending: