Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Robocode/HeuristicLab.Problems.Robocode/Plugin.cs @ 11134

Last change on this file since 11134 was 9565, checked in by melkaref, 11 years ago

Robocode Plugin code without Mutation Operators

File size: 820 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6using HeuristicLab.PluginInfrastructure;
7
8namespace HeuristicLab.Problems.Robocode
9{
10    [Plugin("HeuristicLab.Problems.Robocode", "The Robocode problem for genetic programming.", "1.1")]
11    [PluginFile("HeuristicLab.Problems.Robocode-1.1.dll", PluginFileType.Assembly)]
12    [PluginDependency("HeuristicLab.Data", "3.3")]
13    [PluginDependency("HeuristicLab.Core", "3.3")]
14    [PluginDependency("HeuristicLab.Common", "3.3")]
15    [PluginDependency("HeuristicLab.Encodings.SymbolicExpressionTreeEncoding", "3.4")]
16    [PluginDependency("HeuristicLab.Parameters", "3.3")]
17    [PluginDependency("HeuristicLab.Persistence", "3.3")]
18    public class Plugin : PluginBase
19    {
20    }
21}
Note: See TracBrowser for help on using the repository browser.