Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xdmf
Xdmf
Commits
42c73cf2
Commit
42c73cf2
authored
Aug 11, 2011
by
Brian Panneton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Missed an epsilon when making changes for Windows.
parent
c4b5ec53
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
2 deletions
+1
-2
core/CMakeLists.txt
core/CMakeLists.txt
+0
-1
utils/XdmfTopologyConverter.cpp
utils/XdmfTopologyConverter.cpp
+1
-1
No files found.
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
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