]> wimlib.net Git - wimlib/blobdiff - include/wimlib/lz_mf.h
Remove "brute force" match-finding algorithm
[wimlib] / include / wimlib / lz_mf.h
index c94fce7a5e7c7b1bd23a2e2f66bc96f6758b9db2..9424e19d68421bd4131a356d222a15cdecc239ac 100644 (file)
@@ -83,6 +83,7 @@ struct lz_mf;
 
 /* Representation of a Lempel-Ziv match.  */
 struct lz_match {
+
        /* The number of bytes matched.  */
        u32 len;
 
@@ -108,14 +109,6 @@ enum lz_mf_algo {
         */
        LZ_MF_NULL = 1,
 
-       /*
-        * Brute Force match-finding algorithm.
-        *
-        * This algorithm exists for comparison, benchmarking, and testing
-        * purposes only.  It is not intended to be used in real compressors.
-        */
-       LZ_MF_BRUTE_FORCE = 2,
-
        /*
         * Hash Chain match-finding algorithm.
         *