Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
JuPedSim
JPScore
Commits
ed3f25e2
Commit
ed3f25e2
authored
Feb 18, 2016
by
Arne Graf
Browse files
Merge branch 'develop' of cst.version.fz-juelich.de:jupedsim/jpscore into develop
parents
16c39f85
06005c95
Pipeline
#1310
canceled with stage
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Simulation.cpp
View file @
ed3f25e2
...
...
@@ -501,7 +501,10 @@ int Simulation::RunBody(double maxSimTime)
_nPeds
=
_building
->
GetAllPedestrians
().
size
();
int
initialnPeds
=
_nPeds
;
// main program loop
while
(
(
_nPeds
||
!
_agentSrcManager
.
IsCompleted
()
)
&&
t
<
maxSimTime
)
while
(
(
_nPeds
>
0
||
(
!
_agentSrcManager
.
IsCompleted
()
&&
(
_hybridSimManager
!=
nullptr
)))
&&
t
<
maxSimTime
)
//while ( _nPeds && t < maxSimTime)
{
t
=
0
+
(
frameNr
-
1
)
*
_deltaT
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment