1550s, from Middle French fusion, from Latin fusionem (nominative fusio) "an outpouring, effusion," noun of action from fusus, past participle of fundere "pour, melt" (see found (v.2)). In nuclear physics sense, first recorded 1947; in jazz sense, by 1972.
fusion fu·sion (fyōō'zhən)
n.
The act or procedure of liquefying or melting by the application of heat.
The merging of different elements into a union, as of vertebrae.
The mechanism by which both eyes blend slightly different images from each eye into a single image.
The growing together of two or more teeth as a result of the abnormal union of their formative organs.
A nuclear reaction in which nuclei combine to form more massive nuclei with the simultaneous release of energy.
fusion (fy'zhən)
|
Software package supplied by Network Research Corporation claiming to connect various different configurations of LAN.
programming
A program transformation where a composition of two functions is replaced by in-lining them and combining their bodies. E.g.
f x = g (h x) ==> f x = g (2 * x) g x = x + 1 f x = 2 * x + 1 h x = 2 * x
This has the beneficial effect of reducing the number of function calls. It can be especially useful where the intermediate result is a large data structure which can be eliminated.
See also vertical loop combination.
(1994-12-05)