mirror of
https://github.com/boostorg/graph.git
synced 2026-01-19 04:12:11 +00:00
Add notes to examples that are outdated and either crash or do not compile.
This commit is contained in:
@@ -22,6 +22,14 @@
|
||||
// The default maze size is 20x10, though different dimensions may be
|
||||
// specified on the command line.
|
||||
|
||||
/*
|
||||
IMPORTANT:
|
||||
~~~~~~~~~~
|
||||
|
||||
This example appears to be broken and crashes at runtime, see https://github.com/boostorg/graph/issues/148
|
||||
|
||||
*/
|
||||
|
||||
|
||||
#include <boost/graph/astar_search.hpp>
|
||||
#include <boost/graph/filtered_graph.hpp>
|
||||
|
||||
@@ -6,6 +6,17 @@
|
||||
// accompanying file LICENSE_1_0.txt or copy at
|
||||
// http://www.boost.org/LICENSE_1_0.txt)
|
||||
//=======================================================================
|
||||
|
||||
|
||||
|
||||
/*
|
||||
IMPORTANT:
|
||||
~~~~~~~~~~
|
||||
|
||||
This example appears to be broken and does not compile, see https://github.com/boostorg/graph/issues/151
|
||||
|
||||
*/
|
||||
|
||||
#include <boost/config.hpp>
|
||||
#include <vector>
|
||||
#include <iostream>
|
||||
|
||||
@@ -5,6 +5,14 @@
|
||||
// accompanying file LICENSE_1_0.txt or copy at
|
||||
// http://www.boost.org/LICENSE_1_0.txt)
|
||||
//=======================================================================
|
||||
|
||||
/*
|
||||
IMPORTANT!!!
|
||||
~~~~~~~~~~~~
|
||||
This example uses interfaces that have been deprecated and removed from Boost.Grpah.
|
||||
Someone needs to update it, as it does NOT compile.
|
||||
*/
|
||||
|
||||
#include <boost/config.hpp>
|
||||
#include <fstream>
|
||||
#include <vector>
|
||||
|
||||
@@ -6,6 +6,17 @@
|
||||
|
||||
// Authors: Douglas Gregor
|
||||
// Andrew Lumsdaine
|
||||
|
||||
|
||||
/*
|
||||
IMPORTANT:
|
||||
~~~~~~~~~~
|
||||
|
||||
This example appears to be broken and does not compile, see https://github.com/boostorg/graph/issues/150
|
||||
|
||||
*/
|
||||
|
||||
|
||||
#include <boost/graph/compressed_sparse_row_graph.hpp>
|
||||
#include <string>
|
||||
#include <boost/graph/iteration_macros.hpp>
|
||||
|
||||
@@ -5,6 +5,14 @@
|
||||
// accompanying file LICENSE_1_0.txt or copy at
|
||||
// http://www.boost.org/LICENSE_1_0.txt)
|
||||
//=======================================================================
|
||||
|
||||
/*
|
||||
IMPORTANT!!!
|
||||
~~~~~~~~~~~~
|
||||
This example uses interfaces that have been deprecated and removed from Boost.Grpah.
|
||||
Someone needs to update it, as it does NOT compile.
|
||||
*/
|
||||
|
||||
#include <boost/graph/graphviz.hpp>
|
||||
#include <boost/graph/depth_first_search.hpp>
|
||||
|
||||
|
||||
@@ -5,6 +5,14 @@
|
||||
// accompanying file LICENSE_1_0.txt or copy at
|
||||
// http://www.boost.org/LICENSE_1_0.txt)
|
||||
//=======================================================================
|
||||
|
||||
/*
|
||||
IMPORTANT!!!
|
||||
~~~~~~~~~~~~
|
||||
This example uses interfaces that have been deprecated and removed from Boost.Grpah.
|
||||
Someone needs to update it, as it does NOT compile.
|
||||
*/
|
||||
|
||||
#include <boost/config.hpp>
|
||||
#include <algorithm>
|
||||
#include <utility>
|
||||
|
||||
@@ -8,6 +8,13 @@
|
||||
//=======================================================================
|
||||
|
||||
|
||||
/*
|
||||
IMPORTANT!!!
|
||||
~~~~~~~~~~~~
|
||||
This example uses interfaces that have been deprecated and removed from Boost.Grpah.
|
||||
Someone needs to update it, as it does NOT compile.
|
||||
*/
|
||||
|
||||
#include <boost/config.hpp>
|
||||
#include <set>
|
||||
#include <iostream>
|
||||
|
||||
@@ -5,6 +5,16 @@
|
||||
// accompanying file LICENSE_1_0.txt or copy at
|
||||
// http://www.boost.org/LICENSE_1_0.txt)
|
||||
//=======================================================================
|
||||
|
||||
|
||||
/*
|
||||
IMPORTANT:
|
||||
~~~~~~~~~~
|
||||
|
||||
This example appears to be broken and crashes at runtime, see https://github.com/boostorg/graph/issues/148
|
||||
|
||||
*/
|
||||
|
||||
#include <boost/config.hpp>
|
||||
#include <iostream>
|
||||
#include <fstream>
|
||||
|
||||
@@ -5,6 +5,15 @@
|
||||
// accompanying file LICENSE_1_0.txt or copy at
|
||||
// http://www.boost.org/LICENSE_1_0.txt)
|
||||
//=======================================================================
|
||||
|
||||
/*
|
||||
IMPORTANT!!!
|
||||
~~~~~~~~~~~~
|
||||
This example uses interfaces that have been deprecated and removed from Boost.Grpah.
|
||||
Someone needs to update it, as it does NOT compile.
|
||||
*/
|
||||
|
||||
|
||||
#include <boost/config.hpp>
|
||||
#include <iostream>
|
||||
#include <fstream>
|
||||
|
||||
@@ -4,6 +4,14 @@
|
||||
// Boost Software License, Version 1.0 (See accompanying file
|
||||
// LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
/*
|
||||
IMPORTANT!!!
|
||||
~~~~~~~~~~~~
|
||||
|
||||
This example does not compile, see https://github.com/boostorg/graph/issues/147
|
||||
|
||||
*/
|
||||
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
|
||||
|
||||
@@ -6,6 +6,15 @@
|
||||
// http://www.boost.org/LICENSE_1_0.txt)
|
||||
//=======================================================================
|
||||
|
||||
|
||||
/*
|
||||
IMPORTANT:
|
||||
~~~~~~~~~~
|
||||
|
||||
This example appears to be broken and crashes at runtime, see https://github.com/boostorg/graph/issues/148
|
||||
|
||||
*/
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#define _CRT_SECURE_NO_WARNINGS
|
||||
#endif
|
||||
|
||||
@@ -5,6 +5,14 @@
|
||||
// accompanying file LICENSE_1_0.txt or copy at
|
||||
// http://www.boost.org/LICENSE_1_0.txt)
|
||||
//=======================================================================
|
||||
|
||||
/*
|
||||
IMPORTANT!!!
|
||||
~~~~~~~~~~~~
|
||||
This example uses interfaces that have been deprecated and removed from Boost.Grpah.
|
||||
Someone needs to update it, as it does NOT compile.
|
||||
*/
|
||||
|
||||
#include <boost/config.hpp>
|
||||
#include <boost/concept/assert.hpp>
|
||||
#include <iostream>
|
||||
|
||||
@@ -6,6 +6,17 @@
|
||||
// accompanying file LICENSE_1_0.txt or copy at
|
||||
// http://www.boost.org/LICENSE_1_0.txt)
|
||||
//=======================================================================
|
||||
|
||||
|
||||
|
||||
/*
|
||||
IMPORTANT:
|
||||
~~~~~~~~~~
|
||||
|
||||
This example appears to be broken and crashes at runtime, see https://github.com/boostorg/graph/issues/149
|
||||
|
||||
*/
|
||||
|
||||
#include <boost/config.hpp>
|
||||
#include <iostream>
|
||||
#include <functional>
|
||||
|
||||
@@ -5,6 +5,14 @@
|
||||
// accompanying file LICENSE_1_0.txt or copy at
|
||||
// http://www.boost.org/LICENSE_1_0.txt)
|
||||
//=======================================================================
|
||||
|
||||
/*
|
||||
IMPORTANT!!!
|
||||
~~~~~~~~~~~~
|
||||
This example uses interfaces that have been deprecated and removed from Boost.Grpah.
|
||||
Someone needs to update it, as it does NOT compile.
|
||||
*/
|
||||
|
||||
#include <boost/config.hpp>
|
||||
#include <iostream>
|
||||
#include <fstream>
|
||||
|
||||
@@ -5,6 +5,15 @@
|
||||
// accompanying file LICENSE_1_0.txt or copy at
|
||||
// http://www.boost.org/LICENSE_1_0.txt)
|
||||
//=======================================================================
|
||||
|
||||
/*
|
||||
IMPORTANT!!!
|
||||
~~~~~~~~~~~~
|
||||
This example uses interfaces that have been deprecated and removed from Boost.Grpah.
|
||||
Someone needs to update it, as it does NOT compile.
|
||||
*/
|
||||
|
||||
|
||||
#include <boost/config.hpp>
|
||||
#include <iostream>
|
||||
#include <fstream>
|
||||
|
||||
@@ -5,6 +5,14 @@
|
||||
// accompanying file LICENSE_1_0.txt or copy at
|
||||
// http://www.boost.org/LICENSE_1_0.txt)
|
||||
//=======================================================================
|
||||
|
||||
/*
|
||||
IMPORTANT!!!
|
||||
~~~~~~~~~~~~
|
||||
This example uses interfaces that have been deprecated and removed from Boost.Grpah.
|
||||
Someone needs to update it, as it does NOT compile.
|
||||
*/
|
||||
|
||||
#include <boost/config.hpp>
|
||||
#include <iostream>
|
||||
#include <fstream>
|
||||
|
||||
@@ -5,6 +5,14 @@
|
||||
// accompanying file LICENSE_1_0.txt or copy at
|
||||
// http://www.boost.org/LICENSE_1_0.txt)
|
||||
//=======================================================================
|
||||
|
||||
/*
|
||||
IMPORTANT!!!
|
||||
~~~~~~~~~~~~
|
||||
This example uses interfaces that have been deprecated and removed from Boost.Grpah.
|
||||
Someone needs to update it, as it does NOT compile.
|
||||
*/
|
||||
|
||||
#include <boost/config.hpp>
|
||||
#include <fstream>
|
||||
#include <map>
|
||||
|
||||
@@ -7,6 +7,13 @@
|
||||
// http://www.boost.org/LICENSE_1_0.txt)
|
||||
//=======================================================================
|
||||
|
||||
/*
|
||||
IMPORTANT!!!
|
||||
~~~~~~~~~~~~
|
||||
This example uses interfaces that have been deprecated and removed from Boost.Grpah.
|
||||
Someone needs to update it, as it does NOT compile.
|
||||
*/
|
||||
|
||||
#include <boost/config.hpp>
|
||||
#include <iostream>
|
||||
#include <vector>
|
||||
|
||||
Reference in New Issue
Block a user