Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
vadere
vadere
Commits
a1807296
Commit
a1807296
authored
Nov 14, 2019
by
Stefan Schuhbaeck
Browse files
ignore pedestrain attributes in floor field hash calculation
parent
b2b39d5c
Changes
1
Hide whitespace changes
Inline
Side-by-side
VadereState/src/org/vadere/state/scenario/Topography.java
View file @
a1807296
...
...
@@ -60,6 +60,7 @@ public class Topography implements DynamicElementMover{
* Sources of scenario by id. Tree maps ensures same update order during
* iteration between frames.
*/
@JsonView
(
Views
.
CacheViewExclude
.
class
)
// ignore when determining if floor field cache is valid
private
final
List
<
Source
>
sources
;
/**
* Targets of scenario by id. Tree maps ensures same update order during
...
...
@@ -69,6 +70,7 @@ public class Topography implements DynamicElementMover{
/**
* TargetChangers of scenario
*/
@JsonView
(
Views
.
CacheViewExclude
.
class
)
// ignore when determining if floor field cache is valid
private
final
LinkedList
<
TargetChanger
>
targetChangers
;
/**
* AbsorbingAreas of scenario by id. Tree maps ensures same update order during
...
...
@@ -94,7 +96,9 @@ public class Topography implements DynamicElementMover{
private
transient
final
DynamicElementContainer
<
Car
>
cars
;
private
boolean
recomputeCells
;
@JsonView
(
Views
.
CacheViewExclude
.
class
)
// ignore when determining if floor field cache is valid
private
AttributesAgent
attributesPedestrian
;
@JsonView
(
Views
.
CacheViewExclude
.
class
)
// ignore when determining if floor field cache is valid
private
AttributesCar
attributesCar
;
/** Used to get attributes of all scenario elements. */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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