does someone know an algorithm to simplify a kv map with more than 4 variables. With 4 variables you just creat groups of field that are near each other. And than you can write down the logic expression that discribes this group. By doing this for all groups you get a simplified version of you logix expression that you used to creat the kv map.
According to this:
Die Bedingung dafür, dass mehrere Felder eine Gruppe bilden können, ist daher nicht, dass es sich um zusammenhängende rechteckige Blöcke handelt, sondern ob es möglich ist, eine entsprechende Gruppe durch Spiegelung und Beibehalten zu erzeugen.
Translated version (Google translator)
I though maybe you can do this backwords: You fold the map and see which "1" are aboth each other. With folding I mean: Alternating taking the x and y middle axis and folding the map. If there are two "1" aboth each other they create a group.
But what are you doing after the second folding? For example:
0000
0100
0010
0000
becomes
0000
0110
after the first folding. Correct, no groups. But if I fold it a second time I get a wrong group. So how can I differentiate this case from for example this one:
0000
0000
1001
1001
-> fold x
1001
1001
-> fold y
20
20
Now there two "1" aboth each other (i wrote it as a 2). This creates a correct group after folding it 2 times.