aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Rick Walsh <rickmwalsh@gmail.com>2015-10-04 14:42:54 +1100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-10-04 13:45:37 +0100
commit936bd52a42194039640720734af99745b9241161 (patch)
treef9584211a6f73c20153167b8a60ecdf58a1344fb
parent26cab605182a30b15473d78adcdc8f62f3f081ab (diff)
downloadsubsurface-936bd52a42194039640720734af99745b9241161.tar.gz
VPM-B: Adjust Subsurface conservatism
Reverting commit 3d8e5b638ad4c1fbb43f6dd5f535bf0b33a51f0b makes the CVA calculation marginally less conservative, and one of the tests fails as a result. This tiny adjustment to the conservatism fixes that. Signed-off-by: Rick Walsh <rickmwalsh@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r--deco.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/deco.c b/deco.c
index f9d60326d..86acc0351 100644
--- a/deco.c
+++ b/deco.c
@@ -24,8 +24,8 @@
#define cube(x) (x * x * x)
// Subsurface appears to produce marginally less conservative plans than our benchmarks
-// Introduce 1% additional conservatism
-#define subsurface_conservatism_factor 1.01
+// Introduce 1.2% additional conservatism
+#define subsurface_conservatism_factor 1.012
extern bool in_planner();