8

I'm playing with simple implementations of algorithms to find minimum vertex cover/maximum cardinality matching in bipartite graphs. However, I seem to have trouble googling for some test data sets that I could use to verify, if I got that one right.

It's easy to devise simple examples that one could check on paper, but I'd hope for some larger/tricky benchmarks.

I'm asking because I do remember from my research that you can find such benchmark data for machine learning problems, for example.

Any pointers?

1 Answers1

3

There's benchmark code for max cardinality matching: you could use that and even randomly generated bipartite graphs to establish ground truth and test out your algorithms.

Suresh
  • 146
  • 2