next up previous contents
Next: Literature Up: A short summary of Previous: Input and output   Contents


Some frequently occurring errors

System error messages are also not always very clear.
Often occurring error messages are:
  Floating point exception
  Underflow
  Bus error
  Memory fault
  Segmentation violation
The last three error messages really only tell you that something is terribly wrong, but not exactly what and where.
The first message occurs often when a division by 0 is performed. Check where you perform divisions.
The message underflow often indicates that something has no value but is still being used.
Sometimes some extra information is given about the position where the error occurs. This helps you finding the error.
When looking for errors in a program, include print statements in your FORTRAN program to check what is going on.
If very many error messages occur on the screen, use redirection to a file. For system messages, use >&.

next up previous contents
Next: Literature Up: A short summary of Previous: Input and output   Contents
Mathieu Pourquie 2001-02-28