Skip to content

Latest commit

 

History

History
18 lines (10 loc) · 731 Bytes

README.md

File metadata and controls

18 lines (10 loc) · 731 Bytes

Delta Debugging algorithm in OCaml

======== This project is an implementation of Delta Debugging algorithm in OCaml based on the research work from the paper Andreas Zeller and Ralf Hildebrandt. 2002. Simplifying and Isolating Failure-Inducing Input. IEEE Trans. Softw. Eng. 28, 2 (February 2002), 183-200. DOI=10.1109/32.988498

HOW TO RUN

  • Have the OCaml runtime installed on your platform. For the details, please refer to: http://caml.inria.fr/

  • Run the program with the following command:

    $> ocaml delta_debugging.ml

NOTE: The output of this program is NOT self-explained. A further read on the reference paper would help to make sense of the implementation and outcome.