You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A relic from the original iteration of the code is that all of the requirements are negative values. This is due to how the solver works, by "adding" the negative requirements each iteration.
From the perspective of the resource list this makes no sense however. All the numbers should just be positive values to avoid having to add in all these extra - signs.
Anvil:
recipes:
- output: 1recipe_type: Craftingrequirements:
Block of Iron: -3Iron Ingot: -4
- recipe_type: Raw Resource
becomes
Anvil:
recipes:
- output: 1recipe_type: Craftingrequirements:
Block of Iron: 3Iron Ingot: 4
- recipe_type: Raw Resource
This will either require a change in the front end solver (ideal solution), or a change in the build script to emulate the negative values in the bundle that is sent to the front end.
The text was updated successfully, but these errors were encountered:
A relic from the original iteration of the code is that all of the requirements are negative values. This is due to how the solver works, by "adding" the negative requirements each iteration.
From the perspective of the resource list this makes no sense however. All the numbers should just be positive values to avoid having to add in all these extra
-
signs.becomes
This will either require a change in the front end solver (ideal solution), or a change in the build script to emulate the negative values in the bundle that is sent to the front end.
The text was updated successfully, but these errors were encountered: