diff options
Diffstat (limited to 'math/ogdf')
-rw-r--r-- | math/ogdf/Makefile | 65 | ||||
-rw-r--r-- | math/ogdf/distinfo | 2 | ||||
-rw-r--r-- | math/ogdf/files/patch-include_coin_CglLandPUtils.hpp | 17 | ||||
-rw-r--r-- | math/ogdf/files/patch-include_ogdf_basic_System.h | 20 | ||||
-rw-r--r-- | math/ogdf/files/patch-include_ogdf_internal_basic_config.h | 23 | ||||
-rw-r--r-- | math/ogdf/files/patch-makeMakefile.config | 44 | ||||
-rw-r--r-- | math/ogdf/files/patch-makeMakefile.py | 22 | ||||
-rw-r--r-- | math/ogdf/files/patch-src_coin_Clp_ClpModel.cpp | 15 | ||||
-rw-r--r-- | math/ogdf/files/patch-src_coin_OsiClp_OsiClpSolverInterface.cpp | 15 | ||||
-rw-r--r-- | math/ogdf/files/patch-src_ogdf_basic_System.cpp | 77 | ||||
-rw-r--r-- | math/ogdf/files/patch-test_gtest_gtest.h | 29 | ||||
-rw-r--r-- | math/ogdf/pkg-descr | 13 | ||||
-rw-r--r-- | math/ogdf/pkg-plist | 668 |
13 files changed, 0 insertions, 1010 deletions
diff --git a/math/ogdf/Makefile b/math/ogdf/Makefile deleted file mode 100644 index d6419e99dad6..000000000000 --- a/math/ogdf/Makefile +++ /dev/null @@ -1,65 +0,0 @@ -# Created by: Pietro Cerutti <gahr@FreeBSD.org> -# $FreeBSD$ - -PORTNAME= ogdf -PORTVERSION= 2015.05 -PORTREVISION= 1 -CATEGORIES= math -MASTER_SITES= http://www.ogdf.net/lib/exe/fetch.php/tech: -DISTNAME= ${PORTNAME}.v${PORTVERSION} - -MAINTAINER= woodsb02@FreeBSD.org -COMMENT= C++ class library for the automatic layout of diagrams - -BROKEN= unfetchable -DEPRECATED= Broken, uses EOLed python27 -EXPIRATION_DATE= 2020-02-19 - -LICENSE= GPLv2 GPLv3 -LICENSE_COMB= dual -LICENSE_FILE_GPLv2= ${WRKSRC}/LICENSE_GPL_v2.txt -LICENSE_FILE_GPLv3= ${WRKSRC}/LICENSE_GPL_v3.txt - -USES= compiler:features gmake python:2.7,build zip -USE_LDCONFIG= yes -LDFLAGS+= -L${LOCALBASE}/lib - -FETCH_BEFORE_ARGS= -o ${PORTNAME}.v${PORTVERSION}.zip -WRKSRC= ${WRKDIR}/${PORTNAME:tu} - -OPTIONS_DEFINE= COIN -OPTIONS_DEFAULT= COIN -OPTIONS_SUB= yes - -COIN_DESC= Build with COIN solvers -COIN_USE= coin=true -COIN_CONFLICTS_INSTALL= CoinMP - -.include <bsd.port.pre.mk> - -.if ${COMPILER_FEATURES:Mc++11} -STDCPP11= -std=c++11 -.endif - -post-patch: - @${REINPLACE_CMD} -e '\ - s|%%CXX%%|${CXX}|g; \ - s|%%CXXFLAGS%%|${CXXFLAGS}|g; \ - s|%%LOCALBASE%%|${LOCALBASE}|g; \ - s|%%USE_COIN%%|${USE_COIN}|g' \ - ${WRKSRC}/makeMakefile.config - - @${REINPLACE_CMD} -e '\ - s|%%STDCPP11%%|${STDCPP11}|g' \ - ${WRKSRC}/makeMakefile.py - -do-configure: - cd ${WRKSRC} && ${PYTHON_CMD} makeMakefile.py - -post-install: - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libOGDF.so -.if ${PORT_OPTIONS:MCOIN} - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libCOIN.so -.endif - -.include <bsd.port.post.mk> diff --git a/math/ogdf/distinfo b/math/ogdf/distinfo deleted file mode 100644 index 0313f6c20160..000000000000 --- a/math/ogdf/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (ogdf.v2015.05.zip) = 12c279fe288e911b905956dcfdfb61ad983832175f16a72039a69fab2e6b5b3e -SIZE (ogdf.v2015.05.zip) = 5682221 diff --git a/math/ogdf/files/patch-include_coin_CglLandPUtils.hpp b/math/ogdf/files/patch-include_coin_CglLandPUtils.hpp deleted file mode 100644 index 3a27da33a5bb..000000000000 --- a/math/ogdf/files/patch-include_coin_CglLandPUtils.hpp +++ /dev/null @@ -1,17 +0,0 @@ -In file included from CglLandPSimplex.cpp:11: -In file included from ./CglLandPSimplex.hpp:31: -./CglLandPUtils.hpp:88:25: error: reinterpret_cast from 'nullptr_t' to 'OsiRowCut *' is not allowed - cuts_.resize(i, reinterpret_cast<OsiRowCut *> (NULL)); - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - ---- include/coin/CglLandPUtils.hpp.orig 2015-05-29 15:36:11 UTC -+++ include/coin/CglLandPUtils.hpp -@@ -85,7 +85,7 @@ struct Cuts - /** resize vector.*/ - void resize(unsigned int i) - { -- cuts_.resize(i, reinterpret_cast<OsiRowCut *> (NULL)); -+ cuts_.resize(i, static_cast<OsiRowCut *> (NULL)); - } - private: - /** Stores the number of cuts.*/ diff --git a/math/ogdf/files/patch-include_ogdf_basic_System.h b/math/ogdf/files/patch-include_ogdf_basic_System.h deleted file mode 100644 index 8702988ae2ba..000000000000 --- a/math/ogdf/files/patch-include_ogdf_basic_System.h +++ /dev/null @@ -1,20 +0,0 @@ ---- include/ogdf/basic/System.h.orig 2015-05-29 15:36:24 UTC -+++ include/ogdf/basic/System.h -@@ -53,7 +53,7 @@ - #define OGDF_SYSTEM_H - - --#if defined(OGDF_SYSTEM_OSX) -+#if defined(OGDF_SYSTEM_OSX) || defined(OGDF_SYSTEM_FREEBSD) - #include <stdlib.h> - #elif defined(OGDF_SYSTEM_UNIX) || defined(__MINGW32__) - #include <malloc.h> -@@ -176,7 +176,7 @@ public: - static void *alignedMemoryAlloc16(size_t size) { - #ifdef OGDF_SYSTEM_WINDOWS - return _aligned_malloc(size, 16); --#elif defined(OGDF_SYSTEM_OSX) -+#elif defined(OGDF_SYSTEM_OSX) || defined(OGDF_SYSTEM_FREEBSD) - // malloc returns 16 byte aligned memory on OS X. - return malloc(size); - #else diff --git a/math/ogdf/files/patch-include_ogdf_internal_basic_config.h b/math/ogdf/files/patch-include_ogdf_internal_basic_config.h deleted file mode 100644 index 834170433995..000000000000 --- a/math/ogdf/files/patch-include_ogdf_internal_basic_config.h +++ /dev/null @@ -1,23 +0,0 @@ ---- include/ogdf/internal/basic/config.h.orig 2015-05-29 15:36:28 UTC -+++ include/ogdf/internal/basic/config.h -@@ -95,6 +95,11 @@ using std::string; - #define OGDF_SYSTEM_OSX - #endif - -+// Note: FreeBSD machines will be both OGDF_SYSTEM_UNIX and OGDF_SYSTEM_OSX -+#if defined(__FreeBSD__) || defined(__DragonFly__) -+#define OGDF_SYSTEM_FREEBSD -+#endif -+ - - // COIN and ABACUS - #if defined(USE_COIN) -@@ -124,7 +129,7 @@ using std::string; - // C++ standard - //--------------------------------------------------------- - --#if __cplusplus >= 201103 -+#if __cplusplus >= 201103L - #define OGDF_HAVE_CPP11 - - #elif defined(_MSC_VER) diff --git a/math/ogdf/files/patch-makeMakefile.config b/math/ogdf/files/patch-makeMakefile.config deleted file mode 100644 index 1f21ff377f37..000000000000 --- a/math/ogdf/files/patch-makeMakefile.config +++ /dev/null @@ -1,44 +0,0 @@ ---- makeMakefile.config.orig 2015-05-29 15:36:39 UTC -+++ makeMakefile.config -@@ -1,19 +1,19 @@ - [GENERAL] - #********************************************************** - --compilerCommand = g++ -+compilerCommand = %%CXX%% - # MAC USERS: if building fails, try the following line: - #compilerCommand = g++ -stdlib=libstdc++ - --compilerParams = -+compilerParams = %%CXXFLAGS%% - - #* build static (false) or shared (true) libraries --sharedLib = false -+sharedLib = true - - #* command used to create a static library - libCommand = ar - #* command used to create a shared library --sharedlibCommand = g++ -+sharedlibCommand = %%CXX%% - - #* blank means don't call ranlib - ranlibCommand = ranlib -@@ -25,7 +25,7 @@ ranlibCommand = ranlib - rmCommand = rm -rf - mkdirCommand = mkdir -p - --installPrefix = /usr/local -+installPrefix = %%LOCALBASE%% - - - [VERSIONS] -@@ -57,7 +57,7 @@ memoryManager = - [COIN] - #********************************************************** - #* set to "true" to use COIN --useCoin = true -+useCoin = %%USE_COIN%% - - #* name of the static (import) library - libName = libCOIN.a diff --git a/math/ogdf/files/patch-makeMakefile.py b/math/ogdf/files/patch-makeMakefile.py deleted file mode 100644 index 6214f2731f2f..000000000000 --- a/math/ogdf/files/patch-makeMakefile.py +++ /dev/null @@ -1,22 +0,0 @@ ---- makeMakefile.py.orig 2015-05-29 15:36:39 UTC -+++ makeMakefile.py -@@ -154,7 +154,7 @@ if useCoin: - if sharedLib and (sys.platform == 'win32' or sys.platform == 'cygwin'): - libs += ' -l' + v.coinSharedName() - --ogdfFlags = '-I./include ' + addIncludes -+ogdfFlags = '-I./include %%STDCPP11%% ' + addIncludes - coinFlags = '$(COIN_INSTALL_DEFINES) -I./include/coin ' + addIncludes - - if sharedLib: -@@ -458,8 +458,8 @@ if installPrefix: - if useCoin: - InstallHeaders('include/coin', makefile, installPrefix) - makefile.write('\ninstall-pkgconfig: ogdf.pc\n') -- makefile.write('\tinstall -d $(DESTDIR)' + installPrefix + '/lib/pkgconfig\n') -- makefile.write('\tinstall -m 0644 ogdf.pc $(DESTDIR)' + installPrefix + '/lib/pkgconfig\n') -+ makefile.write('\tinstall -d $(DESTDIR)' + installPrefix + '/libdata/pkgconfig\n') -+ makefile.write('\tinstall -m 0644 ogdf.pc $(DESTDIR)' + installPrefix + '/libdata/pkgconfig\n') - - makefile.write('\ndistclean: clean-doc') - for v in versions: diff --git a/math/ogdf/files/patch-src_coin_Clp_ClpModel.cpp b/math/ogdf/files/patch-src_coin_Clp_ClpModel.cpp deleted file mode 100644 index 0e979f79517d..000000000000 --- a/math/ogdf/files/patch-src_coin_Clp_ClpModel.cpp +++ /dev/null @@ -1,15 +0,0 @@ -ClpModel.cpp:3848:24: error: reinterpret_cast from 'nullptr_t' to 'const char *' is not allowed - reinterpret_cast<const char*> (NULL) /*integrality*/, - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - ---- src/coin/Clp/ClpModel.cpp.orig 2015-05-29 15:36:41 UTC -+++ src/coin/Clp/ClpModel.cpp -@@ -3619,7 +3619,7 @@ ClpModel::writeMps(const char *filename, - writer.setMpsData(*(matrix_->getPackedMatrix()), COIN_DBL_MAX, - getColLower(), getColUpper(), - objective, -- reinterpret_cast<const char*> (NULL) /*integrality*/, -+ static_cast<const char*> (NULL) /*integrality*/, - getRowLower(), getRowUpper(), - columnNames, rowNames); - // Pass in array saying if each variable integer diff --git a/math/ogdf/files/patch-src_coin_OsiClp_OsiClpSolverInterface.cpp b/math/ogdf/files/patch-src_coin_OsiClp_OsiClpSolverInterface.cpp deleted file mode 100644 index 0659737b62d0..000000000000 --- a/math/ogdf/files/patch-src_coin_OsiClp_OsiClpSolverInterface.cpp +++ /dev/null @@ -1,15 +0,0 @@ -OsiClpSolverInterface.cpp:1451:50: error: reinterpret_cast from 'nullptr_t' to 'int *' is not allowed - messagesPointer->setDetailMessages(100,10000,reinterpret_cast<int *> (NULL)); - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - ---- src/coin/OsiClp/OsiClpSolverInterface.cpp.orig 2015-05-29 15:36:45 UTC -+++ src/coin/OsiClp/OsiClpSolverInterface.cpp -@@ -1422,7 +1422,7 @@ OsiClpSolverInterface::setupForRepeatedUse(int senseOf - if (stopPrinting) { - CoinMessages * messagesPointer = modelPtr_->messagesPointer(); - // won't even build messages -- messagesPointer->setDetailMessages(100,10000,reinterpret_cast<int *> (NULL)); -+ messagesPointer->setDetailMessages(100,10000,static_cast<int *> (NULL)); - } - #endif - } diff --git a/math/ogdf/files/patch-src_ogdf_basic_System.cpp b/math/ogdf/files/patch-src_ogdf_basic_System.cpp deleted file mode 100644 index 5ff22adb014b..000000000000 --- a/math/ogdf/files/patch-src_ogdf_basic_System.cpp +++ /dev/null @@ -1,77 +0,0 @@ ---- src/ogdf/basic/System.cpp.orig 2015-05-29 15:36:49 UTC -+++ src/ogdf/basic/System.cpp -@@ -52,6 +52,13 @@ - #include <mach/vm_statistics.h> - #include <mach/mach.h> - #include <mach/machine.h> -+#elif defined(OGDF_SYSTEM_FREEBSD) -+#include <stdlib.h> -+#include <unistd.h> -+#include <sys/types.h> -+#include <sys/sysctl.h> -+#include <sys/time.h> -+#include <sys/resource.h> - #elif defined(OGDF_SYSTEM_UNIX) - #include <malloc.h> - #endif -@@ -308,6 +315,40 @@ size_t System::memoryUsedByProcess() - return 0; - } - -+#elif defined(OGDF_SYSTEM_FREEBSD) -+ -+long long System::physicalMemory() -+{ -+ unsigned long value; -+ size_t size = sizeof( value ); -+ if (sysctlbyname("hw.physmem", (void *)&value, &size, NULL, 0) != -1) -+ return value; -+ else -+ return 0; -+} -+ -+long long System::availablePhysicalMemory() -+{ -+ int pageSize = getpagesize (); -+ unsigned long result; -+ size_t size = sizeof (result); -+ -+ if (sysctlbyname("vm.stats.vm.v_free_count", (void *)&result, &size, NULL, 0) != -1) -+ return result * pageSize; -+ else -+ return 0; -+} -+ -+ -+size_t System::memoryUsedByProcess() -+{ -+ struct rusage r; -+ if (getrusage(RUSAGE_SELF, &r) != -1) -+ return r.ru_maxrss; -+ else -+ return 0; -+} -+ - #else - // LINUX, NOT MAC OS - long long System::physicalMemory() -@@ -389,6 +430,19 @@ size_t System::memoryInFreelistOfMalloc( - { - return mstats().chunks_free; - } -+ -+#elif defined(OGDF_SYSTEM_FREEBSD) -+ -+size_t System::memoryAllocatedByMalloc() -+{ -+ return 0; -+} -+ -+size_t System::memoryInFreelistOfMalloc() -+{ -+ return 0; -+} -+ - #else - - size_t System::memoryAllocatedByMalloc() diff --git a/math/ogdf/files/patch-test_gtest_gtest.h b/math/ogdf/files/patch-test_gtest_gtest.h deleted file mode 100644 index a62ad8bdb911..000000000000 --- a/math/ogdf/files/patch-test_gtest_gtest.h +++ /dev/null @@ -1,29 +0,0 @@ ---- test/gtest/gtest.h.orig 2015-05-29 15:37:01 UTC -+++ test/gtest/gtest.h -@@ -181,6 +181,7 @@ - // the given platform; otherwise undefined): - // GTEST_OS_AIX - IBM AIX - // GTEST_OS_CYGWIN - Cygwin -+// GTEST_OS_FREEBSD - FreeBSD - // GTEST_OS_HPUX - HP-UX - // GTEST_OS_LINUX - Linux - // GTEST_OS_LINUX_ANDROID - Google Android -@@ -337,6 +338,9 @@ - # define GTEST_OS_HPUX 1 - #elif defined __native_client__ - # define GTEST_OS_NACL 1 -+#elif defined(__FreeBSD__) || defined(__DragonFly__) -+# define GTEST_OS_FREEBSD 1 -+# define GTEST_USE_OWN_TR1_TUPLE 1 - #endif // __CYGWIN__ - - // Brings in definitions for functions used in the testing::internal::posix -@@ -1602,7 +1606,7 @@ inline bool operator!=(const GTEST_10_TU - // pops up a dialog window that cannot be suppressed programmatically. - #if (GTEST_OS_LINUX || GTEST_OS_MAC || GTEST_OS_CYGWIN || GTEST_OS_SOLARIS || \ - (GTEST_OS_WINDOWS_DESKTOP && _MSC_VER >= 1400) || \ -- GTEST_OS_WINDOWS_MINGW || GTEST_OS_AIX || GTEST_OS_HPUX) -+ GTEST_OS_WINDOWS_MINGW || GTEST_OS_AIX || GTEST_OS_HPUX || GTEST_OS_FREEBSD ) - # define GTEST_HAS_DEATH_TEST 1 - # include <vector> // NOLINT - #endif diff --git a/math/ogdf/pkg-descr b/math/ogdf/pkg-descr deleted file mode 100644 index 2c7419f518f4..000000000000 --- a/math/ogdf/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -OGDF (Open Graph Drawing Framework) is a self-contained C++ class library for -the automatic layout of diagrams. OGDF offers sophisticated algorithms and data -structures to use within your own applications or scientific projects. -The library provides: - -* A wide range of graph drawing algorithms that allow to reuse and replace - particular algorithm phases by using a dedicated module mechanism. -* Sophisticated data structures that are commonly used in graph drawing, - equipped with rich public interfaces. -* Self-contained code that does not require any additional libraries - (except for some optional branch-and-cut algorithms). - -WWW: http://www.ogdf.net diff --git a/math/ogdf/pkg-plist b/math/ogdf/pkg-plist deleted file mode 100644 index 6953d4ad4fbb..000000000000 --- a/math/ogdf/pkg-plist +++ /dev/null @@ -1,668 +0,0 @@ -%%COIN%%include/coin/CglAllDifferent.hpp -%%COIN%%include/coin/CglClique.hpp -%%COIN%%include/coin/CglConfig.h -%%COIN%%include/coin/CglCutGenerator.hpp -%%COIN%%include/coin/CglDuplicateRow.hpp -%%COIN%%include/coin/CglFlowCover.hpp -%%COIN%%include/coin/CglGomory.hpp -%%COIN%%include/coin/CglKnapsackCover.hpp -%%COIN%%include/coin/CglLandP.hpp -%%COIN%%include/coin/CglLandPMessages.hpp -%%COIN%%include/coin/CglLandPSimplex.hpp -%%COIN%%include/coin/CglLandPTabRow.hpp -%%COIN%%include/coin/CglLandPUtils.hpp -%%COIN%%include/coin/CglLandPValidator.hpp -%%COIN%%include/coin/CglLiftAndProject.hpp -%%COIN%%include/coin/CglMessage.hpp -%%COIN%%include/coin/CglMixedIntegerRounding.hpp -%%COIN%%include/coin/CglMixedIntegerRounding2.hpp -%%COIN%%include/coin/CglOddHole.hpp -%%COIN%%include/coin/CglParam.hpp -%%COIN%%include/coin/CglPreProcess.hpp -%%COIN%%include/coin/CglProbing.hpp -%%COIN%%include/coin/CglRedSplit.hpp -%%COIN%%include/coin/CglRedSplitParam.hpp -%%COIN%%include/coin/CglResidualCapacity.hpp -%%COIN%%include/coin/CglSimpleRounding.hpp -%%COIN%%include/coin/CglStored.hpp -%%COIN%%include/coin/CglTreeInfo.hpp -%%COIN%%include/coin/CglTwomir.hpp -%%COIN%%include/coin/ClpCholeskyBase.hpp -%%COIN%%include/coin/ClpCholeskyDense.hpp -%%COIN%%include/coin/ClpCholeskyMumps.hpp -%%COIN%%include/coin/ClpCholeskyTaucs.hpp -%%COIN%%include/coin/ClpCholeskyUfl.hpp -%%COIN%%include/coin/ClpCholeskyWssmp.hpp -%%COIN%%include/coin/ClpCholeskyWssmpKKT.hpp -%%COIN%%include/coin/ClpConfig.h -%%COIN%%include/coin/ClpConstraint.hpp -%%COIN%%include/coin/ClpConstraintLinear.hpp -%%COIN%%include/coin/ClpConstraintQuadratic.hpp -%%COIN%%include/coin/ClpDualRowDantzig.hpp -%%COIN%%include/coin/ClpDualRowPivot.hpp -%%COIN%%include/coin/ClpDualRowSteepest.hpp -%%COIN%%include/coin/ClpDummyMatrix.hpp -%%COIN%%include/coin/ClpDynamicExampleMatrix.hpp -%%COIN%%include/coin/ClpDynamicMatrix.hpp -%%COIN%%include/coin/ClpEventHandler.hpp -%%COIN%%include/coin/ClpFactorization.hpp -%%COIN%%include/coin/ClpGubDynamicMatrix.hpp -%%COIN%%include/coin/ClpGubMatrix.hpp -%%COIN%%include/coin/ClpHelperFunctions.hpp -%%COIN%%include/coin/ClpInterior.hpp -%%COIN%%include/coin/ClpLinearObjective.hpp -%%COIN%%include/coin/ClpLsqr.hpp -%%COIN%%include/coin/ClpMatrixBase.hpp -%%COIN%%include/coin/ClpMessage.hpp -%%COIN%%include/coin/ClpModel.hpp -%%COIN%%include/coin/ClpNetworkBasis.hpp -%%COIN%%include/coin/ClpNetworkMatrix.hpp -%%COIN%%include/coin/ClpNode.hpp -%%COIN%%include/coin/ClpNonLinearCost.hpp -%%COIN%%include/coin/ClpObjective.hpp -%%COIN%%include/coin/ClpPackedMatrix.hpp -%%COIN%%include/coin/ClpParameters.hpp -%%COIN%%include/coin/ClpPdco.hpp -%%COIN%%include/coin/ClpPdcoBase.hpp -%%COIN%%include/coin/ClpPlusMinusOneMatrix.hpp -%%COIN%%include/coin/ClpPredictorCorrector.hpp -%%COIN%%include/coin/ClpPresolve.hpp -%%COIN%%include/coin/ClpPrimalColumnDantzig.hpp -%%COIN%%include/coin/ClpPrimalColumnPivot.hpp -%%COIN%%include/coin/ClpPrimalColumnSteepest.hpp -%%COIN%%include/coin/ClpPrimalQuadraticDantzig.hpp -%%COIN%%include/coin/ClpQuadraticObjective.hpp -%%COIN%%include/coin/ClpSimplex.hpp -%%COIN%%include/coin/ClpSimplexDual.hpp -%%COIN%%include/coin/ClpSimplexNonlinear.hpp -%%COIN%%include/coin/ClpSimplexOther.hpp -%%COIN%%include/coin/ClpSimplexPrimal.hpp -%%COIN%%include/coin/ClpSolve.hpp -%%COIN%%include/coin/CoinAlloc.hpp -%%COIN%%include/coin/CoinBuild.hpp -%%COIN%%include/coin/CoinDenseFactorization.hpp -%%COIN%%include/coin/CoinDenseVector.hpp -%%COIN%%include/coin/CoinDistance.hpp -%%COIN%%include/coin/CoinError.hpp -%%COIN%%include/coin/CoinFactorization.hpp -%%COIN%%include/coin/CoinFileIO.hpp -%%COIN%%include/coin/CoinFinite.hpp -%%COIN%%include/coin/CoinFloatEqual.hpp -%%COIN%%include/coin/CoinHelperFunctions.hpp -%%COIN%%include/coin/CoinIndexedVector.hpp -%%COIN%%include/coin/CoinLpIO.hpp -%%COIN%%include/coin/CoinMessage.hpp -%%COIN%%include/coin/CoinMessageHandler.hpp -%%COIN%%include/coin/CoinModel.hpp -%%COIN%%include/coin/CoinModelUseful.hpp -%%COIN%%include/coin/CoinMpsIO.hpp -%%COIN%%include/coin/CoinOslC.h -%%COIN%%include/coin/CoinOslFactorization.hpp -%%COIN%%include/coin/CoinPackedMatrix.hpp -%%COIN%%include/coin/CoinPackedVector.hpp -%%COIN%%include/coin/CoinPackedVectorBase.hpp -%%COIN%%include/coin/CoinParam.hpp -%%COIN%%include/coin/CoinPragma.hpp -%%COIN%%include/coin/CoinPresolveDoubleton.hpp -%%COIN%%include/coin/CoinPresolveDual.hpp -%%COIN%%include/coin/CoinPresolveDupcol.hpp -%%COIN%%include/coin/CoinPresolveEmpty.hpp -%%COIN%%include/coin/CoinPresolveFixed.hpp -%%COIN%%include/coin/CoinPresolveForcing.hpp -%%COIN%%include/coin/CoinPresolveImpliedFree.hpp -%%COIN%%include/coin/CoinPresolveIsolated.hpp -%%COIN%%include/coin/CoinPresolveMatrix.hpp -%%COIN%%include/coin/CoinPresolvePsdebug.hpp -%%COIN%%include/coin/CoinPresolveSingleton.hpp -%%COIN%%include/coin/CoinPresolveSubst.hpp -%%COIN%%include/coin/CoinPresolveTighten.hpp -%%COIN%%include/coin/CoinPresolveTripleton.hpp -%%COIN%%include/coin/CoinPresolveUseless.hpp -%%COIN%%include/coin/CoinPresolveZeros.hpp -%%COIN%%include/coin/CoinSearchTree.hpp -%%COIN%%include/coin/CoinShallowPackedVector.hpp -%%COIN%%include/coin/CoinSignal.hpp -%%COIN%%include/coin/CoinSimpFactorization.hpp -%%COIN%%include/coin/CoinSmartPtr.hpp -%%COIN%%include/coin/CoinSnapshot.hpp -%%COIN%%include/coin/CoinSort.hpp -%%COIN%%include/coin/CoinStructuredModel.hpp -%%COIN%%include/coin/CoinTime.hpp -%%COIN%%include/coin/CoinTypes.hpp -%%COIN%%include/coin/CoinUtility.hpp -%%COIN%%include/coin/CoinUtilsConfig.h -%%COIN%%include/coin/CoinWarmStart.hpp -%%COIN%%include/coin/CoinWarmStartBasis.hpp -%%COIN%%include/coin/CoinWarmStartDual.hpp -%%COIN%%include/coin/CoinWarmStartPrimalDual.hpp -%%COIN%%include/coin/CoinWarmStartVector.hpp -%%COIN%%include/coin/Coin_C_defines.h -%%COIN%%include/coin/Idiot.hpp -%%COIN%%include/coin/MyEventHandler.hpp -%%COIN%%include/coin/MyMessageHandler.hpp -%%COIN%%include/coin/OsiAuxInfo.hpp -%%COIN%%include/coin/OsiBranchingObject.hpp -%%COIN%%include/coin/OsiChooseVariable.hpp -%%COIN%%include/coin/OsiClpSolverInterface.hpp -%%COIN%%include/coin/OsiColCut.hpp -%%COIN%%include/coin/OsiCollections.hpp -%%COIN%%include/coin/OsiCpxSolverInterface.hpp -%%COIN%%include/coin/OsiCut.hpp -%%COIN%%include/coin/OsiCuts.hpp -%%COIN%%include/coin/OsiGrbSolverInterface.hpp -%%COIN%%include/coin/OsiPresolve.hpp -%%COIN%%include/coin/OsiRowCut.hpp -%%COIN%%include/coin/OsiRowCutDebugger.hpp -%%COIN%%include/coin/OsiSolverBranch.hpp -%%COIN%%include/coin/OsiSolverInterface.hpp -%%COIN%%include/coin/OsiSolverParameters.hpp -%%COIN%%include/coin/OsiSymSolverInterface.hpp -%%COIN%%include/coin/OsiSymSolverParameters.hpp -%%COIN%%include/coin/SymConfig.h -%%COIN%%include/coin/SymWarmStart.hpp -%%COIN%%include/coin/config.h -%%COIN%%include/coin/config_cgl.h -%%COIN%%include/coin/config_cgl_default.h -%%COIN%%include/coin/config_clp_default.h -%%COIN%%include/coin/config_coinutils_default.h -%%COIN%%include/coin/config_default.h -%%COIN%%include/coin/config_sym_default.h -%%COIN%%include/coin/configall_system.h -%%COIN%%include/coin/configall_system_msc.h -%%COIN%%include/coin/sym_cg.h -%%COIN%%include/coin/sym_cg_params.h -%%COIN%%include/coin/sym_cg_u.h -%%COIN%%include/coin/sym_constants.h -%%COIN%%include/coin/sym_cp.h -%%COIN%%include/coin/sym_cp_params.h -%%COIN%%include/coin/sym_cp_u.h -%%COIN%%include/coin/sym_dg.h -%%COIN%%include/coin/sym_dg_params.h -%%COIN%%include/coin/sym_dg_u.h -%%COIN%%include/coin/sym_lp.h -%%COIN%%include/coin/sym_lp_params.h -%%COIN%%include/coin/sym_lp_solver.h -%%COIN%%include/coin/sym_lp_u.h -%%COIN%%include/coin/sym_macros.h -%%COIN%%include/coin/sym_master.h -%%COIN%%include/coin/sym_master_params.h -%%COIN%%include/coin/sym_master_u.h -%%COIN%%include/coin/sym_messages.h -%%COIN%%include/coin/sym_pack_array.h -%%COIN%%include/coin/sym_pack_cut.h -%%COIN%%include/coin/sym_prep.h -%%COIN%%include/coin/sym_prep_params.h -%%COIN%%include/coin/sym_primal_heuristics.h -%%COIN%%include/coin/sym_proccomm.h -%%COIN%%include/coin/sym_proto.h -%%COIN%%include/coin/sym_qsort.h -%%COIN%%include/coin/sym_return_values.h -%%COIN%%include/coin/sym_timemeas.h -%%COIN%%include/coin/sym_tm.h -%%COIN%%include/coin/sym_tm_params.h -%%COIN%%include/coin/sym_types.h -%%COIN%%include/coin/sym_win32_time.h -%%COIN%%include/coin/symphony.h -%%COIN%%include/coin/symphony_api.h -include/ogdf/abacus/abacusroot.h -include/ogdf/abacus/active.h -include/ogdf/abacus/bheap.h -include/ogdf/abacus/boundbranchrule.h -include/ogdf/abacus/bprioqueue.h -include/ogdf/abacus/branchrule.h -include/ogdf/abacus/column.h -include/ogdf/abacus/colvar.h -include/ogdf/abacus/conbranchrule.h -include/ogdf/abacus/conclass.h -include/ogdf/abacus/constraint.h -include/ogdf/abacus/convar.h -include/ogdf/abacus/csense.h -include/ogdf/abacus/cutbuffer.h -include/ogdf/abacus/fixcand.h -include/ogdf/abacus/fsvarstat.h -include/ogdf/abacus/global.h -include/ogdf/abacus/hash.h -include/ogdf/abacus/history.h -include/ogdf/abacus/infeascon.h -include/ogdf/abacus/lp.h -include/ogdf/abacus/lpmaster.h -include/ogdf/abacus/lpmasterosi.h -include/ogdf/abacus/lpsolution.h -include/ogdf/abacus/lpsub.h -include/ogdf/abacus/lpsubosi.h -include/ogdf/abacus/lpvarstat.h -include/ogdf/abacus/master.h -include/ogdf/abacus/nonduplpool.h -include/ogdf/abacus/numcon.h -include/ogdf/abacus/numvar.h -include/ogdf/abacus/opensub.h -include/ogdf/abacus/optsense.h -include/ogdf/abacus/osiif.h -include/ogdf/abacus/osiinclude.h -include/ogdf/abacus/pool.h -include/ogdf/abacus/poolslot.h -include/ogdf/abacus/poolslotref.h -include/ogdf/abacus/ring.h -include/ogdf/abacus/row.h -include/ogdf/abacus/rowcon.h -include/ogdf/abacus/separator.h -include/ogdf/abacus/setbranchrule.h -include/ogdf/abacus/slackstat.h -include/ogdf/abacus/sparvec.h -include/ogdf/abacus/srowcon.h -include/ogdf/abacus/standardpool.h -include/ogdf/abacus/sub.h -include/ogdf/abacus/tailoff.h -include/ogdf/abacus/valbranchrule.h -include/ogdf/abacus/variable.h -include/ogdf/abacus/vartype.h -include/ogdf/augmentation/DfsMakeBiconnected.h -include/ogdf/augmentation/PlanarAugmentation.h -include/ogdf/augmentation/PlanarAugmentationFix.h -include/ogdf/basic/AdjEntryArray.h -include/ogdf/basic/AdjacencyOracle.h -include/ogdf/basic/Array.h -include/ogdf/basic/Array2D.h -include/ogdf/basic/ArrayBuffer.h -include/ogdf/basic/Barrier.h -include/ogdf/basic/BinaryHeap.h -include/ogdf/basic/BinaryHeap2.h -include/ogdf/basic/BoundedQueue.h -include/ogdf/basic/BoundedStack.h -include/ogdf/basic/CombinatorialEmbedding.h -include/ogdf/basic/Constraints.h -include/ogdf/basic/CriticalSection.h -include/ogdf/basic/DisjointSets.h -include/ogdf/basic/DualGraph.h -include/ogdf/basic/EFreeList.h -include/ogdf/basic/EList.h -include/ogdf/basic/EdgeArray.h -include/ogdf/basic/EdgeComparer.h -include/ogdf/basic/EdgeComparerSimple.h -include/ogdf/basic/FaceArray.h -include/ogdf/basic/FaceSet.h -include/ogdf/basic/Graph.h -include/ogdf/basic/GraphAttributes.h -include/ogdf/basic/GraphCopy.h -include/ogdf/basic/GraphCopyAttributes.h -include/ogdf/basic/GraphList.h -include/ogdf/basic/GraphObserver.h -include/ogdf/basic/Graph_d.h -include/ogdf/basic/GridLayout.h -include/ogdf/basic/GridLayoutMapped.h -include/ogdf/basic/HashArray.h -include/ogdf/basic/HashArray2D.h -include/ogdf/basic/HashIterator2D.h -include/ogdf/basic/Hashing.h -include/ogdf/basic/HeapBase.h -include/ogdf/basic/HyperGraph.h -include/ogdf/basic/IncNodeInserter.h -include/ogdf/basic/Layout.h -include/ogdf/basic/LayoutStandards.h -include/ogdf/basic/List.h -include/ogdf/basic/Logger.h -include/ogdf/basic/Math.h -include/ogdf/basic/MinHeap.h -include/ogdf/basic/MinPriorityQueue.h -include/ogdf/basic/Module.h -include/ogdf/basic/ModuleOption.h -include/ogdf/basic/NearestRectangleFinder.h -include/ogdf/basic/NodeArray.h -include/ogdf/basic/NodeComparer.h -include/ogdf/basic/NodeSet.h -include/ogdf/basic/PreprocessorLayout.h -include/ogdf/basic/Queue.h -include/ogdf/basic/SList.h -include/ogdf/basic/Skiplist.h -include/ogdf/basic/Stack.h -include/ogdf/basic/Stopwatch.h -include/ogdf/basic/SubsetEnumerator.h -include/ogdf/basic/System.h -include/ogdf/basic/Thread.h -include/ogdf/basic/Timeouter.h -include/ogdf/basic/TopologyModule.h -include/ogdf/basic/basic.h -include/ogdf/basic/comparer.h -include/ogdf/basic/exceptions.h -include/ogdf/basic/extended_graph_alg.h -include/ogdf/basic/geometry.h -include/ogdf/basic/graph_generators.h -include/ogdf/basic/graphics.h -include/ogdf/basic/memory.h -include/ogdf/basic/precondition.h -include/ogdf/basic/simple_graph_alg.h -include/ogdf/basic/tuples.h -include/ogdf/cluster/CPlanarEdgeInserter.h -include/ogdf/cluster/CPlanarSubClusteredGraph.h -include/ogdf/cluster/CconnectClusterPlanar.h -include/ogdf/cluster/CconnectClusterPlanarEmbed.h -include/ogdf/cluster/ClusterAnalysis.h -include/ogdf/cluster/ClusterArray.h -include/ogdf/cluster/ClusterGraph.h -include/ogdf/cluster/ClusterGraphAttributes.h -include/ogdf/cluster/ClusterGraphCopyAttributes.h -include/ogdf/cluster/ClusterGraphObserver.h -include/ogdf/cluster/ClusterOrthoLayout.h -include/ogdf/cluster/ClusterOrthoShaper.h -include/ogdf/cluster/ClusterPlanRep.h -include/ogdf/cluster/ClusterPlanarizationLayout.h -include/ogdf/cluster/ClusterSet.h -include/ogdf/cluster/MaximumCPlanarSubgraph.h -include/ogdf/decomposition/BCTree.h -include/ogdf/decomposition/DynamicBCTree.h -include/ogdf/decomposition/DynamicPlanarSPQRTree.h -include/ogdf/decomposition/DynamicSPQRForest.h -include/ogdf/decomposition/DynamicSPQRTree.h -include/ogdf/decomposition/DynamicSkeleton.h -include/ogdf/decomposition/PertinentGraph.h -include/ogdf/decomposition/PlanarSPQRTree.h -include/ogdf/decomposition/SPQRTree.h -include/ogdf/decomposition/Skeleton.h -include/ogdf/decomposition/StaticPlanarSPQRTree.h -include/ogdf/decomposition/StaticSPQRTree.h -include/ogdf/decomposition/StaticSkeleton.h -include/ogdf/energybased/DavidsonHarel.h -include/ogdf/energybased/DavidsonHarelLayout.h -include/ogdf/energybased/FMMMLayout.h -include/ogdf/energybased/FastMultipoleEmbedder.h -include/ogdf/energybased/GEMLayout.h -include/ogdf/energybased/MultilevelLayout.h -include/ogdf/energybased/PivotMDS.h -include/ogdf/energybased/SpringEmbedderFR.h -include/ogdf/energybased/SpringEmbedderFRExact.h -include/ogdf/energybased/SpringEmbedderKK.h -include/ogdf/energybased/StressMinimization.h -include/ogdf/energybased/TutteLayout.h -include/ogdf/energybased/multilevelmixer/BarycenterPlacer.h -include/ogdf/energybased/multilevelmixer/CirclePlacer.h -include/ogdf/energybased/multilevelmixer/EdgeCoverMerger.h -include/ogdf/energybased/multilevelmixer/IndependentSetMerger.h -include/ogdf/energybased/multilevelmixer/InitialPlacer.h -include/ogdf/energybased/multilevelmixer/LocalBiconnectedMerger.h -include/ogdf/energybased/multilevelmixer/MMMExampleFastLayout.h -include/ogdf/energybased/multilevelmixer/MMMExampleNiceLayout.h -include/ogdf/energybased/multilevelmixer/MMMExampleNoTwistLayout.h -include/ogdf/energybased/multilevelmixer/MatchingMerger.h -include/ogdf/energybased/multilevelmixer/MedianPlacer.h -include/ogdf/energybased/multilevelmixer/MixedForceLayout.h -include/ogdf/energybased/multilevelmixer/ModularMultilevelMixer.h -include/ogdf/energybased/multilevelmixer/MultilevelBuilder.h -include/ogdf/energybased/multilevelmixer/RandomMerger.h -include/ogdf/energybased/multilevelmixer/RandomPlacer.h -include/ogdf/energybased/multilevelmixer/ScalingLayout.h -include/ogdf/energybased/multilevelmixer/SolarMerger.h -include/ogdf/energybased/multilevelmixer/SolarPlacer.h -include/ogdf/energybased/multilevelmixer/ZeroPlacer.h -include/ogdf/external/abacus.h -include/ogdf/external/coin.h -include/ogdf/fileformats/DLParser.h -include/ogdf/fileformats/DOT.h -include/ogdf/fileformats/DotLexer.h -include/ogdf/fileformats/DotParser.h -include/ogdf/fileformats/GDF.h -include/ogdf/fileformats/GEXF.h -include/ogdf/fileformats/GdfParser.h -include/ogdf/fileformats/GexfParser.h -include/ogdf/fileformats/GmlParser.h -include/ogdf/fileformats/GraphIO.h -include/ogdf/fileformats/GraphML.h -include/ogdf/fileformats/GraphMLParser.h -include/ogdf/fileformats/LineBuffer.h -include/ogdf/fileformats/Ogml.h -include/ogdf/fileformats/OgmlParser.h -include/ogdf/fileformats/Tlp.h -include/ogdf/fileformats/TlpLexer.h -include/ogdf/fileformats/TlpParser.h -include/ogdf/fileformats/UmlDiagramGraph.h -include/ogdf/fileformats/UmlModelGraph.h -include/ogdf/fileformats/UmlToGraphConverter.h -include/ogdf/fileformats/Utils.h -include/ogdf/fileformats/XmlParser.h -include/ogdf/fileformats/XmlScanner.h -include/ogdf/graphalg/CliqueFinder.h -include/ogdf/graphalg/Clusterer.h -include/ogdf/graphalg/ConvexHull.h -include/ogdf/graphalg/Dijkstra.h -include/ogdf/graphalg/GraphReduction.h -include/ogdf/graphalg/MinCostFlowReinelt.h -include/ogdf/graphalg/MinimumCut.h -include/ogdf/graphalg/PageRank.h -include/ogdf/graphalg/ShortestPathAlgorithms.h -include/ogdf/graphalg/ShortestPathWithBFM.h -include/ogdf/graphalg/Voronoi.h -include/ogdf/hypergraph/EdgeStandardRep.h -include/ogdf/hypergraph/Hypergraph.h -include/ogdf/hypergraph/HypergraphArray.h -include/ogdf/hypergraph/HypergraphAttributes.h -include/ogdf/hypergraph/HypergraphLayout.h -include/ogdf/hypergraph/HypergraphLayoutModule.h -include/ogdf/hypergraph/HypergraphObserver.h -include/ogdf/internal/augmentation/PALabel.h -include/ogdf/internal/basic/MallocMemoryAllocator.h -include/ogdf/internal/basic/PoolMemoryAllocator.h -include/ogdf/internal/basic/config.h -include/ogdf/internal/basic/intrinsics.h -include/ogdf/internal/basic/list_templates.h -include/ogdf/internal/cluster/CPlanarSubClusteredST.h -include/ogdf/internal/cluster/ClusterPQContainer.h -include/ogdf/internal/cluster/Cluster_ChunkConnection.h -include/ogdf/internal/cluster/Cluster_CutConstraint.h -include/ogdf/internal/cluster/Cluster_EdgeVar.h -include/ogdf/internal/cluster/Cluster_MaxPlanarEdges.h -include/ogdf/internal/cluster/KuratowskiConstraint.h -include/ogdf/internal/cluster/MaxCPlanar_Master.h -include/ogdf/internal/cluster/MaxCPlanar_MinimalClusterConnection.h -include/ogdf/internal/cluster/MaxCPlanar_Sub.h -include/ogdf/internal/cluster/basics.h -include/ogdf/internal/config_autogen.h -include/ogdf/internal/energybased/Attraction.h -include/ogdf/internal/energybased/EdgeAttributes.h -include/ogdf/internal/energybased/EnergyFunction.h -include/ogdf/internal/energybased/FruchtermanReingold.h -include/ogdf/internal/energybased/IntersectionRectangle.h -include/ogdf/internal/energybased/MultilevelGraph.h -include/ogdf/internal/energybased/NMM.h -include/ogdf/internal/energybased/NodeAttributes.h -include/ogdf/internal/energybased/NodePairEnergy.h -include/ogdf/internal/energybased/Overlap.h -include/ogdf/internal/energybased/ParticleInfo.h -include/ogdf/internal/energybased/Planarity.h -include/ogdf/internal/energybased/PlanarityGrid.h -include/ogdf/internal/energybased/QuadTreeNM.h -include/ogdf/internal/energybased/QuadTreeNodeNM.h -include/ogdf/internal/energybased/Repulsion.h -include/ogdf/internal/energybased/UniformGrid.h -include/ogdf/internal/lpsolver/LPSolver_coin.h -include/ogdf/internal/orthogonal/NodeInfo.h -include/ogdf/internal/orthogonal/RoutingChannel.h -include/ogdf/internal/planarity/BoyerMyrvoldInit.h -include/ogdf/internal/planarity/BoyerMyrvoldPlanar.h -include/ogdf/internal/planarity/CliqueReplacer.h -include/ogdf/internal/planarity/ConnectedSubgraph.h -include/ogdf/internal/planarity/CrossingStructure.h -include/ogdf/internal/planarity/EmbedIndicator.h -include/ogdf/internal/planarity/EmbedPQTree.h -include/ogdf/internal/planarity/EmbedderMaxFaceBiconnectedGraphs.h -include/ogdf/internal/planarity/EmbedderMaxFaceBiconnectedGraphsLayers.h -include/ogdf/internal/planarity/FindKuratowskis.h -include/ogdf/internal/planarity/FixEdgeInserterCore.h -include/ogdf/internal/planarity/IndInfo.h -include/ogdf/internal/planarity/MDMFLengthAttribute.h -include/ogdf/internal/planarity/MaxSequencePQTree.h -include/ogdf/internal/planarity/PQBasicKey.h -include/ogdf/internal/planarity/PQBasicKeyRoot.h -include/ogdf/internal/planarity/PQInternalKey.h -include/ogdf/internal/planarity/PQInternalNode.h -include/ogdf/internal/planarity/PQLeaf.h -include/ogdf/internal/planarity/PQLeafKey.h -include/ogdf/internal/planarity/PQNode.h -include/ogdf/internal/planarity/PQNodeKey.h -include/ogdf/internal/planarity/PQNodeRoot.h -include/ogdf/internal/planarity/PQTree.h -include/ogdf/internal/planarity/PlanarLeafKey.h -include/ogdf/internal/planarity/PlanarPQTree.h -include/ogdf/internal/planarity/PlanarSubgraphPQTree.h -include/ogdf/internal/planarity/VarEdgeInserterCore.h -include/ogdf/internal/planarity/VarEdgeInserterDynCore.h -include/ogdf/internal/planarity/whaInfo.h -include/ogdf/internal/steinertree/EdgeWeightedGraph.h -include/ogdf/internal/upward/UpwardPlanarityEmbeddedDigraph.h -include/ogdf/internal/upward/UpwardPlanaritySingleSource.h -include/ogdf/internal/version.h -include/ogdf/labeling/ELabelInterface.h -include/ogdf/labeling/ELabelPosSimple.h -include/ogdf/layered/BarycenterHeuristic.h -include/ogdf/layered/BlockOrder.h -include/ogdf/layered/CoffmanGrahamRanking.h -include/ogdf/layered/CrossingMinInterfaces.h -include/ogdf/layered/CrossingsMatrix.h -include/ogdf/layered/DfsAcyclicSubgraph.h -include/ogdf/layered/ExtendedNestingGraph.h -include/ogdf/layered/FastHierarchyLayout.h -include/ogdf/layered/FastSimpleHierarchyLayout.h -include/ogdf/layered/GreedyCycleRemoval.h -include/ogdf/layered/GreedyInsertHeuristic.h -include/ogdf/layered/GreedySwitchHeuristic.h -include/ogdf/layered/GridSifting.h -include/ogdf/layered/Hierarchy.h -include/ogdf/layered/HierarchyLevels.h -include/ogdf/layered/Level.h -include/ogdf/layered/LongestPathRanking.h -include/ogdf/layered/MedianHeuristic.h -include/ogdf/layered/OptimalHierarchyClusterLayout.h -include/ogdf/layered/OptimalHierarchyLayout.h -include/ogdf/layered/OptimalRanking.h -include/ogdf/layered/SiftingHeuristic.h -include/ogdf/layered/SplitHeuristic.h -include/ogdf/layered/SugiyamaLayout.h -include/ogdf/lpsolver/LPSolver.h -include/ogdf/misclayout/BalloonLayout.h -include/ogdf/misclayout/BertaultLayout.h -include/ogdf/misclayout/CircularLayout.h -include/ogdf/misclayout/ProcrustesSubLayout.h -include/ogdf/module/AcyclicSubgraphModule.h -include/ogdf/module/AugmentationModule.h -include/ogdf/module/CCLayoutPackModule.h -include/ogdf/module/CPlanarSubgraphModule.h -include/ogdf/module/ClustererModule.h -include/ogdf/module/CrossingMinimizationModule.h -include/ogdf/module/EdgeInsertionModule.h -include/ogdf/module/EmbedderModule.h -include/ogdf/module/FUPSModule.h -include/ogdf/module/ForceLayoutModule.h -include/ogdf/module/GridLayoutModule.h -include/ogdf/module/HierarchyClusterLayoutModule.h -include/ogdf/module/HierarchyLayoutModule.h -include/ogdf/module/LayerByLayerSweep.h -include/ogdf/module/LayeredCrossMinModule.h -include/ogdf/module/LayoutClusterPlanRepModule.h -include/ogdf/module/LayoutModule.h -include/ogdf/module/LayoutPlanRepModule.h -include/ogdf/module/LayoutPlanRepUMLModule.h -include/ogdf/module/MMCrossingMinimizationModule.h -include/ogdf/module/MMEdgeInsertionModule.h -include/ogdf/module/MinCostFlowModule.h -include/ogdf/module/MixedModelCrossingsBeautifierModule.h -include/ogdf/module/MultilevelLayoutModule.h -include/ogdf/module/PlanarSubgraphModule.h -include/ogdf/module/PlanarityModule.h -include/ogdf/module/RankingModule.h -include/ogdf/module/ShellingOrderModule.h -include/ogdf/module/ShortestPathModule.h -include/ogdf/module/UMLCrossingMinimizationModule.h -include/ogdf/module/UMLEdgeInsertionModule.h -include/ogdf/module/UMLLayoutModule.h -include/ogdf/module/UPRLayoutModule.h -include/ogdf/module/UpwardEdgeInserterModule.h -include/ogdf/module/UpwardPlanarSubgraphModule.h -include/ogdf/module/UpwardPlanarizerModule.h -include/ogdf/orthogonal/CompactionConstraintGraph.h -include/ogdf/orthogonal/EdgeRouter.h -include/ogdf/orthogonal/FlowCompaction.h -include/ogdf/orthogonal/LongestPathCompaction.h -include/ogdf/orthogonal/MinimumEdgeDistances.h -include/ogdf/orthogonal/OrthoLayout.h -include/ogdf/orthogonal/OrthoRep.h -include/ogdf/orthogonal/OrthoShaper.h -include/ogdf/packing/ComponentSplitterLayout.h -include/ogdf/packing/TileToRowsCCPacker.h -include/ogdf/planarity/BoothLueker.h -include/ogdf/planarity/BoyerMyrvold.h -include/ogdf/planarity/EdgeTypePatterns.h -include/ogdf/planarity/EmbedderMaxFace.h -include/ogdf/planarity/EmbedderMaxFaceLayers.h -include/ogdf/planarity/EmbedderMinDepth.h -include/ogdf/planarity/EmbedderMinDepthMaxFace.h -include/ogdf/planarity/EmbedderMinDepthMaxFaceLayers.h -include/ogdf/planarity/EmbedderMinDepthPiTa.h -include/ogdf/planarity/EmbedderOptimalFlexDraw.h -include/ogdf/planarity/ExtractKuratowskis.h -include/ogdf/planarity/FastPlanarSubgraph.h -include/ogdf/planarity/FixedEmbeddingInserter.h -include/ogdf/planarity/KuratowskiSubdivision.h -include/ogdf/planarity/MMFixedEmbeddingInserter.h -include/ogdf/planarity/MMSubgraphPlanarizer.h -include/ogdf/planarity/MMVariableEmbeddingInserter.h -include/ogdf/planarity/MaximalPlanarSubgraphSimple.h -include/ogdf/planarity/MaximumPlanarSubgraph.h -include/ogdf/planarity/MultiEdgeApproxInserter.h -include/ogdf/planarity/NodeTypePatterns.h -include/ogdf/planarity/NonPlanarCore.h -include/ogdf/planarity/PlanRep.h -include/ogdf/planarity/PlanRepExpansion.h -include/ogdf/planarity/PlanRepInc.h -include/ogdf/planarity/PlanRepLight.h -include/ogdf/planarity/PlanarizationGridLayout.h -include/ogdf/planarity/PlanarizationLayout.h -include/ogdf/planarity/RemoveReinsertType.h -include/ogdf/planarity/SimpleEmbedder.h -include/ogdf/planarity/SimpleIncNodeInserter.h -include/ogdf/planarity/SubgraphPlanarizer.h -include/ogdf/planarity/VariableEmbeddingInserter.h -include/ogdf/planarity/VariableEmbeddingInserterDyn.h -include/ogdf/planarlayout/BiconnectedShellingOrder.h -include/ogdf/planarlayout/FPPLayout.h -include/ogdf/planarlayout/MMCBBase.h -include/ogdf/planarlayout/MMCBDoubleGrid.h -include/ogdf/planarlayout/MMCBLocalStretch.h -include/ogdf/planarlayout/MixedModelLayout.h -include/ogdf/planarlayout/PlanarDrawLayout.h -include/ogdf/planarlayout/PlanarStraightLayout.h -include/ogdf/planarlayout/SchnyderLayout.h -include/ogdf/planarlayout/ShellingOrder.h -include/ogdf/planarlayout/TriconnectedShellingOrder.h -include/ogdf/simultaneous/SimDraw.h -include/ogdf/simultaneous/SimDrawCaller.h -include/ogdf/simultaneous/SimDrawColorizer.h -include/ogdf/simultaneous/SimDrawCreator.h -include/ogdf/simultaneous/SimDrawCreatorSimple.h -include/ogdf/simultaneous/SimDrawManipulatorModule.h -include/ogdf/simultaneous/TwoLayerCrossMinSimDraw.h -include/ogdf/tree/LCA.h -include/ogdf/tree/RadialTreeLayout.h -include/ogdf/tree/TreeLayout.h -include/ogdf/uml/FixedEmbeddingInserterUML.h -include/ogdf/uml/OrthoLayoutUML.h -include/ogdf/uml/PlanRepUML.h -include/ogdf/uml/PlanarizationLayoutUML.h -include/ogdf/uml/SubgraphPlanarizerUML.h -include/ogdf/uml/UMLGraph.h -include/ogdf/uml/VariableEmbeddingInserterDynUML.h -include/ogdf/uml/VariableEmbeddingInserterUML.h -include/ogdf/upward/DominanceLayout.h -include/ogdf/upward/ExpansionGraph.h -include/ogdf/upward/FUPSSimple.h -include/ogdf/upward/FaceSinkGraph.h -include/ogdf/upward/FeasibleUpwardPlanarSubgraph.h -include/ogdf/upward/FixedEmbeddingUpwardEdgeInserter.h -include/ogdf/upward/FixedUpwardEmbeddingInserter.h -include/ogdf/upward/LayerBasedUPRLayout.h -include/ogdf/upward/SubgraphUpwardPlanarizer.h -include/ogdf/upward/UpwardPlanRep.h -include/ogdf/upward/UpwardPlanarSubgraphSimple.h -include/ogdf/upward/UpwardPlanarity.h -include/ogdf/upward/UpwardPlanarizationLayout.h -include/ogdf/upward/VisibilityLayout.h -%%COIN%%lib/libCOIN.so -lib/libOGDF.so -libdata/pkgconfig/ogdf.pc |