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

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

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