/* -*- mode: C++; indent-tabs-mode: nil; -*-
* This file is a part of LEMON, a generic C++ optimization library.
* Copyright (C) 2003-2010
* 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/adaptors.h>
#include <lemon/concepts/graph.h>
#include <lemon/concepts/maps.h>
#include <lemon/lgf_reader.h>
#include <lemon/nagamochi_ibaraki.h>
void checkNagamochiIbarakiCompile()
typedef concepts::Graph Graph;
typedef Graph::Node Node;
typedef Graph::Edge Edge;
typedef concepts::ReadMap<Edge, Value> CapMap;
typedef concepts::WriteMap<Node, bool> CutMap;
NagamochiIbaraki<Graph, CapMap> ni_test(g, cap);
const NagamochiIbaraki<Graph, CapMap>& const_ni_test = ni_test;
b = ni_test.processNextPhase();
v = const_ni_test.minCutValue();
v = const_ni_test.minCutMap(cut);
template <typename Graph, typename CapMap, typename CutMap>
cutValue(const Graph& graph, const CapMap& cap, const CutMap& cut)
typename CapMap::Value sum = 0;
for (typename Graph::EdgeIt e(graph); e != INVALID; ++e) {
if (cut[graph.u(e)] != cut[graph.v(e)]) {
SmartGraph::EdgeMap<int> cap1(graph), cap2(graph), cap3(graph);
SmartGraph::NodeMap<bool> cut(graph);
istringstream input(lgf);
graphReader(graph, input)
NagamochiIbaraki<SmartGraph> ni(graph, cap1);
check(ni.minCutValue() == 1, "Wrong cut value");
check(ni.minCutValue() == cutValue(graph, cap1, cut), "Wrong cut value");
NagamochiIbaraki<SmartGraph> ni(graph, cap2);
check(ni.minCutValue() == 3, "Wrong cut value");
check(ni.minCutValue() == cutValue(graph, cap2, cut), "Wrong cut value");
NagamochiIbaraki<SmartGraph> ni(graph, cap3);
check(ni.minCutValue() == 5, "Wrong cut value");
check(ni.minCutValue() == cutValue(graph, cap3, cut), "Wrong cut value");
NagamochiIbaraki<SmartGraph>::SetUnitCapacity::Create ni(graph);
ConstMap<SmartGraph::Edge, int> cap4(1);
check(ni.minCutValue() == 1, "Wrong cut value");
check(ni.minCutValue() == cutValue(graph, cap4, cut), "Wrong cut value");