Prefer to use VS2013 for compiling and testing on AppVeyor
[TortoiseGit.git] / ext / OGDF / src / planarlayout / ShellingOrderModule.cpp
blob83f2fc5c6a5b9376d1b32e41c2ef2cce4352272c
1 /*
2 * $Revision: 2554 $
4 * last checkin:
5 * $Author: gutwenger $
6 * $Date: 2012-07-06 11:39:38 +0200 (Fr, 06. Jul 2012) $
7 ***************************************************************/
9 /** \file
10 * \brief Implements class ShellingOrderModule.
12 * \author Carsten Gutwenger
14 * \par License:
15 * This file is part of the Open Graph Drawing Framework (OGDF).
17 * \par
18 * Copyright (C)<br>
19 * See README.txt in the root directory of the OGDF installation for details.
21 * \par
22 * This program is free software; you can redistribute it and/or
23 * modify it under the terms of the GNU General Public License
24 * Version 2 or 3 as published by the Free Software Foundation;
25 * see the file LICENSE.txt included in the packaging of this file
26 * for details.
28 * \par
29 * This program is distributed in the hope that it will be useful,
30 * but WITHOUT ANY WARRANTY; without even the implied warranty of
31 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
32 * GNU General Public License for more details.
34 * \par
35 * You should have received a copy of the GNU General Public
36 * License along with this program; if not, write to the Free
37 * Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
38 * Boston, MA 02110-1301, USA.
40 * \see http://www.gnu.org/copyleft/gpl.html
41 ***************************************************************/
44 #include <ogdf/module/ShellingOrderModule.h>
47 namespace ogdf {
50 void ShellingOrderModule::call(const Graph &G,
51 ShellingOrder &order,
52 adjEntry adj)
54 List<ShellingOrderSet> partition;
55 doCall(G,adj,partition);
57 order.init(G,partition);
61 void ShellingOrderModule::callLeftmost(const Graph &G,
62 ShellingOrder &order,
63 adjEntry adj)
65 List<ShellingOrderSet> partition;
66 doCall(G,adj,partition);
68 order.initLeftmost(G,partition);
72 } // end namespace ogdf