What software to use to generate an image of a giant graph?

I have a program in c++, made with the representation of graphs with adjacency list, however, there are more than 2 million nodes in it. Is there any software that has a text format, that I can generate from my program, and import into that software to generate an image?

 0
Author: Lucas Vieira, 2018-05-29

1 answers

Make your software generate an Archiv in the default graphviz. It is a "de facto" standard and several software will be able to open it.

Some links that might be useful:

General:

C++ + Graphviz:

 1
Author: j4x, 2018-05-30 13:08:53