-
Notifications
You must be signed in to change notification settings - Fork 0
Process calculations
wlghdu97 edited this page Jul 23, 2020
·
1 revision
Process calculator uses Simplex solver which is part of linear optimization, finding the lowest cost for its base ingredients.
Processing order shows all recipe nodes with reverse order of DFS tree. Each recipe card displays its machine names, depth of recipes, output elements, and most importantly cycles. Cycles are the number of required works of the child recipe node required to run the root recipe node once.
If a solution of the process is unbounded or not feasible, calculations may fail. It is caused by various "faulty" connections, for example:
- Usage of unnecessary supplier recipe
- Inappropriate usage of reversed connections (It happens more often when reversed connection is the only way to supply its element)
- Base ingredient not matching (Imagine an element that has disconnected status somewhere but connected somewhere else)
- etc