Core of Sudoku Puzzler is ported without input error detection (no try/catch statemen...
authorstephey <stephey>
Mon, 12 Apr 2010 17:56:46 +0000 (17:56 +0000)
committerstephey <stephey>
Mon, 12 Apr 2010 17:56:46 +0000 (17:56 +0000)
commitf1faaf87e5866c88a6a150590a1baf34f1e73347
treefde53fe013bc21abc46a51fd7fd7fc42dad81a84
parent03a127490d4c7dec55f5905ea4ab47049f719188
Core of Sudoku Puzzler is ported without input error detection (no try/catch statements). The result writer (to file) is embedded in Test.java

Lessons Learned
1)  There are fewer implicit type casts with our compiler.
2)  Error Handling
2a) Functions that could throw an error but does not return anything can return a boolean to check for errors.
2b) Functions that do return something can return either a null (if returning an object) or an invalid value to check for errors.
Robust/src/Tests/mlp/stephen/Parser.java
Robust/src/Tests/mlp/stephen/Test.java