Free cookie consent management tool by TermsFeed Policy Generator

source: branches/FitnessLandscapeAnalysis/HeuristicLab.Problems.NKNew/InteractionInitializers/IInteractionInitializer.cs @ 12483

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

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

File size: 355 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Core;
6using HeuristicLab.Data;
7
8namespace HeuristicLab.Problems.NK {
9  public interface IInteractionInitializer : INamedItem {
10    BoolMatrix InitializeInterations(int length, int nComponents, int nInteractions, IRandom random);
11  }
12}
Note: See TracBrowser for help on using the repository browser.