hmm? ich glaub, ich hab in Info mal zuviel aufgepasst
Code:
[s]// (a and b) or (-a and b) ... (a and b) or (c and b)
if (b and irgndwas) or ((not b) and sontwas) then
// Regel: (a and b) or (c and b) = (a or c) and b
// (a or c) and b
if (b or (not b)) and sontwas then
// Regel: a or -a = 1
// 1 and b
if true and sontwas then
// Regel: 1 and b = b
// b
if sontwas then[/s]