Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ParameterBinding/HeuristicLab.Core/3.3/Interfaces/IItemBinding.cs @ 4787

Last change on this file since 4787 was 4787, checked in by abeham, 13 years ago

#1258

  • Updated binding according to discussion
  • Added small test case for the TSP
File size: 252 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Common;
6
7namespace HeuristicLab.Core {
8  public interface IItemBinding : IDeepCloneable {
9    void Bind();
10    void Unbind();
11  }
12}
Note: See TracBrowser for help on using the repository browser.