[
https://issues.apache.org/jira/browse/HAMA-225?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Edward J. Yoon updated HAMA-225:
--------------------------------
Description:
while (state != 0 && loops > 0) {
should be changed as
while (state != 0 && icount < loops) {
and, value of state seems not changed. There is also a bug.
was:
while (state != 0 && loops > icount) {
should be changed as
while (state != 0 && icount < loops) {
and, value of state seems not changed. There is also a bug.
fix my typos
> Jacobi iteration is in a infinite loop
> --------------------------------------
>
> Key: HAMA-225
> URL: https://issues.apache.org/jira/browse/HAMA-225
> Project: Hama
> Issue Type: Bug
> Components: matrix
> Affects Versions: 0.2.0, 0.1.0
> Reporter: Edward J. Yoon
> Assignee: Edward J. Yoon
> Fix For: 0.2.0, 0.1.0
>
> Attachments: HAMA-225_0.19.patch, HAMA-225_trunk.patch
>
>
> while (state != 0 && loops > 0) {
> should be changed as
> while (state != 0 && icount < loops) {
> and, value of state seems not changed. There is also a bug.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.