about summary refs log tree commit diff stats
path: root/057static_dispatch.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-02-08 23:16:23 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-02-08 23:16:23 -0800
commita8c22e4a055f75aa7af9f91e849b6b59aed84d5c (patch)
treea5d7fc9e9673582b0ca018ad10caf910478d92ca /057static_dispatch.cc
parentc405cf2b73c5062a786d9ad2ef8920db4952efed (diff)
downloadmu-a8c22e4a055f75aa7af9f91e849b6b59aed84d5c.tar.gz
2641
Turns out we don't need to threshold non-shape-shifting and
shape-shifting variants at different levels to keep all tests passing.
Diffstat (limited to '057static_dispatch.cc')
-rw-r--r--057static_dispatch.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/057static_dispatch.cc b/057static_dispatch.cc
index d97dbf0f..0bb23945 100644
--- a/057static_dispatch.cc
+++ b/057static_dispatch.cc
@@ -222,7 +222,7 @@ bool next_stash(const call& c, instruction* stash_inst) {
 }
 
 long long int variant_score(const instruction& inst, recipe_ordinal variant) {
-  long long int result = 1000;
+  long long int result = 100;
   if (variant == -1) return -1;  // ghost from a previous test
 //?   cerr << "variant score: " << inst.to_string() << '\n';
   if (!contains_key(Recipe, variant)) {