Skip to content

Commit

Permalink
BSZZOZOOp
Browse files Browse the repository at this point in the history
  • Loading branch information
MinaciousGrace committed May 21, 2020
1 parent 2b3cbab commit 9e77fa3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Etterna/Globals/MinaCalc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -966,7 +966,7 @@ Hand::CalcMSEstimate(vector<float> input)
input.resize(num_used);

// if above 1 and below used_ms_vals, fill up the stuff with dummies
static const float ms_dummy = 360.f;
static const float ms_dummy = 180.f;
if (input.size() < num_used)
for (size_t i = 0; i < num_used - input.size(); ++i)
input.push_back(ms_dummy);
Expand Down Expand Up @@ -1004,7 +1004,7 @@ Hand::CalcMSEstimate(vector<float> input)
std::cout << "diff : " << 1675.f * (num_used + 1) / m * cv_yo
<< std::endl;
// add 1 to num_used because some meme about sampling
return 650.f * (num_used + 1) / m * cv_yo;
return 750.f * (num_used + 1) / m * cv_yo;
}

void
Expand Down Expand Up @@ -1314,8 +1314,8 @@ Hand::InitAdjDiff()
float muzzle = *std::max_element(
scoring_justice_warrior_agenda.begin(),
scoring_justice_warrior_agenda.end());
adj_diff = soap[BaseMS][i] /** muzzle */ * tp_mods[ss] *
basescalers[ss];
adj_diff =
soap[BaseMS][i] * tp_mods[ss] * basescalers[ss];
}
break;
}
Expand Down

0 comments on commit 9e77fa3

Please sign in to comment.