Show More
Commit Description:
Fix issue with simulation....
Commit Description:
Fix issue with simulation.
Previously, if there was more than one tick being advanced at once, it would
overshoot how many ticks it covered. So if it was covering 5 ticks and each
tick happens every 100 units, rather than recording that it had simulated
through t= 500, it would increase the cumulative time for each tick, recording
that it had simulated through t=2500.
Add error message, too.
References:
File last commit:
Show/Diff file:
Action:
encompass-cs/.vscode/tasks.json
35 lines | 878 B | application/json | JsonLexer
35 lines | 878 B | application/json | JsonLexer
r169 | { | ||
"version": "2.0.0", | |||
"tasks": [ | |||
{ | |||
"label": "build", | |||
"command": "dotnet", | |||
"type": "process", | |||
"args": [ | |||
"build", | |||
"${workspaceFolder}/test/test.csproj" | |||
], | |||
"problemMatcher": "$tsc" | |||
}, | |||
{ | |||
"label": "publish", | |||
"command": "dotnet", | |||
"type": "process", | |||
"args": [ | |||
"publish", | |||
"${workspaceFolder}/test/test.csproj" | |||
], | |||
"problemMatcher": "$tsc" | |||
}, | |||
{ | |||
"label": "watch", | |||
"command": "dotnet", | |||
"type": "process", | |||
"args": [ | |||
"watch", | |||
"run", | |||
"${workspaceFolder}/test/test.csproj" | |||
], | |||
"problemMatcher": "$tsc" | |||
} | |||
] | |||
} |