Add an implementation of the delta debugging algorithm.
authorDaniel Dunbar <daniel@zuster.org>
Thu, 3 Dec 2009 11:12:42 +0000 (11:12 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Thu, 3 Dec 2009 11:12:42 +0000 (11:12 +0000)
commita6d5e40e25e6b4fc856fa5cd10a59b8fdf51d9a7
treef0bbfb4de8dde6ca47ba3744656321460257549d
parent44299c9507dc25279741b28ade2d2efa0b8506ad
Add an implementation of the delta debugging algorithm.
 - This is a pretty slow / memory intensive implementation, and I will likely
   change it to an iterative model, but it works.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@90447 91177308-0d34-0410-b5e6-96231b3b80d8
include/llvm/ADT/DeltaAlgorithm.h [new file with mode: 0644]
lib/Support/CMakeLists.txt
lib/Support/DeltaAlgorithm.cpp [new file with mode: 0644]
unittests/ADT/DeltaAlgorithmTest.cpp [new file with mode: 0644]