[an error occurred while processing this directive]
This assignment is intended to give you a chance to demonstrate that you know how to step through code and verfiy code execution. Use the method described in Chapter 4 from Writing Solid Code.
tar -xzf
minesweeper.tgz
), and make
an executable.MineField::populate
in the debugger (this method is called every
time you start a new game, after selecting the field size). Follow the guidelines from Writing Solid
Code chapter 4 on how to do this. Check variable values and other state information before and after
execution of each line and verify that the line did what it should. Be sure to step through all
the lines of code, even if that means fixing some of the errors as you go along. (It is only necessary to
step through the populate function and not the subfunctions called by it.)The rubric for this assignment is available here.