Add retry_mechanism/tests/data/sample_input.json

This commit is contained in:
Mika 2026-03-06 10:41:07 +00:00
parent fb6521264f
commit 23ed15f58c

View file

@ -0,0 +1,20 @@
{
"cases": [
{
"description": "Positive Delta t should remain unchanged",
"dt": 0.045
},
{
"description": "Negative Delta t triggers retry",
"dt": -0.23
},
{
"description": "Zero Delta t edge case",
"dt": 0.0
},
{
"description": "Barely negative Delta t requiring minimal correction",
"dt": -1e-06
}
]
}