Is there any software for finding all graphs (edges and nodes) with girth(the girth of a graph is the length of a shortest cycle contained in the graph) three and diameter at least three?
The eccentricity of a vertex v is the greatest distance between v and any other vertex.
The diameter d of a graph is the maximum eccentricity of any vertex in the graph.
You can use nAUTy and tools for this:
This is using geng to generating all connected graphs on 7 vertices and filtering using countg all those with girth 3 (-g3) and diameter at least 3 (-Z3:).
To give an idea of how many there are, here is a table for n = 5 to 10:
So there are only 426 graphs on 7 vertices out of 853 total, but 7,589,873 on 10 vertices.