Last change
on this file since 14697 was
13619,
checked in by ichiriac, 9 years ago
|
Create basic structure for Differential Evolution Plugin
Created basic structure for the plugin and added all needed references.
|
File size:
501 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using System.Threading.Tasks;
|
---|
6 |
|
---|
7 | using HeuristicLab.PluginInfrastructure;
|
---|
8 |
|
---|
9 | namespace 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.