Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PushGP/HeuristicLab.Algorithms.PushGP/HeuristicLab.Algorithms.PushGP/OpCodeExtensions.cs @ 14328

Last change on this file since 14328 was 14328, checked in by pkimmesw, 8 years ago

#2665 Set .NET version to 4.5, C# version to 5.0, Added expression templates and factory

File size: 275 bytes
Line 
1using System;
2using System.Linq;
3
4namespace HeuristicLab.Algorithms.PushGP
5{
6    public static class OpCodeExtensions
7    {
8        public const byte Min = 0;
9        public readonly static byte Max = Enum.GetValues(typeof(OpCode)).Cast<byte>().Last();
10    }
11}
Note: See TracBrowser for help on using the repository browser.