Google
 
   
Login
Username:

Password:


Lost Password?

Register now!
Search
Main Menu
top books
Polls
What do you think about php-deluxe.net?
Excellent!
Cool
Hmm..not bad
What the hell is this?
encyclopedia
recommendation
compare webbrowser
Freenet DSL
Who's Online
8 user(s) are online (8 user(s) are browsing encyclopedia)

Members: 0
Guests: 8

more...
browser tip
Unix Befehle
manual of unix befehle
recommendation!
Sponsored
partner

Error avalanche

In computer science, an error avalanche is the mechanism by which a small problem can become compounded until it eventually becomes a very large one.

For example, if the output of one function (programming) is the input of another, then small round-off errors in the first function can produce much larger errors in the second. If the second function were fed into a third, the problem could grow even larger, until the values produced are worthless.

Another example is in compiling source code. One minor syntactical error early on in the code can produce large numbers of perceived errors later, as the compiler gets out-of-phase with the lexical and syntactic information in the source program.

In computer hardware design, one signal in error can propagate errors throughout a computer very quickly. For example, a power supply voltage that is wrong can cause errors to propagate to many chips. Each chip may detect errors and try to report them close together in time. Error handling systems need to be carefully designed if they are to cope with this and produce meaningful information. This situation has also been called an error storm.

=See also=

  • Numerical stability
  • Byzantine failure