Fixed index computation in dot-product
This commit is contained in:
parent
ff7b8dc45e
commit
09551ae85b
@ -195,7 +195,7 @@ namespace CosmoTool
|
||||
{
|
||||
for (long p = 0; p < plane_size; p++)
|
||||
{
|
||||
long idx = q0+N0*p;
|
||||
long idx = q0+dims[0]*p;
|
||||
assert(idx < this->size());
|
||||
result += 2*(conj(d1[idx]) * d2[idx]).real();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user