A BIpartite Graph Sampler
A tool to generate regular bipartite graphs. A bipartite graph is a set of variables and constraints (named like this because of SAT problems) together with a set of edges. Right now, only regular graphs can be sampled. That is, graphs with the same degree for all variables and the same for all constraints.
```rust use bigs::Sampler; use rand::thread_rng;
let sampler = Sampler::builder() .numberofvariables(10) .numberofconstraints(6) .variabledegree(3) .constraintdegree(5) .build();
let graph = sampler.samplewith(&mut threadrng()); let othergraph = sampler.samplewith(&mut thread_rng()); ```