Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gmsh
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Larry Price
gmsh
Commits
2b93624f
Commit
2b93624f
authored
8 years ago
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
No commit message
No commit message
parent
18893c8c
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Geo/GModel.cpp
+1
-8
1 addition, 8 deletions
Geo/GModel.cpp
doc/VERSIONS.txt
+7
-7
7 additions, 7 deletions
doc/VERSIONS.txt
with
8 additions
and
15 deletions
Geo/GModel.cpp
+
1
−
8
View file @
2b93624f
...
@@ -1776,15 +1776,11 @@ int GModel::removeDuplicateMeshVertices(double tolerance)
...
@@ -1776,15 +1776,11 @@ int GModel::removeDuplicateMeshVertices(double tolerance)
}
}
}
}
// --- replace vertices in the periodic copies
// replace vertices in the periodic copies
for
(
unsigned
int
i
=
0
;
i
<
entities
.
size
();
i
++
){
for
(
unsigned
int
i
=
0
;
i
<
entities
.
size
();
i
++
){
GEntity
*
ge
=
entities
[
i
];
GEntity
*
ge
=
entities
[
i
];
std
::
map
<
MVertex
*
,
MVertex
*>&
corrVtcs
=
ge
->
correspondingVertices
;
std
::
map
<
MVertex
*
,
MVertex
*>&
corrVtcs
=
ge
->
correspondingVertices
;
std
::
map
<
MVertex
*
,
MVertex
*>::
iterator
cIter
;
std
::
map
<
MVertex
*
,
MVertex
*>::
iterator
cIter
;
for
(
cIter
=
newVertex
.
begin
();
cIter
!=
newVertex
.
end
();
++
cIter
)
{
for
(
cIter
=
newVertex
.
begin
();
cIter
!=
newVertex
.
end
();
++
cIter
)
{
MVertex
*
oldTgt
=
cIter
->
first
;
MVertex
*
oldTgt
=
cIter
->
first
;
MVertex
*
newTgt
=
cIter
->
second
;
MVertex
*
newTgt
=
cIter
->
second
;
...
@@ -1795,12 +1791,9 @@ int GModel::removeDuplicateMeshVertices(double tolerance)
...
@@ -1795,12 +1791,9 @@ int GModel::removeDuplicateMeshVertices(double tolerance)
corrVtcs
[
newTgt
]
=
src
;
corrVtcs
[
newTgt
]
=
src
;
}
}
}
}
for
(
cIter
=
corrVtcs
.
begin
();
cIter
!=
corrVtcs
.
end
();
++
cIter
)
{
for
(
cIter
=
corrVtcs
.
begin
();
cIter
!=
corrVtcs
.
end
();
++
cIter
)
{
MVertex
*
oldSrc
=
cIter
->
second
;
MVertex
*
oldSrc
=
cIter
->
second
;
std
::
map
<
MVertex
*
,
MVertex
*>::
iterator
nIter
=
newVertex
.
find
(
oldSrc
);
std
::
map
<
MVertex
*
,
MVertex
*>::
iterator
nIter
=
newVertex
.
find
(
oldSrc
);
if
(
nIter
!=
newVertex
.
end
())
{
if
(
nIter
!=
newVertex
.
end
())
{
MVertex
*
tgt
=
cIter
->
first
;
MVertex
*
tgt
=
cIter
->
first
;
MVertex
*
newSrc
=
nIter
->
second
;
MVertex
*
newSrc
=
nIter
->
second
;
...
...
This diff is collapsed.
Click to expand it.
doc/VERSIONS.txt
+
7
−
7
View file @
2b93624f
2.13.2: small improvements (scale labels, periodic and
high-order meshes) and
2.13.2
(August 18, 2016))
: small improvements (scale labels, periodic and
bug fixes.
high-order meshes) and
bug fixes.
2.13.1: small bug fixes.
2.13.1
(July 15, 2016)
: small bug fixes.
2.13.0: new ONELAB 1.2 protocol with native support for lists;
new experimental
2.13.0
(July 11, 2016)
: new ONELAB 1.2 protocol with native support for lists;
3D boundary recovery code and 3D refinement algorithm; better
adaptive
new experimental
3D boundary recovery code and 3D refinement algorithm; better
visualization of quads and hexahedra; fixed several regressions
introduced in
adaptive
visualization of quads and hexahedra; fixed several regressions
2.12.
introduced in
2.12.
2.12.0 (March 5, 2016): improved interactive definition of physical groups and
2.12.0 (March 5, 2016): improved interactive definition of physical groups and
handling of ONELAB clients; improved full quad algorithm; added support for list
handling of ONELAB clients; improved full quad algorithm; added support for list
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment