In prolog, is there any way to make a variable an instance of _? I'm making a sudoku solver, and I represent the puzzle read in by either numbers (given numbers) or -'s, (numbers not given). So, I read the whole puzzle into a list of lists, and now I want to pass that list to a function, and I need for '-' to be passed as _. Is there some way when I'm reading input to store the input as a _? Like for example..
get_next(X) :-
repeat,
get_char(Y),
(Y = '\n' -> fail
;
Y = '-' -> X = _
;
X = Y
).
Something like this? I thought perhaps passing a '_' would do it, but of course, '_' \= _ ... Any help would be greatly appreciated. Prolog is very foreign to me.
all_different([1,_,2,5,_,4,_,8,7]), it is true, but when I use the above function to read the input, and doall_different(Input)it treats Input as[1,_G#,2,5,_G# ... ]and I get the error messageERROR: >/2: Arithmetic:2/0' is not a function`. What can I do to fix this? Implement my own all_different? – Jay Elrod Apr 27 '12 at 19:32all_different([1,_,2,5,_,4,_,8,7])andall_different([1,A,2,5,B,4,C,8,7])is the same as long as you do not try unifyingA,B, orCin other places in your rule. – dasblinkenlight Apr 27 '12 at 19:35