Skip to content

Commit

Permalink
v1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
richelbilderbeek committed Jan 3, 2016
1 parent 7ce70d5 commit e5fc01f
Show file tree
Hide file tree
Showing 57 changed files with 2,370 additions and 459 deletions.
Binary file added BoostGraphTutorial/Petersen_graph.pdf
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include <cassert>
#include "add_custom_and_selectable_edge.h"
#include "create_empty_directed_custom_and_selectable_edges_and_vertices_graph.h"

#include "create_empty_undirected_custom_and_selectable_edges_and_vertices_graph.h"

void add_custom_and_selectable_edge_demo() noexcept
Expand Down
6 changes: 3 additions & 3 deletions BoostGraphTutorial/boost_graph_tutorial.lyx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ Introduction
\end_layout

\begin_layout Standard
This is 'A well-connected C++11 Boost.Graph tutorial', version 1.9.
This is 'A well-connected C++11 Boost.Graph tutorial', version 1.10.
\end_layout

\begin_layout Subsection
Expand Down Expand Up @@ -34343,12 +34343,12 @@ std::istream& ribi::cmap::operator>>(std::istream& is, my_class& any_class)

\begin_layout Plain Layout

assert(s == "0");
assert(s != "0");
\end_layout

\begin_layout Plain Layout

any_class_class = my_class(s);
any_class = my_class(s);
\end_layout

\begin_layout Plain Layout
Expand Down
Binary file modified BoostGraphTutorial/boost_graph_tutorial.pdf
Binary file not shown.
23 changes: 20 additions & 3 deletions BoostGraphTutorial/boost_graph_tutorial.pri
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,11 @@ HEADERS += \
$$PWD/create_empty_directed_custom_and_selectable_edges_and_vertices_graph.h \
$$PWD/create_empty_undirected_custom_and_selectable_edges_and_vertices_graph.h \
$$PWD/add_custom_and_selectable_edge.h \
$$PWD/create_custom_and_selectable_edges_and_vertices_markov_chain.h
$$PWD/create_custom_and_selectable_edges_and_vertices_markov_chain.h \
$$PWD/save_custom_and_selectable_edges_and_vertices_graph_to_dot.h \
$$PWD/load_directed_custom_and_selectable_edges_and_vertices_graph_from_dot.h \
$$PWD/create_custom_and_selectable_edges_and_vertices_k2_graph.h \
$$PWD/load_undirected_custom_and_selectable_edges_and_vertices_graph_from_dot.h

SOURCES += \
$$PWD/add_bundled_edge.cpp \
Expand Down Expand Up @@ -379,7 +383,11 @@ SOURCES += \
$$PWD/create_empty_directed_custom_and_selectable_edges_and_vertices_graph.cpp \
$$PWD/create_empty_undirected_custom_and_selectable_edges_and_vertices_graph.cpp \
$$PWD/add_custom_and_selectable_edge.cpp \
$$PWD/create_custom_and_selectable_edges_and_vertices_markov_chain.cpp
$$PWD/create_custom_and_selectable_edges_and_vertices_markov_chain.cpp \
$$PWD/save_custom_and_selectable_edges_and_vertices_graph_to_dot.cpp \
$$PWD/load_directed_custom_and_selectable_edges_and_vertices_graph_from_dot.cpp \
$$PWD/create_custom_and_selectable_edges_and_vertices_k2_graph.cpp \
$$PWD/load_undirected_custom_and_selectable_edges_and_vertices_graph_from_dot.cpp

# .impl files are the clean tutorial code snippets,
# without header guards and other housekeeping
Expand Down Expand Up @@ -682,5 +690,14 @@ OTHER_FILES += \
$$PWD/add_custom_and_selectable_edge.impl \
$$PWD/add_custom_and_selectable_edge_demo.impl \
$$PWD/create_custom_and_selectable_edges_and_vertices_markov_chain.impl \
$$PWD/create_custom_and_selectable_edges_and_vertices_markov_chain_demo.impl
$$PWD/create_custom_and_selectable_edges_and_vertices_markov_chain_demo.impl \
$$PWD/save_custom_and_selectable_vertices_graph_to_dot_demo.impl \
$$PWD/save_custom_and_selectable_edges_and_vertices_graph_to_dot.impl \
$$PWD/save_custom_and_selectable_edges_and_vertices_graph_to_dot_demo.impl \
$$PWD/load_directed_custom_and_selectable_edges_and_vertices_graph_from_dot.impl \
$$PWD/load_directed_custom_and_selectable_edges_and_vertices_graph_from_dot_demo.impl \
$$PWD/create_custom_and_selectable_edges_and_vertices_k2_graph.impl \
$$PWD/create_custom_and_selectable_edges_and_vertices_k2_graph_demo.impl \
$$PWD/load_undirected_custom_and_selectable_edges_and_vertices_graph_from_dot.impl \
$$PWD/load_undirected_custom_and_selectable_edges_and_vertices_graph_from_dot_demo.impl

0 comments on commit e5fc01f

Please sign in to comment.