Last change
on this file since 10159 was
7128,
checked in by epitzer, 13 years ago
|
#1696 Integrate fitness landscape analysis plugins from Heureka! repository.
|
File size:
280 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using HeuristicLab.Core;
|
---|
6 |
|
---|
7 | namespace HeuristicLab.Problems.NK {
|
---|
8 |
|
---|
9 | public interface IWeightsInitializer : INamedItem {
|
---|
10 | IEnumerable<double> GetWeights(int nComponents);
|
---|
11 | }
|
---|
12 |
|
---|
13 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.