Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
vadere
vadere
Commits
aff6c656
Commit
aff6c656
authored
Aug 30, 2018
by
Stefan Schuhbaeck
Browse files
Merge branch 'develop' into stair_hatching
parents
a5855370
6d924614
Pipeline
#67117
failed with stages
in 55 minutes and 39 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
VadereSimulator/src/org/vadere/simulator/projects/dataprocessing/outputfile/TimestepOutputFile.java
View file @
aff6c656
...
...
@@ -11,6 +11,6 @@ import org.vadere.simulator.projects.dataprocessing.datakey.TimestepKey;
public
class
TimestepOutputFile
extends
OutputFile
<
TimestepKey
>
{
public
TimestepOutputFile
()
{
super
(
"
hdfkh
"
);
super
(
"
timeStep
"
);
}
}
VadereUtils/src/org/vadere/util/voronoi/Face.java
View file @
aff6c656
...
...
@@ -77,9 +77,9 @@ public class Face {
*
(
limits
.
yHigh
-
limits
.
yLow
);
try
{
if
(
result
<
0
||
result
>
maxArea
)
{
String
message
=
result
+
" is a illegal area size
(Object "
+
id
+
")
.
"
;
if
(
result
<
0
||
(
result
>
maxArea
&&
Math
.
abs
(
result
-
maxArea
)
>
1
E
-
15
)
)
{
String
message
=
"(Object "
+
id
+
") Area of face is: "
+
result
+
"
. This
is a
n
illegal area size
"
+
"because result has to be positive and less than maxArea (= "
+
maxArea
+
")"
;
throw
new
IllegalStateException
(
message
);
}
}
catch
(
IllegalStateException
e
)
{
...
...
Stefan Schuhbaeck
@stsc
mentioned in issue
#89 (closed)
·
Aug 30, 2018
mentioned in issue
#89 (closed)
mentioned in issue #89
Toggle commit list
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