Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xdmf
Xdmf
Commits
42c73cf2
Commit
42c73cf2
authored
Aug 11, 2011
by
Brian Panneton
Browse files
Missed an epsilon when making changes for Windows.
parent
c4b5ec53
Changes
2
Hide whitespace changes
Inline
Side-by-side
core/CMakeLists.txt
View file @
42c73cf2
...
...
@@ -22,7 +22,6 @@ mark_as_advanced(CLEAR Boost_INCLUDE_DIR)
find_package
(
Boost REQUIRED
)
if
(
Boost_FOUND
)
include_directories
(
${
Boost_INCLUDE_DIRS
}
)
set
(
XDMF_LIBRARY_DIRS
${
XDMF_LIBRARY_DIRS
}
${
Boost_LIBRARIES
}
)
mark_as_advanced
(
FORCE Boost_INCLUDE_DIR
)
endif
(
Boost_FOUND
)
...
...
utils/XdmfTopologyConverter.cpp
View file @
42c73cf2
...
...
@@ -74,7 +74,7 @@ namespace {
const
std
::
vector
<
double
>
&
point2
)
const
{
for
(
unsigned
int
i
=
0
;
i
<
3
;
++
i
)
{
if
(
fabs
(
point1
[
i
]
-
point2
[
i
])
>
epsilon
)
{
if
(
fabs
(
point1
[
i
]
-
point2
[
i
])
>
epsilon
()
)
{
return
point1
[
i
]
<
point2
[
i
];
}
}
...
...
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