Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-subgrid
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
agnumpde
dune-subgrid
Commits
5a077469
Commit
5a077469
authored
15 years ago
by
Uli Sack
Committed by
usack@PCPOOL.MI.FU-BERLIN.DE
15 years ago
Browse files
Options
Downloads
Patches
Plain Diff
added the LeafElementIterator-issue
[[Imported from SVN: r244]]
parent
8c576f20
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
KnownIssues
+11
-1
11 additions, 1 deletion
KnownIssues
with
11 additions
and
1 deletion
KnownIssues
+
11
−
1
View file @
5a077469
...
...
@@ -10,9 +10,19 @@ The following issues are known when using dune-subgrid:
<li>
Currently only grids with elements of a single geometry work as hostgrids.
</li>
<li>
<li>
LeafIntersectionIterator can return wrong intersections if working with dune-grid1.3svn Revision < 5101
</li>
<li>
creating the (leaf-) end iterator can be costly (especially with ALU3dSimplexGrid). For a walk over all
(leaf-) entities we strongly(!) recommend creating the end iterator outside the loop:
Example:
<code>
ElementLeafIterator end=grid.leafend<0>();
for (ElementLeafIterator eltIt=grid.leafbegin<0>(); eltIt!=end; ++eltIt)
{...}
</code>
</li>
</ul>
Subgrid uses certain host grid features where you might not expect it.
If a subgrid behaves strange this might be caused by bugs in the host grid
...
...
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