barretenberg
Loading...
Searching...
No Matches
PostProcessingEnabled Concept Reference

The fuzzer can use a postprocessing function that is specific to the type being fuzzed. More...

#include <fuzzer.hpp>

Concept definition

template<typename T, typename Composer, typename Context>
concept PostProcessingEnabled = requires(Composer composer, Context context) {
{
T::postProcess(&composer, context)
} -> std::same_as<bool>;
}
Definition: standard_composer.hpp:14
The fuzzer can use a postprocessing function that is specific to the type being fuzzed.
Definition: fuzzer.hpp:172

Detailed Description

The fuzzer can use a postprocessing function that is specific to the type being fuzzed.

Template Parameters
TType being tested
Composer
ContextThe class containing the full context