Writing down some algorithms for later analysis

This commit is contained in:
Pahimar 2016-05-16 16:00:27 -04:00
parent dfd674fce7
commit 191a44f2f5

View file

@ -175,7 +175,16 @@ public class EnergyValueHelper {
return null;
}
// FIXME PRIORITY NUMBER 1
// FIXME PRIORITY NUMBER 1 (Implement new method)
public static EnergyValue computeFromInputs(Map<WrappedStack, EnergyValue> valueMap, WrappedStack wrappedOutput, List<WrappedStack> wrappedInputs) {
EnergyValue computedEnergyValue = null;
return computedEnergyValue;
}
public static EnergyValue computeEnergyValueFromRecipe(Map<WrappedStack, EnergyValue> valueMap, WrappedStack wrappedOutput, List<WrappedStack> wrappedInputs) {
float computedValue = 0f;