/* -*- mode: C++; indent-tabs-mode: nil; -*-
* 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/smart_graph.h>
#include <lemon/min_cost_arborescence.h>
#include <lemon/lgf_reader.h>
typedef SmartDigraph Digraph;
DIGRAPH_TYPEDEFS(Digraph);
typedef Digraph::ArcMap<double> CostMap;
std::istringstream is(test_lgf);
digraphReader(digraph, is).
node("source", source).run();
MinCostArborescence<Digraph, CostMap> mca(digraph, cost);
vector<pair<double, set<Node> > > dualSolution(mca.dualNum());
for (int i = 0; i < mca.dualNum(); ++i) {
dualSolution[i].first = mca.dualValue(i);
for (MinCostArborescence<Digraph, CostMap>::DualIt it(mca, i);
dualSolution[i].second.insert(it);
for (ArcIt it(digraph); it != INVALID; ++it) {
if (mca.reached(digraph.source(it))) {
for (int i = 0; i < int(dualSolution.size()); ++i) {
if (dualSolution[i].second.find(digraph.target(it))
!= dualSolution[i].second.end() &&
dualSolution[i].second.find(digraph.source(it))
== dualSolution[i].second.end()) {
sum += dualSolution[i].first;
if (mca.arborescence(it)) {
check(sum == cost[it], "INVALID DUAL");
check(sum <= cost[it], "INVALID DUAL");
check(mca.dualValue() == mca.arborescenceValue(), "INVALID DUAL");
check(mca.reached(source), "INVALID ARBORESCENCE");
for (ArcIt a(digraph); a != INVALID; ++a) {
check(!mca.reached(digraph.source(a)) ||
mca.reached(digraph.target(a)), "INVALID ARBORESCENCE");
for (NodeIt n(digraph); n != INVALID; ++n) {
if (!mca.reached(n)) continue;
for (InArcIt a(digraph, n); a != INVALID; ++a) {
if (mca.arborescence(a)) {
check(mca.pred(n) == a, "INVALID ARBORESCENCE");
check((n == source ? cnt == 0 : cnt == 1), "INVALID ARBORESCENCE");
Digraph::ArcMap<bool> arborescence(digraph);
check(mca.arborescenceValue() ==
minCostArborescence(digraph, cost, source, arborescence),