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
1ba81617
Commit
1ba81617
authored
15 years ago
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
throw exception instead of assert() when meshes overlap
parent
d2560e04
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
contrib/Tetgen/tetgen.cxx
+4
-1
4 additions, 1 deletion
contrib/Tetgen/tetgen.cxx
doc/VERSIONS.txt
+3
-3
3 additions, 3 deletions
doc/VERSIONS.txt
with
7 additions
and
4 deletions
contrib/Tetgen/tetgen.cxx
+
4
−
1
View file @
1ba81617
...
@@ -22503,7 +22503,9 @@ void tetgenmesh::rearrangesubfaces(list* missingshlist, list* boundedgelist,
...
@@ -22503,7 +22503,9 @@ void tetgenmesh::rearrangesubfaces(list* missingshlist, list* boundedgelist,
}
}
}
}
} while (hitbdry < 2 && apex(spintet) != apex(starttet));
} while (hitbdry < 2 && apex(spintet) != apex(starttet));
#ifdef SELF_CHECK //GMSH
assert(matchflag == true);
assert(matchflag == true);
#endif //GMSH
tspivot(spintet, neighsh);
tspivot(spintet, neighsh);
if (neighsh.sh != dummysh) {
if (neighsh.sh != dummysh) {
printf("Error: Invalid PLC.\n");
printf("Error: Invalid PLC.\n");
...
@@ -22511,7 +22513,8 @@ void tetgenmesh::rearrangesubfaces(list* missingshlist, list* boundedgelist,
...
@@ -22511,7 +22513,8 @@ void tetgenmesh::rearrangesubfaces(list* missingshlist, list* boundedgelist,
shellmark(neighsh), shellmark(shloop));
shellmark(neighsh), shellmark(shloop));
printf(" It might be caused by a facet is defined more than once.\n");
printf(" It might be caused by a facet is defined more than once.\n");
printf(" Hint: Use -d switch to find all overlapping facets.\n");
printf(" Hint: Use -d switch to find all overlapping facets.\n");
exit(1);
terminatetetgen(1);
//GMSH exit(1);
}
}
// The side of 'spintet' is at which a new subface will be attached.
// The side of 'spintet' is at which a new subface will be attached.
adjustedgering(spintet, CCW);
adjustedgering(spintet, CCW);
This diff is collapsed.
Click to expand it.
doc/VERSIONS.txt
+
3
−
3
View file @
1ba81617
?
: new client/server visualization mode;
compound geometrical
2.4.3 (?)
: new client/server visualization mode;
new option to force
entities; new option to force
the type of views dynamically;
bug
the type of views dynamically;
small bug fixes and usability
fixe
s.
improvement
s.
2.4.2 (Sep 21, 2009): solver code refactoring + better IDE
2.4.2 (Sep 21, 2009): solver code refactoring + better IDE
integration.
integration.
...
...
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