Free cookie consent management tool by TermsFeed Policy Generator

Changes between Version 2 and Version 3 of Documentation/Howto/Implement a Basic Algorithm


Ignore:
Timestamp:
03/21/12 13:53:19 (13 years ago)
Author:
ascheibe
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/Howto/Implement a Basic Algorithm

    v2 v3  
    2020Before we can actually implement our algorithm, we have to first add references to some plugins that we need. Add the following references (just as you added the reference to Plugin Infrastructure):
    2121
    22 * HeuristicLab.Collections-3.3
    23 * HeuristicLab.Common-3.3
    24 * HeuristicLab.Core-3.3
    25 * HeuristicLab.Data-3.3
    26 * HeuristicLab.Operators-3.3
    27 * HeuristicLab.Optimization-3.3
    28 * HeuristicLab.Optimization.Operators-3.3
    29 * HeuristicLab.Parameters-3.3
    30 * HeuristicLab.Persistence-3.3
    31 * HeuristicLab.Random-3.3
     22* !HeuristicLab.Collections-3.3
     23* !HeuristicLab.Common-3.3
     24* !HeuristicLab.Core-3.3
     25* !HeuristicLab.Data-3.3
     26* !HeuristicLab.Operators-3.3
     27* !HeuristicLab.Optimization-3.3
     28* !HeuristicLab.Optimization.Operators-3.3
     29* !HeuristicLab.Parameters-3.3
     30* !HeuristicLab.Persistence-3.3
     31* !HeuristicLab.Random-3.3
    3232
    3333We also need to add these references to our Plugin.cs file to tell the Plugin Infrastructure which plugins we need: