so I have a fact weather(jan, 17, cold, wind, snow).
and rule
match(W,D,T) :-
weather(W,D,T,_,_)
; weather(W,D,_,T,_)
; weather(W,D,_,_,T).
When I type match(jan, 17, wind).
Prolog returns true; false.
I want it to only return true, but it's returning false as well, how can I fix this?