[Home] [By Thread] [By Date] [Recent Entries]
Roger, This is an interesting aspect that you touch on here - that involves a crossover between declarative programming and object programming - how flexible and resilient to reuse and extension are routines and functions? I've always found a high degree of this in both xslt and especially Prolog. In Prolog components of your program are highly compartmentalized - so it is especially easy to grab blocks of code and graft them into another process. The Prolog parsers provide direct support for debugging this also (i.e. if you missed a piece somewhere, or something is undefined / non-deterministic). Similarly in xslt - import is a powerful way of sharing code utilities across multiple applications. Prolog latterly adopted object oriented techniques, particularly in Java based implementations of Prolog engines, and that was certainly a bonus, although your head could often explode trying to grapple with the nuances of both paradigms in the same box! Which brings up another aspect here - that I know Michael Kay has waxed on too - memory management. You really need strong memory management tools in the underlying language implementation - and also direct ways to prune solution trees and associated memory objects. Back in the day doing this on a 640k machine was always an interesting challenge. Even today however with Gigabyte memory available, performance can suffer dramatically if too much redundant recursion is going on. Of course detecting that you have entered an indirect infinite loop is also the proverbial challenge for any recursive process - e.g. A references B references C references A - so when you inspect A you have no idea that C will reference back to you again. Saxon does provide extensions that can help with this - providing line sequencing - so you see that this A you are in is the same A that you started from before. DW
[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] |

Cart



