-
I tried to install with and received the following error below. Any help would be appreciated. ################################################## Building CoinUtils master################################################## In file included from /usr/include/c++/4.8.2/algorithm:62:0, Build failed, see error output above |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Can you try if the following change in CoinUtils works? --- a/src/CoinBronKerbosch.cpp
+++ b/src/CoinBronKerbosch.cpp
@@ -36,7 +36,7 @@ static void *xmalloc( const size_t size );
static void *xcalloc( const size_t elements, const size_t size );
static void *xrealloc( void *ptr, const size_t size );
-bool compareNodes(BKVertex &u, const BKVertex &v) {
+bool compareNodes(const BKVertex &u, const BKVertex &v) {
return u.fitness >= v.fitness + BK_EPS;
}
|
Beta Was this translation helpful? Give feedback.
Can you try if the following change in CoinUtils works?