AForge.Genetic.GEPChromosome.ToString C# (CSharp) 메소드

ToString() 공개 메소드

Get string representation of the chromosome by providing its expression in reverse polish notation (postfix notation).
public ToString ( ) : string
리턴 string
		public override string ToString( )
		{
			// return string representation of the chromosomes tree
			return GetTree( ).ToString( );
		}