# Function: alu (by Gupta et al.) # Note: 1st line is function output. # a and b are inputs # c0 c1 c2 define the function (f) as follows: # 0 0 0 -> constant 1 # 0 0 1 -> a OR b # 0 1 0 -> -a OR -b # 0 1 1 -> (a AND -b) OR (-a AND b) # 1 0 0 -> (a AND b) OR (-a AND -b) # 1 0 1 -> a AND b # 1 1 0 -> -a AND -b # 1 1 1 -> constant 0 # Used Library: MCT (gates: 7 quantum costs: 39) # This file has been taken from RevLib (www.revlib.org). .version 1.0 .numvars 5 .variables a b c d e .inputs c0 c1 c2 a b .outputs f g g g g .constants ----- .garbage -1111 .begin t3 a e b t4 e d b a t2 a c t2 c d t4 e d c a t1 a t3 d c a .end