MCPcopy Create free account
hub / github.com/FuzzAnything/PromptFuzz / is_converge

Method is_converge

src/fuzzer.rs:169–178  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

167 }
168
169 pub fn is_converge(&self) -> bool {
170 if get_config().fuzz_converge_round == 0 {
171 return false;
172 }
173 if self.quiet_round >= get_config().fuzz_converge_round
174 {
175 return true;
176 }
177 false
178 }
179
180 pub fn is_stuck(&self, len: usize) -> bool {
181 len == 0

Callers 1

fuzz_loopMethod · 0.80

Calls 1

get_configFunction · 0.85

Tested by

no test coverage detected