Click or drag to resize
Accord.NET (logo)

GPTreeNodeToString Method

Get string representation of the node.

Namespace:  Accord.Genetic
Assembly:  Accord.Genetic (in Accord.Genetic.dll) Version: 3.8.0
Syntax
public override string ToString()
Request Example View Source

Return Value

Type: String
Returns string representation of the node.
Remarks

String representation of the node lists all node's children and then the node itself. Such node's string representations equals to its reverse polish notation.

For example, if nodes value is '+' and its children are '3' and '5', then nodes string representation is "3 5 +".

See Also