Skip to content

Commit

Permalink
Merge pull request #616 from dgursoy/master
Browse files Browse the repository at this point in the history
BUG: vector reconstruction update fixed
  • Loading branch information
carterbox committed Aug 18, 2023
2 parents fa2d648 + c6903bb commit f02ee59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/libtomo/recon/vector.c
Expand Up @@ -174,7 +174,7 @@ vector(const float* data, int dy, int dt, int dx, const float* center, const flo
recon1[n + m * ngridy + s * ngridx * ngridy] +=
update1[n + m * ngridy] / sum_dist[n + m * ngridy];
recon2[n + m * ngridy + s * ngridx * ngridy] +=
update1[n + m * ngridy] / sum_dist[n + m * ngridy];
update2[n + m * ngridy] / sum_dist[n + m * ngridy];
}
}

Expand Down

0 comments on commit f02ee59

Please sign in to comment.