M = 4, K = 3, Q = 4ΒΆ

M=4_K=3_Q=4_minh=2_ineq=0.txt is available here.

# minimum Hamming distance = 2
# activation inequality = 0
# active indices
a = [[0, 1, 2], [0, 1, 3], [0, 2, 3], [1, 2, 3]]
# activation tensor
A = [[[1, 0, 0], [0, 1, 0], [0, 0, 1], [0, 0, 0]], [[1, 0, 0], [0, 1, 0], [0, 0, 0], [0, 0, 1]], [[1, 0, 0], [0, 0, 0], [0, 1, 0], [0, 0, 1]], [[0, 0, 0], [1, 0, 0], [0, 1, 0], [0, 0, 1]]]
# vector representation
[[1, 1, 1, 0],
 [1, 1, 0, 1],
 [1, 0, 1, 1],
 [0, 1, 1, 1]]