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


  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.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to