summaryrefslogtreecommitdiff
path: root/src/cell.h
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2013-08-03 09:31:17 +0000
committerStijn Buys <ingar@osirion.org>2013-08-03 09:31:17 +0000
commitd7f292f0abbffb24dc683d754a2ab4b8b2938cc0 (patch)
treeab84004b8ab38916803ac39feea84f111b59df73 /src/cell.h
parent850441d72ad73e6bcf3570e3f62287c28eaead31 (diff)
Adds an option to mark cells with a unique solution.
Diffstat (limited to 'src/cell.h')
-rw-r--r--src/cell.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/cell.h b/src/cell.h
index 4000846..5fe7999 100644
--- a/src/cell.h
+++ b/src/cell.h
@@ -30,10 +30,12 @@ public:
/**
* @brief return true of the current value for this cell is a valid possibility
* */
+ // FIXME the bool valid() should be replaced with a state() enum to indicate
+ // the difference between Input Error and Invalid Values
inline bool valid() const { return cell_valid; }
/**
- * @brief return the current value for this cell_possibility
+ * @brief return the current value for this cell
* */
inline int value() const { return cell_value; }