Last change
on this file was
13257,
checked in by pfleck, 9 years ago
|
#1674
- Adapted ItemName from ExternalEvaluationProblem and MultiObjectiveExternalEvaluationProblem.
- Removed/Fixed the support script code in from the comments.
|
File size:
604 bytes
|
Line | |
---|
1 | using HeuristicLab.Core;
|
---|
2 | using HeuristicLab.Optimization;
|
---|
3 |
|
---|
4 | namespace HeuristicLab.Problems.ExternalEvaluation {
|
---|
5 | public class CompiledMultiObjectiveOptimizationSupport : CompiledOptimizationSupport, IMultiObjectiveOptimizationSupport {
|
---|
6 |
|
---|
7 | public void Analyze(Individual[] individuals, double[][] qualities, ResultCollection results, IRandom random) {
|
---|
8 | // Use vars.yourVariable to access variables in the variable store i.e. yourVariable
|
---|
9 | // Write or update results given the range of vectors and resulting qualities
|
---|
10 | }
|
---|
11 |
|
---|
12 | // Implement further classes and methods
|
---|
13 | }
|
---|
14 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.