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:212

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 212 of file fuzzer.hpp.