After several failed attempts to incorporate multi-value logic into my chain/loop routine, I'm in the middle of another try to make sense out of chaos. Consider the following scenario:
- Code: Select all
(23=1)r2c2 - ... = (9)r8c9 - (9=234)r2c789 - loop
+-----------------------------------------------+
| . . . | . . . | . . . |
| . 123 . | . . . | 234 234 2349 |
| . . . | . . . | . . . |
|---------------+---------------+---------------|
| . . . | . . . | . . . |
| . . . | . . . | . . . |
| . . . | . . . | . . . |
|---------------+---------------+---------------|
| . . . | . . . | . . . |
| . . . | . . . | . . X9 |
| . . . | . . . | . . . |
+-----------------------------------------------+
Convincing myself that a valid loop existed was the first hurdle that I overcame.
The term (234)r2c789 involves three values in three cells. Thus, each value can be considered as being assigned to one of the cells. The term (23)r2c2 involves two values in one cell. Thus, an OR relationship exists and neither value can be considered as being assigned to the cell. I'm unable to derive any eliminations in the weak link between (234)r2c789 and (23)r2c2. Is this correct?
Any insight on handling multi-value logic would be appreciated!!!
Regards, Danny A. Jones