Skip to content
Snippets Groups Projects
Commit 121bec69 authored by Oliver Sander's avatar Oliver Sander Committed by sander@FU-BERLIN.DE
Browse files

fix another index bug

[[Imported from SVN: r8597]]
parent 743b9105
No related branches found
No related tags found
No related merge requests found
......@@ -53,7 +53,7 @@ std::auto_ptr<GridType> makeSingleSimplexGrid()
FieldVector<double,domainDim> pos(0);
factory.insertVertex(pos);
for (int i=0; i<domainDim+1; i++) {
for (int i=0; i<domainDim; i++) {
pos = 0;
pos[i] = 1;
factory.insertVertex(pos);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment