00001 using System; 00002 using System.Collections.Generic; 00003 using System.Linq; 00004 using System.Text; 00005 00006 namespace GEP.Core.Float 00007 { 00011 [Serializable] 00012 public class ConstantMutation 00013 { 00017 internal int _indexInAlphabet; 00021 internal float _newValue; 00022 00029 public ConstantMutation(int indexInAlphabet, float newValue) 00030 { 00031 _indexInAlphabet = indexInAlphabet; 00032 _newValue = newValue; 00033 } 00034 } 00035 }