Skip to content

Add witness output to goto checker [blocks: 3583] #3579

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
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
6 changes: 6 additions & 0 deletions src/goto-checker/incremental_goto_checker.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,12 @@ class incremental_goto_checkert
/// Builds and returns the counterexample
virtual goto_tracet build_error_trace() const = 0;

// Outputs an error witness in GraphML format (see `graphml_witnesst`)
virtual void output_error_witness(const goto_tracet &) = 0;

// Outputs a proof in GraphML format (see `graphml_witnesst`)
virtual void output_proof() = 0;

protected:
incremental_goto_checkert(const optionst &, ui_message_handlert &);

Expand Down