AForge.Genetic.GEPChromosome.ToString C# (CSharp) Method

ToString() public method

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