pjfanning commented on PR #363:
URL: https://github.com/apache/poi/pull/363#issuecomment-1192367747

   Yes, it would be possible to rewrite the code to do a solution that doesn't 
need async tasks. It would probably be a much bigger change though.
   
   The new algorithm would probably involve doing an initial pass to work out 
which cells the target cell relies on and then work out which cells those rely 
on until you end up with no new cells to check. You would need to maintain a 
Set of cells that you are yet to check and produce a List of cells in the order 
that they need to be calculated. On the 2nd pass, you would process the List of 
cells output from the 1st pass and calculate the results for each.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to