Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions waveform-analysis/src/waveform_analysis/signal_extractor.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,7 @@ def compare_signals(self, other: Self, signals: list[str], timing_sensitive: boo
return False
else:
mismatch = True
if early_out:
return True
else:
return mismatch
return not mismatch

def liberal_security_filter(self) -> list[str]:
all_signals = [var.full_name(self.waveform.hierarchy)
Expand Down