DeltaAlgorithm.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. #pragma once
  2. #ifdef __GNUC__
  3. #pragma GCC diagnostic push
  4. #pragma GCC diagnostic ignored "-Wunused-parameter"
  5. #endif
  6. //===- DeltaAlgorithm.h - A Set Minimization Algorithm ---------*- C++ -*--===//
  7. //
  8. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  9. // See https://llvm.org/LICENSE.txt for license information.
  10. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  11. //===----------------------------------------------------------------------===//
  12. #ifndef LLVM_ADT_DELTAALGORITHM_H
  13. #define LLVM_ADT_DELTAALGORITHM_H
  14. #include <set>
  15. #include <vector>
  16. namespace llvm {
  17. /// DeltaAlgorithm - Implements the delta debugging algorithm (A. Zeller '99)
  18. /// for minimizing arbitrary sets using a predicate function.
  19. ///
  20. /// The result of the algorithm is a subset of the input change set which is
  21. /// guaranteed to satisfy the predicate, assuming that the input set did. For
  22. /// well formed predicates, the result set is guaranteed to be such that
  23. /// removing any single element would falsify the predicate.
  24. ///
  25. /// For best results the predicate function *should* (but need not) satisfy
  26. /// certain properties, in particular:
  27. /// (1) The predicate should return false on an empty set and true on the full
  28. /// set.
  29. /// (2) If the predicate returns true for a set of changes, it should return
  30. /// true for all supersets of that set.
  31. ///
  32. /// It is not an error to provide a predicate that does not satisfy these
  33. /// requirements, and the algorithm will generally produce reasonable
  34. /// results. However, it may run substantially more tests than with a good
  35. /// predicate.
  36. class DeltaAlgorithm {
  37. public:
  38. using change_ty = unsigned;
  39. // FIXME: Use a decent data structure.
  40. using changeset_ty = std::set<change_ty>;
  41. using changesetlist_ty = std::vector<changeset_ty>;
  42. private:
  43. /// Cache of failed test results. Successful test results are never cached
  44. /// since we always reduce following a success.
  45. std::set<changeset_ty> FailedTestsCache;
  46. /// GetTestResult - Get the test result for the \p Changes from the
  47. /// cache, executing the test if necessary.
  48. ///
  49. /// \param Changes - The change set to test.
  50. /// \return - The test result.
  51. bool GetTestResult(const changeset_ty &Changes);
  52. /// Split - Partition a set of changes \p S into one or two subsets.
  53. void Split(const changeset_ty &S, changesetlist_ty &Res);
  54. /// Delta - Minimize a set of \p Changes which has been partitioned into
  55. /// smaller sets, by attempting to remove individual subsets.
  56. changeset_ty Delta(const changeset_ty &Changes,
  57. const changesetlist_ty &Sets);
  58. /// Search - Search for a subset (or subsets) in \p Sets which can be
  59. /// removed from \p Changes while still satisfying the predicate.
  60. ///
  61. /// \param Res - On success, a subset of Changes which satisfies the
  62. /// predicate.
  63. /// \return - True on success.
  64. bool Search(const changeset_ty &Changes, const changesetlist_ty &Sets,
  65. changeset_ty &Res);
  66. protected:
  67. /// UpdatedSearchState - Callback used when the search state changes.
  68. virtual void UpdatedSearchState(const changeset_ty &Changes,
  69. const changesetlist_ty &Sets) {}
  70. /// ExecuteOneTest - Execute a single test predicate on the change set \p S.
  71. virtual bool ExecuteOneTest(const changeset_ty &S) = 0;
  72. DeltaAlgorithm& operator=(const DeltaAlgorithm&) = default;
  73. public:
  74. virtual ~DeltaAlgorithm();
  75. /// Run - Minimize the set \p Changes by executing \see ExecuteOneTest() on
  76. /// subsets of changes and returning the smallest set which still satisfies
  77. /// the test predicate.
  78. changeset_ty Run(const changeset_ty &Changes);
  79. };
  80. } // end namespace llvm
  81. #endif // LLVM_ADT_DELTAALGORITHM_H
  82. #ifdef __GNUC__
  83. #pragma GCC diagnostic pop
  84. #endif