Luca Wilke
Luca Wilke
In the `verify_sets(std::vector& sets, uint64_t threshold, size_t rounds)` functions the outermost loop should be `for (auto& s: sets) {...}` instead of `or (auto s: sets) {...}`. Otherwise the `s.erase(...)` call...
This is my attempt at solving #18 . Feedback is welcome. (I used the `golang.org/x/tools/cmd/goyacc` version of goyacc)
In the attached snippet from `bibtex.go:274` log.Fatalf is called to handle an undefined situation. This gives the caller no chance to recover. I think this should be at least replaced...