Barretenberg
The ZK-SNARK library at the core of Aztec
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:227

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

Definition at line 227 of file fuzzer.hpp.