Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS has been phased out. To see alternatives please check here

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

minor refactoring

parent 1d401ed6
Branches
Tags
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.
Please register or to comment