[jira] [Commented] (GIRAPH-132) Simplify boolean expression in GraphMapper::map()

2012-02-24 Thread Eli Reisman (Commented) (JIRA)

[ 
https://issues.apache.org/jira/browse/GIRAPH-132?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13215809#comment-13215809
 ] 

Eli Reisman commented on GIRAPH-132:


This seems to have been fixed already but is still on this list. Don't know who 
did it. Looking at GraphMapper::map() I see this:

@Override
  public void map(Object key, Object value, Context context)
throws IOException, InterruptedException {
// map() only does computation
// 1) Run checkpoint per frequency policy.
// 2) For every vertex on this mapper, run the compute() function
// 3) Wait until all messaging is done.
// 4) Check if all vertices are done.  If not goto 2).
// 5) Dump output.
if (done) {
  return;
}
...more code...

just letting everyone know, this might be resolved already?


 Simplify boolean expression in GraphMapper::map()
 -

 Key: GIRAPH-132
 URL: https://issues.apache.org/jira/browse/GIRAPH-132
 Project: Giraph
  Issue Type: Improvement
Reporter: Jakob Homan
Priority: Trivial
  Labels: newbie

 The boolean expression in:
 {noformat}@Override
 public void map(Object key, Object value, Context context)
 throws IOException, InterruptedException {
 // map() only does computation
 // 1) Run checkpoint per frequency policy.
 // 2) For every vertex on this mapper, run the compute() function
 // 3) Wait until all messaging is done.
 // 4) Check if all vertices are done.  If not goto 2).
 // 5) Dump output.
 if (done == true) {
 return;
 }{noformat}
 can be simplified.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Commented] (GIRAPH-132) Simplify boolean expression in GraphMapper::map()

2012-02-03 Thread Harsh J (Commented) (JIRA)

[ 
https://issues.apache.org/jira/browse/GIRAPH-132?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13199706#comment-13199706
 ] 

Harsh J commented on GIRAPH-132:


Unsure what you mean here -- is it to refine the comments or the way map() 
itself is implemented per that?

 Simplify boolean expression in GraphMapper::map()
 -

 Key: GIRAPH-132
 URL: https://issues.apache.org/jira/browse/GIRAPH-132
 Project: Giraph
  Issue Type: Improvement
Reporter: Jakob Homan
Priority: Trivial
  Labels: newbie

 The boolean expression in:
 {noformat}@Override
 public void map(Object key, Object value, Context context)
 throws IOException, InterruptedException {
 // map() only does computation
 // 1) Run checkpoint per frequency policy.
 // 2) For every vertex on this mapper, run the compute() function
 // 3) Wait until all messaging is done.
 // 4) Check if all vertices are done.  If not goto 2).
 // 5) Dump output.
 if (done == true) {
 return;
 }{noformat}
 can be simplified.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira