fixed warnings for VC++

This commit is contained in:
2020-08-22 13:38:27 -05:00
parent 2072bdcff7
commit 35b424c531
6 changed files with 11 additions and 11 deletions

View File

@@ -8,12 +8,12 @@
* implementing just yet anyway.
*/
const float VALUE_BATTERY_EMPTY_PENALTY = 0.5;
const float CN_EP_RANK_1 = 0.8;
const float CN_EP_RANK_2 = 0.7;
const float CN_EP_RANK_3 = 0.5;
const float CN_EP_RANK_4 = 0.3;
const float CN_EP_RANK_5 = 0.29;
const float VALUE_BATTERY_EMPTY_PENALTY = 0.5f;
const float CN_EP_RANK_1 = 0.8f;
const float CN_EP_RANK_2 = 0.7f;
const float CN_EP_RANK_3 = 0.5f;
const float CN_EP_RANK_4 = 0.3f;
const float CN_EP_RANK_5 = 0.29f;
enum {
SUCC = 1,