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
c4b5ec53
Commit
c4b5ec53
authored
Aug 10, 2011
by
Brian Panneton
Browse files
Updated XdmfTopologyConverter.cpp to work on Windows
parent
dc67273e
Changes
2
Hide whitespace changes
Inline
Side-by-side
core/CMakeLists.txt
View file @
c4b5ec53
...
...
@@ -22,6 +22,7 @@ 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 @
c4b5ec53
...
...
@@ -67,7 +67,7 @@ namespace {
struct
PointComparison
{
static
const
double
epsilon
=
1e-6
;
static
double
epsilon
()
{
return
1e-6
;
};
bool
operator
()(
const
std
::
vector
<
double
>
&
point1
,
...
...
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