Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add simple regression for SynthFeatureLargeConfigSpace #17

Merged
merged 3 commits into from
Nov 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions SynthFeatureLargeConfigSpace/regression_1.info
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
description: "Inserts regression into the sleep time computation"
include_revisions:
revision_range:
start: 6863c78c242a8e67b09d2947bd83ef09ceff4be4
end: master
path: regression_1.patch
project_name: FeaturePerfCSCollection
shortname: reg_long_sleep
tags:
- regression
boehmseb marked this conversation as resolved.
Show resolved Hide resolved
- perf_prec
13 changes: 13 additions & 0 deletions SynthFeatureLargeConfigSpace/regression_1.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
diff --git a/projects/SynthFeatureLargeConfigSpace/main.cpp b/projects/SynthFeatureLargeConfigSpace/main.cpp
index fbf505d..766484f 100644
--- a/projects/SynthFeatureLargeConfigSpace/main.cpp
+++ b/projects/SynthFeatureLargeConfigSpace/main.cpp
@@ -51,7 +51,7 @@ int main(int argc, char *argv[]) {

if (F5) {
if (F7 && !F3) {
- sleepTime *= 3;
+ sleepTime *= 4;
vulder marked this conversation as resolved.
Show resolved Hide resolved
}
fp_util::sleep_for_millisecs(70);
}
Loading