Uses of Class
io.github.skenvy.Collatz.TreeGraphNode
-
-
Uses of Collatz.TreeGraphNode in io.github.skenvy
Methods in io.github.skenvy with parameters of type Collatz.TreeGraphNode Modifier and Type Method Description boolean
Collatz.TreeGraphNode. subTreeEquals(Collatz.TreeGraphNode tgn)
A much stricter equality check than theequals(Object obj)
override.Constructors in io.github.skenvy with parameters of type Collatz.TreeGraphNode Constructor Description TreeGraph(Collatz.TreeGraphNode root)
Create a new TreeGraph by directly passing it the root node.TreeGraphNode(BigInteger nodeValue, Collatz.SequenceState terminalSequenceState, Collatz.TreeGraphNode preNDivPNode, Collatz.TreeGraphNode preANplusBNode)
Create an instance of TreeGraphNode by directly passing it the values required to instantiate, intended to be used in testing by manually creating trees in reverse, by passing expected child nodes to their parents until the entire expected tree is created.
-