* This file is a part of LEMON, a generic C++ optimization library
* Copyright (C) 2003-2008
* Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
* (Egervary Research Group on Combinatorial Optimization, EGRES).
* Permission to use, modify and distribute this software is granted
* provided that this copyright notice appears in all copies. For
* precise terms see the accompanying LICENSE file.
* This software is provided "AS IS" with no warranty of any kind,
* express or implied, and with no claim as to its suitability for any
#include <lemon/graph_utils.h>
#include <lemon/list_graph.h>
#include <lemon/smart_graph.h>
#include "graph_utils_test.h"
typename Graph::Node n1=g.addNode();
typename Graph::Node n2=g.addNode();
typename Graph::Snapshot snap(g);
OutDegMap<Graph> outd(g);
check(ind[n1]==0 && ind[n2]==1, "Wrong InDegMap value.");
check(outd[n1]==1 && outd[n2]==0, "Wrong OutDegMap value.");
check(ind[n1]==1 && ind[n2]==2, "Wrong InDegMap value.");
check(outd[n1]==2 && outd[n2]==1, "Wrong OutDegMap value.");
check(ind[n1]==0 && ind[n2]==1, "Wrong InDegMap value.");
check(outd[n1]==1 && outd[n2]==0, "Wrong OutDegMap value.");
checkDigraphCounters<ListDigraph>();
checkFindArc<ListDigraph>();
{ // checking smart graph
checkDigraphCounters<SmartDigraph>();
checkFindArc<SmartDigraph>();
std::vector<SmartDigraph::Node> nodes;
for (int i = 0; i < num; ++i) {
nodes.push_back(fg.addNode());
for (int i = 0; i < num * num; ++i) {
fg.addArc(nodes[i / num], nodes[i % num]);
check(countNodes(fg) == num, "FullGraph: wrong node number.");
check(countArcs(fg) == num*num, "FullGraph: wrong arc number.");
for (SmartDigraph::NodeIt src(fg); src != INVALID; ++src) {
for (SmartDigraph::NodeIt trg(fg); trg != INVALID; ++trg) {
ConArcIt<SmartDigraph> con(fg, src, trg);
check(con != INVALID, "There is no connecting arc.");
check(fg.source(con) == src, "Wrong source.");
check(fg.target(con) == trg, "Wrong target.");
check(++con == INVALID, "There is more connecting arc.");
AllArcLookUp<SmartDigraph> el(fg);
for (SmartDigraph::NodeIt src(fg); src != INVALID; ++src) {
for (SmartDigraph::NodeIt trg(fg); trg != INVALID; ++trg) {
SmartDigraph::Arc con = el(src, trg);
check(con != INVALID, "There is no connecting arc.");
check(fg.source(con) == src, "Wrong source.");
check(fg.target(con) == trg, "Wrong target.");
check(el(src,trg,con) == INVALID, "There is more connecting arc.");
//check In/OutDegMap (and Snapshot feature)
checkSnapDeg<ListDigraph>();
checkSnapDeg<SmartDigraph>();
InDegMap<ListDigraph> inDeg(digraph);
OutDegMap<ListDigraph> outDeg(digraph);
std::vector<ListDigraph::Node> nodes(nodeNum);
for (int i = 0; i < nodeNum; ++i) {
nodes[i] = digraph.addNode();
std::vector<ListDigraph::Arc> arcs(arcNum);
for (int i = 0; i < arcNum; ++i) {
digraph.addArc(nodes[rnd[nodeNum]], nodes[rnd[nodeNum]]);
for (int i = 0; i < nodeNum; ++i) {
check(inDeg[nodes[i]] == countInArcs(digraph, nodes[i]),
for (int i = 0; i < nodeNum; ++i) {
check(outDeg[nodes[i]] == countOutArcs(digraph, nodes[i]),
std::cout << __FILE__ ": All tests passed.\n";