<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://www.programmingexamples.net/w/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://www.programmingexamples.net/w/index.php?action=history&amp;feed=atom&amp;title=Boost%2FBGL%2FRemoveVertex</id>
		<title>Boost/BGL/RemoveVertex - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://www.programmingexamples.net/w/index.php?action=history&amp;feed=atom&amp;title=Boost%2FBGL%2FRemoveVertex"/>
		<link rel="alternate" type="text/html" href="http://www.programmingexamples.net/w/index.php?title=Boost/BGL/RemoveVertex&amp;action=history"/>
		<updated>2026-06-10T11:28:43Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.23.5</generator>

	<entry>
		<id>http://www.programmingexamples.net/w/index.php?title=Boost/BGL/RemoveVertex&amp;diff=5025&amp;oldid=prev</id>
		<title>Daviddoria: moved CPP/Boost/RemoveVertex to Boost/BGL/RemoveVertex</title>
		<link rel="alternate" type="text/html" href="http://www.programmingexamples.net/w/index.php?title=Boost/BGL/RemoveVertex&amp;diff=5025&amp;oldid=prev"/>
				<updated>2011-11-16T12:49:17Z</updated>
		
		<summary type="html">&lt;p&gt;moved &lt;a href=&quot;/wiki/CPP/Boost/RemoveVertex&quot; class=&quot;mw-redirect&quot; title=&quot;CPP/Boost/RemoveVertex&quot;&gt;CPP/Boost/RemoveVertex&lt;/a&gt; to &lt;a href=&quot;/wiki/Boost/BGL/RemoveVertex&quot; title=&quot;Boost/BGL/RemoveVertex&quot;&gt;Boost/BGL/RemoveVertex&lt;/a&gt;&lt;/p&gt;
&lt;table class='diff diff-contentalign-left'&gt;
				&lt;tr style='vertical-align: top;'&gt;
				&lt;td colspan='1' style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan='1' style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;Revision as of 12:49, 16 November 2011&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan='2' style='text-align: center;'&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Daviddoria</name></author>	</entry>

	<entry>
		<id>http://www.programmingexamples.net/w/index.php?title=Boost/BGL/RemoveVertex&amp;diff=4524&amp;oldid=prev</id>
		<title>Daviddoria: Created page with '==CreateGraph.cpp== &lt;source lang=&quot;cpp&quot;&gt; #include &lt;iostream&gt; #include &lt;boost/graph/graph_traits.hpp&gt; #include &lt;boost/graph/undirected_graph.hpp&gt;  typedef boost::undirected_graph&lt;b…'</title>
		<link rel="alternate" type="text/html" href="http://www.programmingexamples.net/w/index.php?title=Boost/BGL/RemoveVertex&amp;diff=4524&amp;oldid=prev"/>
				<updated>2011-06-11T19:10:44Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;#039;==CreateGraph.cpp== &amp;lt;source lang=&amp;quot;cpp&amp;quot;&amp;gt; #include &amp;lt;iostream&amp;gt; #include &amp;lt;boost/graph/graph_traits.hpp&amp;gt; #include &amp;lt;boost/graph/undirected_graph.hpp&amp;gt;  typedef boost::undirected_graph&amp;lt;b…&amp;#039;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==CreateGraph.cpp==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;cpp&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;lt;iostream&amp;gt;&lt;br /&gt;
#include &amp;lt;boost/graph/graph_traits.hpp&amp;gt;&lt;br /&gt;
#include &amp;lt;boost/graph/undirected_graph.hpp&amp;gt;&lt;br /&gt;
&lt;br /&gt;
typedef boost::undirected_graph&amp;lt;boost::no_property&amp;gt; Graph;&lt;br /&gt;
&lt;br /&gt;
int main(int,char*[])&lt;br /&gt;
{&lt;br /&gt;
  // Create a graph object&lt;br /&gt;
  Graph g;&lt;br /&gt;
  &lt;br /&gt;
  // Add vertices&lt;br /&gt;
  Graph::vertex_descriptor v0 = g.add_vertex();&lt;br /&gt;
  Graph::vertex_descriptor v1 = g.add_vertex();&lt;br /&gt;
  Graph::vertex_descriptor v2 = g.add_vertex();&lt;br /&gt;
&lt;br /&gt;
  std::cout &amp;lt;&amp;lt; &amp;quot;There are &amp;quot; &amp;lt;&amp;lt; g.num_vertices() &amp;lt;&amp;lt; &amp;quot; vertices.&amp;quot; &amp;lt;&amp;lt; std::endl;&lt;br /&gt;
&lt;br /&gt;
  g.remove_vertex(v0);&lt;br /&gt;
&lt;br /&gt;
  std::cout &amp;lt;&amp;lt; &amp;quot;There are &amp;quot; &amp;lt;&amp;lt; g.num_vertices() &amp;lt;&amp;lt; &amp;quot; vertices.&amp;quot; &amp;lt;&amp;lt; std::endl;&lt;br /&gt;
  &lt;br /&gt;
  return 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==CMakeLists.txt==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;cmake&amp;quot;&amp;gt;&lt;br /&gt;
cmake_minimum_required(VERSION 2.6)&lt;br /&gt;
&lt;br /&gt;
Project(RemoveVertex)&lt;br /&gt;
&lt;br /&gt;
set(Boost_USE_MULTITHREADED ON)&lt;br /&gt;
FIND_PACKAGE(Boost 1.38 COMPONENTS required)&lt;br /&gt;
&lt;br /&gt;
INCLUDE_DIRECTORIES(${INCLUDE_DIRECTORIES} ${Boost_INCLUDE_DIRS})&lt;br /&gt;
LINK_DIRECTORIES(${LINK_DIRECTORIES} ${Boost_LIBRARY_DIRS})&lt;br /&gt;
&lt;br /&gt;
ADD_EXECUTABLE(RemoveVertex RemoveVertex.cpp)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Daviddoria</name></author>	</entry>

	</feed>