9 | | Then compile your problem, and run it. If it still works, then you will want to commit these changes to your local repository. If you added new files that you want to be included you will need to do {{{hg add}}} before {{{hg ci}}}. Now, it is time to test the code with the test suite. |
| 9 | Then make any desired or necessary changes, and compile your problem. Now run it, and check the output. If it still works, then you will want to commit these changes to your local repository. If you added new files that you want to be included you will need to do {{{hg add}}} before {{{hg ci}}}: |
| 10 | {{{ |
| 11 | hg add <filename(s)> |
| 12 | hg ci |
| 13 | }}} |
| 14 | If it did not work, you will have to go back and check everything you have changed, fix it, recompile, rerun, and recheck. If everything works and you have committed your changes, it is time to test the rest of the code with the test suite. |