vote up 1 vote down star
1

Are the formulas represented in an AST then recalculated using a design pattern like the Visitor pattern? How would you go about reproducing the recalculation process in code?

flag

3 Answers

vote up 2 vote down check

Probably, as you say, one guess is that Excel creates a bunch of ASTs, one for each indipendent group of cells, where the leaves are the originating, static data, and the nodes are formulas.

Then it calculates the result for each node, with a post-order tree traversal algorithm.

You have to take into account leaf/node cancellation, partial recalculation, ecc. If I'm not wrong, I read somewhere that Excel could benefit of multicore processors to recalculate a sheet in parallel.

link|flag
vote up 3 vote down

Resolver One is a Spreadsheet app made in IronPython.

There is an explanation of the overall mechanic for the calculation [pythonology.org] it uses for user generated ecuations.

Overview of Resolver One's overall algorithm to deal with user generated ecuations

The relevant image showing Resolver One's overall algorithm.

Should note that users can write python code to be interpreted both on the cells and a special 'outside of sheet' place.

link|flag
vote up 2 vote down

Are the formulas represented in an AST then recalculated using a design pattern like the Visitor pattern?

You're thinking interpreter, not visitor. While treewalking using a visitor can be employed in conjunction with interpretation, employing an interpreter makes more sense here (hence the name). What this does is basically what friol wrote, i.e. traverse the tree in post-order and execute the function associated with each node.

link|flag
Thanks - I have seen the Visitor pattern used to walk the AST, and thought that that was the most common method. I'll check out the interpreter pattern as you suggested. – David Robbins Nov 24 '08 at 22:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.