mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-25 06:31:02 +00:00
More fuzzing progress
This commit is contained in:
@@ -24,12 +24,18 @@ namespace fuzzer
|
||||
|
||||
void access_input(const std::function<input_handler>& handler);
|
||||
|
||||
input_entry get_highest_scorer();
|
||||
double get_average_score();
|
||||
|
||||
private:
|
||||
std::mutex mutex_{};
|
||||
random_generator rng{};
|
||||
|
||||
std::vector<input_entry> top_scorer_{};
|
||||
input_score lowest_score{0};
|
||||
size_t lowest_scorer{0};
|
||||
|
||||
input_entry highest_scorer_{};
|
||||
|
||||
std::vector<uint8_t> generate_next_input();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user