/* Copyright (c) 1997-2004
Ewgenij Gawrilow, Michael Joswig (Technische Universitaet Berlin, Germany)
http://www.math.tu-berlin.de/polymake, mailto:polymake@math.tu-berlin.de
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 2, or (at your option) any
later version: http://www.gnu.org/licenses/gpl.txt.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
*/
#ifndef _POLYMAKE_MERGE_VERTICES_H
#define _POLYMAKE_MERGE_VERTICES_H "$Project: polymake $$Id: merge_vertices.h 4714 2004-06-22 16:23:15Z gawrilow $"
#include <Array.h>
#include <Set.h>
#include <ext/hash_map>
#include <string>
namespace polymake { namespace topaz {
/** Merges two vertex sets according to their labels.
* Afterwards the first set of labels contains all new
* labels and the client returns a Map<int,int> mapping
* the vertices of the old complex to their new indices.
*
* The corresponding vertices of L1 and L2 are expected
* be numbered according to the topaz standard, that is
* consecutively starting with 0.
*/
std_ext::hash_map<int,int> merge_vertices (Array<std::string>& L1, const Array<std::string>& L2);
void merge_disjoint_vertices (Array<std::string>& L1, const Array<std::string>& L2);
} }
#endif // _POLYMAKE_MERGE_VERTICES_H
// Local Variables:
// mode:C++
// c-basic-offset:3
// End:
syntax highlighted by Code2HTML, v. 0.9.1