Skip to content

Commit

Permalink
Adds patches for new synthetic case studies
Browse files Browse the repository at this point in the history
  • Loading branch information
vulder committed Aug 29, 2023
1 parent e9d3210 commit 6370faf
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
8 changes: 8 additions & 0 deletions SynthDAVirtualInheritance/regression_1.info
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
description: "Patch that adds a regression that only affects sorting-based searchers"
include_revisions:
revision_range:
start: 96848fadf1c490e8c7f0b4b5230fcce29b41ca6e
end: master
path: regression_1.patch
project_name: FeaturePerfCSCollection
shortname: regress_sorting
13 changes: 13 additions & 0 deletions SynthDAVirtualInheritance/regression_1.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
diff --git a/projects/SynthDAVirtualInheritance/main.cpp b/projects/SynthDAVirtualInheritance/main.cpp
index 90d60c3..bd05566 100644
--- a/projects/SynthDAVirtualInheritance/main.cpp
+++ b/projects/SynthDAVirtualInheritance/main.cpp
@@ -71,7 +71,7 @@ public:
int High = LocalData.size() - 1;

while (Low < High) {
- fp_util::sleep_for_millisecs(100);
+ fp_util::sleep_for_millisecs(200);
if (LocalData[Low] + LocalData[High] == TargetSum) {
return {
std::tuple<uint32_t, uint32_t>{LocalData[Low], LocalData[High]}};

0 comments on commit 6370faf

Please sign in to comment.