Free cookie consent management tool by TermsFeed Policy Generator

source: branches/FitnessLandscapeAnalysis/HeuristicLab.Problems.NKNew/WeightInitializers/IWeightsInitializer.cs @ 12547

Last change on this file since 12547 was 12483, checked in by ascheibe, 10 years ago

#2306 added a new project for NK landscapes and ported it to BasicProblem

File size: 280 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Core;
6
7namespace 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.