Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ichiriac/HeuristicLab.Algorithms.DifferentialEvolution/Plugin.cs @ 13619

Last change on this file since 13619 was 13619, checked in by ichiriac, 8 years ago

Create basic structure for Differential Evolution Plugin

Created basic structure for the plugin and added all needed references.

File size: 501 bytes
RevLine 
[13619]1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6
7using HeuristicLab.PluginInfrastructure;
8
9namespace HeuristicLab.Algorithms.DifferentialEvolution
10{
11    [Plugin("HeuristicLab.Algorithms.DifferentialEvolution", "Provides an implementation of DE algorithm", "3.3.9.0")]
12    [PluginFile("HeuristicLab.Algorithms.DifferentialEvolution.dll", PluginFileType.Assembly)]
13    public class Plugin : PluginBase
14    {
15    }
16}
Note: See TracBrowser for help on using the repository browser.