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

This concept is used when we want to limit the number of executions of certain instructions (for example, divisions and multiplications in bigfield start to bog down the fuzzer) More...

#include <fuzzer.hpp>

Concept definition

template<typename T>
concept InstructionWeightsEnabled = requires {
typename T::InstructionWeights;
T::InstructionWeights::_LIMIT;
}
This concept is used when we want to limit the number of executions of certain instructions (for exam...
Definition: fuzzer.hpp:185

Detailed Description

This concept is used when we want to limit the number of executions of certain instructions (for example, divisions and multiplications in bigfield start to bog down the fuzzer)

Template Parameters
T