To debug a Tic Tac Toe AI I wrote, I need to visualize the tree of the game it builds for the mini max algorithm. To do this, I use jgrapht and its GraphMLExporter. It generates me a file that I can open with GraphViz.
As Tic Tac Toe has many turn combinations, the tree is very wide but has a low height. This squeezes it and when I zoom in in the png output, I can only see pixels.
So here is my question: How can I make GraphViz use the full screen height? It does not matter to me how wide the graph is, I just want to set something like a minimum height. Thanks for helping, vat