BAPCtools
BAPCtools copied to clipboard
Improve `validation.h`
- should write to
judgemessage.txt
andteammessage.txt
, instead ofstderr
. Reservestderr
for crashes and possiblyjudge_error
s.
Less obviously good changes:
- Validator object could be global -> I actually think a local variable is nicer.
- streams can be global and opened by Init function -> hidden global initialization is somewhat confusing actually. You'd still need to know the names of the variables.
- possibly move
main
to the header and make the cc only implement a single function -> same as above.