MCPcopy Create free account
hub / github.com/Rust-API/Rust-API-Bypass-Checker / is_false

Method is_false

src/analysis/numerical/linear_constraint.rs:625–636  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

623 }
624
625 pub fn is_false(&self) -> bool {
626 if self.csts.is_empty() {
627 false
628 } else {
629 for cst in &self.csts {
630 if !cst.is_contradiction() {
631 return false;
632 }
633 }
634 true
635 }
636 }
637
638 pub fn is_true(&self) -> bool {
639 self.csts.is_empty()

Callers 1

add_constraintsMethod · 0.80

Calls 2

is_contradictionMethod · 0.80
is_emptyMethod · 0.45

Tested by

no test coverage detected