Ask Your Question

lucv's profile - activity

2023-06-19 03:39:39 +0100 received badge  Popular Question (source)
2021-03-23 09:52:23 +0100 marked best answer Generate certain number of planar graphs with graphs.planar_graphs?

I want to use graphs.planar_graphs (which is based on plantri) to generate 1000 planar graphs of a certain size (e.g. 50 vertices), i.e. I want to use the iterator exactly 1000 times and not until it has created all possible solutions.

How can I do this with graphs.planar_graphs, since this is an iterator that just creates all possible planar graphs on 50 vertices (which is a lot more than I need and also too computationally expensive)?

2021-03-23 09:52:23 +0100 received badge  Scholar (source)
2021-03-23 09:52:22 +0100 received badge  Supporter (source)
2021-03-22 18:23:42 +0100 received badge  Student (source)
2021-03-22 18:05:40 +0100 asked a question Generate certain number of planar graphs with graphs.planar_graphs?

Generate certain number of planar graphs with graphs.planar_graphs? I want to use graphs.planar_graphs (which is based o