Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
LordXido
/
CodexFlow_TM
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c3917d9
CodexFlow_TM
/
logistics_engine.py
LordXido
Update logistics_engine.py
5dfe1cf
verified
3 months ago
raw
Copy download link
history
blame
Safe
179 Bytes
def
logistics_kernel
(
econ
):
friction =
0.08
return
{
"transport_loss"
: econ[
"supply"
] * friction,
"effective_supply"
: econ[
"supply"
] * (
1
- friction)
}