summaryrefslogtreecommitdiff
path: root/src/counterexample.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/counterexample.h')
-rw-r--r--src/counterexample.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/counterexample.h b/src/counterexample.h
index c251d319..735828fa 100644
--- a/src/counterexample.h
+++ b/src/counterexample.h
@@ -20,11 +20,17 @@
#ifndef COUNTEREXAMPLE_H
# define COUNTEREXAMPLE_H
-# include "state-item.h"
+# include "state.h"
+// Init/deinit this module.
void counterexample_init (void);
void counterexample_free (void);
-void counterexample_report_state (const state *s, FILE *out, const char *prefix);
+// Print the counterexamples for the conflicts of state S.
+//
+// Used both for the warnings on the terminal (OUT = stderr, PREFIX =
+// ""), and for the reports (OUT != stderr, PREFIX != "").
+void
+counterexample_report_state (const state *s, FILE *out, const char *prefix);
#endif /* COUNTEREXAMPLE_H */