Big Block Method of Error Finding
What is the BBMoEF? Basically its a method of breaking your map down into different pieces to determine which part is causing your problem.
With an unknown or unusual error, there could be a million different potential causes - too many entities of this type, map geometry too complex, this or that memory being maxed out, etc.
Assuming your problem has a single cause, you can strategically eliminate the suspects through trial and error - get rid of half your "stuff" to see which half is causing the problem, then try half of half, and
keep winnowing down until you isolate the problem. This is similar to the "Big Block Method of Leak Finding", except you are looking objects/entities causing an error rather than a leak.
Here is an
oversimplified breakdown:
Now lets take an example - lets say Jim has an unknown error. To solve this, he decides to use the BBMoEF.
First Jim hides all the entities in the map and recompiles with visible objects only. For the sake of example, lets say that
when Jim got rid of all the entities, the error went away. Now Jim KNOWS that the
error is with some or all of the entities, and in the above diagram He blocks off all the worldspawn stuff:
Next, Jim hides all the point entities, and the error goes away. Thus Jim knows that the point entities must be the problem and can focus only on them.
After that, Jim hides half of his point entities of which (for the sake of example) they are all of types that are in the diagram -- Jim hides all the infrastructure entities and light entities, but the error remains. Therefore Jim can cross off all the infrastructure and light entities from the list of potential error-causers.
Finally, Jim
hides all the sound entities but the error remains. By deduction, what can Jim conclude is causing his errors?
Answer Here
In real life it may not be so cookie-cutter as this, and there may be multiple factors contributing to the problem, or entire groups may be causing the problem, but this process is basically a good strategy to get an idea for whats wrong with your map.