Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
KennethVanhoey
CGoGN
Commits
04f8ebe8
Commit
04f8ebe8
authored
May 31, 2011
by
Thomas
Browse files
Merge branch 'master' of cgogn:~kraemer/CGoGN
parents
4fac1b80
aa3ae422
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/Algo/ImplicitHierarchicalMesh/ihm.cpp
View file @
04f8ebe8
...
...
@@ -190,7 +190,10 @@ Dart ImplicitHierarchicalMap::faceOldestDart(Dart d)
do
{
unsigned
int
l
=
m_dartLevel
[
it
]
;
if
(
l
<
l_old
||
(
l
==
l_old
&&
it
<
oldest
))
if
(
l
==
0
)
return
it
;
if
(
l
<
l_old
)
// if(l < l_old || (l == l_old && it < oldest))
{
oldest
=
it
;
l_old
=
l
;
...
...
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