Moved the documents to jpf-core/wiki
[jpf-core.git] / docs / jpf-core / ErrorTraceGenerator.md
diff --git a/docs/jpf-core/ErrorTraceGenerator.md b/docs/jpf-core/ErrorTraceGenerator.md
deleted file mode 100644 (file)
index 0edf13c..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-## Error Trace Generator ##\r
-\r
-This is a listener to output a lightweight error trace. It prints the instructions at POR boundaries or points where there are multiple choices. An example is shown below.  \r
-\r
-~~~~~~~~\r
-\r
-====================### Lightweight Error Trace ###=======================\r
-\r
-\r
-Length of Error Trace: 35\r
---------------------------------------------------- Thread1\r
- Event.wait_for_event(oldclassic.java:79)\r
-      wait();\r
---------------------------------------------------- Thread2\r
- SecondTask.run(oldclassic.java:129)\r
-      if (count == event2.count) { // <race> ditto\r
---------------------------------------------------- Thread2\r
- SecondTask.run(oldclassic.java:127)\r
-      event1.signal_event();       // updates event1.count\r
---------------------------------------------------- Thread2\r
- SecondTask.run(oldclassic.java:133)\r
-      count = event2.count;        // <race> ditto\r
---------------------------------------------------- Thread1\r
- FirstTask.run(oldclassic.java:103)\r
-        event1.wait_for_event();\r
---------------------------------------------------- Thread1\r
-\r
-~~~~~~~~\r
-\r
-Configuration: **+listener=gov.nasa.jpf.listener.ErrorTraceGenerator**\r
-\r
-Note the Error trace generator does not have the same memory bottlenecks as **report.console.property_violation=trace** that stores every bytecode instruction executed along the path from the start of the program to the error state. The error trace generator dynamically recreates the counterexample by tracing back to the start from the error state. The head of the error trace (list shown in the example) represents the last instruction in the error trace while the tail represents the first instruction.  
\ No newline at end of file