Printer Friendly
Dictionary, Encyclopedia and Thesaurus - The Free Dictionary
3,918,064,569 visitors served.
forum Join the Word of the Day Mailing List For webmasters
?
Dictionary/
thesaurus
Medical
dictionary
Legal
dictionary
Financial
dictionary
Acronyms
 
Idioms
Encyclopedia
Wikipedia
encyclopedia
?

tupling

    0.01 sec.
tupling - A program transformation where several results are returned from a single traversal of a data structure. E.g.

mean l = sum l / length l

==>

mean l = s/n where (s,n) = sumLen l

sumLen [] = (0,0) sumLen (x:xs) = (s+x, n+1) where (s,n) = sumLen xs

In procedural languages this technique is known as horizontal loop combination because it uses one loop to calculate several results.

Another form of tupling transformation is used to avoid repeated evaluation where a function generates several identical calls to itself. By analysing the pattern of recursion (see descent function) it is possible to arrange for these identical calls to share results. E.g.

fib 0 = 1 fib 1 = 1 fib n = fib (n-1) + fib (n-2)

==>

fib n = v where (_,v) = fibt n fibt 0 = (1,1) fibt n = (u+v,u) where (u,v) = fibt (n-1)


Want to thank TFD for its existence? Tell a friend about us, add a link to this page, add the site to iGoogle, or visit the webmaster's page for free fun content.
?Page tools
Printer friendly
Cite / link
Feedback
Mentioned in?  References in periodicals archive?   Encyclopedia browser?   Full browser?
No references found
 
Tupling thought she was not quite ready for the Tour school of 2006, that first she needed to make changes before her bid to join the professionals.
Nicholas Oettinger, 20, Ian Barlow, 29, Philip Bates, 26, Andrew Stout, 20, Darren Barlett, 24, and Matthew Tupling 24, all deny rape.
 
 
 
Encyclopedia
?

Terms of Use | Privacy policy | Feedback | Advertise with Us | Copyright © 2012 Farlex, Inc.
Disclaimer
All content on this website, including dictionary, thesaurus, literature, geography, and other reference data is for informational purposes only. This information should not be considered complete, up to date, and is not intended to be used in place of a visit, consultation, or advice of a legal, medical, or any other professional.