If you check commit d0c6ae4, we still have six failing unit tests. These unit tests use default dictionary (Kateglo). Let's break them down one-by-one:
-
Unit test failed to stem "-lah, -kah, -tah, -pun" suffixes
This happened because the stemmer failed to stem "apatah" word. "apatah" word exists in default dictionary. So, it's considered a root word or no need to be stemmed.
-
Unit test failed to stem "-i, -kan, -an" suffixes
This happened because the stemmer failed to stem "belikan" word. The cause is the same with previous point.
-
Unit test failed to stem loop last return of enhanced confix stripping
This happened because the stemmer failed to stem "menerangi", "berimanlah", and "memuaskan" words. Need further investigation to find the cause.
-
Unit test failed to stem modified enhanced confix stripping with infix
This happened because the stemmer failed to stem "rerata" and "lelembut" words. These words exist in dictionary.
-
Unit test failed to remove prefix recursively
This happened because the stemmer failed to stem "kesepersepuluhnya" word. Need further investigation to find the cause.
-
Unit test failed to stem adopted foreign suffixes
This happened because the stemmer failed to stem "idealis" and "idealisme" words. Both exist in dictionary.
If you check commit d0c6ae4, we still have six failing unit tests. These unit tests use default dictionary (Kateglo). Let's break them down one-by-one:
Unit test failed to stem "-lah, -kah, -tah, -pun" suffixes
This happened because the stemmer failed to stem "apatah" word. "apatah" word exists in default dictionary. So, it's considered a root word or no need to be stemmed.
Unit test failed to stem "-i, -kan, -an" suffixes
This happened because the stemmer failed to stem "belikan" word. The cause is the same with previous point.
Unit test failed to stem loop last return of enhanced confix stripping
This happened because the stemmer failed to stem "menerangi", "berimanlah", and "memuaskan" words. Need further investigation to find the cause.
Unit test failed to stem modified enhanced confix stripping with infix
This happened because the stemmer failed to stem "rerata" and "lelembut" words. These words exist in dictionary.
Unit test failed to remove prefix recursively
This happened because the stemmer failed to stem "kesepersepuluhnya" word. Need further investigation to find the cause.
Unit test failed to stem adopted foreign suffixes
This happened because the stemmer failed to stem "idealis" and "idealisme" words. Both exist in dictionary.