diff options
author | Timo Teräs <timo.teras@iki.fi> | 2013-01-28 15:34:09 +0200 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2013-01-28 15:34:09 +0200 |
commit | 72cd34cf8148322837193c8e2b6da0cd96fe7788 (patch) | |
tree | 9e24fed50eba7d7021ad241c4a020c34cdb74b2a /src/apk_solver_data.h | |
parent | cb98b55b7e25f45ed847bc32f3267d0c8fb033e5 (diff) | |
download | apk-tools-72cd34cf8148322837193c8e2b6da0cd96fe7788.tar.gz apk-tools-72cd34cf8148322837193c8e2b6da0cd96fe7788.tar.bz2 apk-tools-72cd34cf8148322837193c8e2b6da0cd96fe7788.tar.xz apk-tools-72cd34cf8148322837193c8e2b6da0cd96fe7788.zip |
solver: remove backjumping by name
It is incorrect optimization causing valid solutions to be skipped.
Any performance it might've gained, should be fixed by reintroduction
of the minimum penalty logic added in previous commit.
Diffstat (limited to 'src/apk_solver_data.h')
-rw-r--r-- | src/apk_solver_data.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/apk_solver_data.h b/src/apk_solver_data.h index 5921e41..5777325 100644 --- a/src/apk_solver_data.h +++ b/src/apk_solver_data.h @@ -63,7 +63,6 @@ struct apk_solver_name_state { unsigned none_excluded : 1; unsigned name_touched : 1; unsigned preferred_chosen : 1; - unsigned backjump_enabled : 1; }; #endif |