Package coinor.gimpy

Expand source code
from __future__ import absolute_import
from .global_constants import *
from . import graph
from . import examples
from .tree import Tree
from .tree import BinaryTree

Graph = graph.Graph
DisjointSet = graph.DisjointSet
MATPLOTLIB_INSTALLED = graph.MATPLOTLIB_INSTALLED
DOT2TEX_INSTALLED = graph.DOT2TEX_INSTALLED
PIL_INSTALLED = graph.PIL_INSTALLED
XDOT_INSTALLED = graph.XDOT_INSTALLED
ETREE_INSTALLED = graph.ETREE_INSTALLED

Sub-modules

coinor.gimpy.examples
coinor.gimpy.global_constants

This file has global constants required for GIMPy.

coinor.gimpy.graph

A Graph class implementation. The aim for this implementation is 1. To reflect implementation methods in literature as much as possible 3. To have …

coinor.gimpy.tree

Tree class built on top of Graph class.