Fast Logic
A=true B=false
old method
if (A or B )= C then C=true
if (A and B) =C then C=false
new method
A=true=1
B=false=0
A or B = 1+0=1
A and B= 1*0=0
e.g. AND(0001010101)=0, AND(ABCDEFGH...etc...)
OR(01111011101)=9>0=1
if d and a and g: {
##
else if c or d: {
##
else if a or b: {
##
}}}
AND(DAG)
OR(CD)
OR(AB)
What do we like better?
