Store plugin graph edges in a std::vector

This cuts the sorting time of a large (1619 plugins) load order by over
60% (15.5 min to 6 min).
This commit is contained in:
Oliver Hamlet
2022-12-02 17:21:44 +00:00
parent d2ebefc40a
commit 2bd3682109
+1 -1
View File
@@ -40,7 +40,7 @@
#include "loot/exception/cyclic_interaction_error.h"
namespace loot {
typedef boost::adjacency_list<boost::listS,
typedef boost::adjacency_list<boost::vecS,
boost::listS,
boost::bidirectionalS,
PluginSortingData,