Last change
on this file since 12467 was
7128,
checked in by epitzer, 13 years ago
|
#1696 Integrate fitness landscape analysis plugins from Heureka! repository.
|
File size:
355 bytes
|
Rev | Line | |
---|
[7128] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Linq;
|
---|
| 4 | using System.Text;
|
---|
| 5 | using HeuristicLab.Core;
|
---|
| 6 | using HeuristicLab.Data;
|
---|
| 7 |
|
---|
| 8 | namespace 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.