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

bugfix: loop was over blocksize where it should have been the embeddedBlocksize

[[Imported from SVN: r5995]]
parent d1724ec2
No related branches found
No related tags found
No related merge requests found
......@@ -372,7 +372,7 @@ public:
std::vector<TargetSpace> backwardSolution = localSolution;
for (int j=0; j<blocksize; j++) {
for (int j=0; j<embeddedBlocksize; j++) {
// The return value does not have unit norm. But assigning it to a UnitVector object
// will normalize it. This amounts to an extension of the energy functional
......
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