Changes between Initial Version and Version 1 of Documentation/Howto/ImplementANewVRPEvaluator
- Timestamp:
- 01/28/14 13:37:47 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Documentation/Howto/ImplementANewVRPEvaluator
v1 v1 1 work in progress ... 2 3 = How to … implement a new VRP Evaluator = 4 5 == Goals == 6 7 One way to implement a new VPR variant is by extending the {{{VRPEvaluator}}}. This is a suitable possibility if the VRP variant does not require additional model data or decision variables. A {{{VRPEvaluator}}} is responsible for evaluating a solution candidate which contains a set of tours. By extending the {{{VRPEvaluator}}}, it is possible to interpret the available information of a specific problem instance differently. 8 9 After this tutorial you will be able to implement your own VRP variants that only require extending the {{{VRPEvaluator}}}. You will also have a basic understanding of the concepts and architecture concerning the {{{VRPEvaluator}}} and related components. 10 11 12