Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit 1a519af6 authored by Markus Quaritsch's avatar Markus Quaritsch
Browse files

minor refactoring

parent 1d401ed6
No related branches found
No related tags found
No related merge requests found
......@@ -36,15 +36,14 @@ namespace TUGraz.VectoCore.Models.Simulation.Impl
public void Run()
{
Log.Info("VectoJob started running.");
IResponse response;
Initialize();
try {
IResponse response;
do {
response = DoSimulationStep();
if (response is ResponseSuccess) {
Container.CommitSimulationStep(AbsTime, dt);
AbsTime += dt;
}
} while (response is ResponseSuccess);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment