new call cost system

TODO: change all the ctrls from latency to amount per tick.
This commit is contained in:
2025-07-03 12:36:47 +02:00
parent 3b733e0708
commit 3546fe1093
6 changed files with 33 additions and 16 deletions

View File

@@ -40,8 +40,8 @@ typedef struct nn_computer {
double temperature;
double temperatureCoefficient;
double roomTemperature;
size_t callCost;
size_t callBudget;
double callCost;
double callBudget;
} nn_computer;
#endif