summaryrefslogtreecommitdiff
path: root/graphics/pgf/base/lua/graphdrawing/pgf/gd/ogdf/library.lua
blob: f91c75a4d64a4c999adb66631d02ff0665fd87b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
-- Copyright 2012 by Till Tantau
--
-- This file may be distributed an/or modified
--
-- 1. under the LaTeX Project Public License and/or
-- 2. under the GNU Public License
--
-- See the file doc/generic/pgf/licenses/LICENSE for more information

-- @release $Header$


---
-- The Open Graph Drawing Framework (\textsc{ogdf}) is a large,
-- powerful graph drawing system written in C++. This library enables
-- its use inside \tikzname's graph drawing system by translating
-- back-and-forth between Lua and C++.
--
-- Since C++ code is compiled and not interpreted (like Lua), in order
-- to use the present library, you need a compiled version of the
-- \pgfname\ interface code for the \textsc{ogdf} library
-- (|pgf/gd/ogdf/c/ogdf_script.so|) installed correctly for your particular
-- architecture. This is by no means trivial\dots
--
-- @library

local ogdf


-- Load the C++ code:

require "pgf_gd_ogdf_c_ogdf_script"