I wanted to see some isomorphisms of the Petersen graph; I took the code from here, and run with several layouts from here, but the result with tree layout is not isomorphic to the Petersen graph:
\usetikzlibrary{graphs, graphdrawing, quotes}
\usetikzlibrary{shapes.geometric}
\usetikzlibrary{graphs.standard}
\usegdlibrary{trees, layered}
\usegdlibrary{force,circular,trees}
\begin{document}
\tikz \graph[tree layout, nodes={empty nodes, draw, circle, inner sep=0.45mm, fill=black}, clockwise]
{ subgraph I_n [V={0,1,2,3,4}] --
subgraph C_n [V={5,6,7,8,9},radius=1.25cm];
{[cycle] 0,2,4,1,3} };
\end{document}


tree layout. – Qrrbrbirlbel Aug 19 '22 at 07:30