Small fixes, guide additions, tweaks

This commit is contained in:
Jacob Palecki 2021-07-03 14:52:54 -07:00
parent a8eec2c939
commit 44c20e12d5
4 changed files with 15 additions and 6 deletions

View file

@ -83,8 +83,8 @@ namespace rawaccel {
error("offset can not be negative");
}
if (args.cap <= 0) {
error("cap"" must be positive");
if (args.cap < 0) {
error("cap"" must not be negative");
}
if (args.growth_rate <= 0 ||