M = 6, K = 2, Q = 4ΒΆ

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

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