1/* $Id$ $Revision$ */
2/* vim:set shiftwidth=4 ts=8: */
3
4/*************************************************************************
5 * Copyright (c) 2011 AT&T Intellectual Property
6 * All rights reserved. This program and the accompanying materials
7 * are made available under the terms of the Eclipse Public License v1.0
8 * which accompanies this distribution, and is available at
9 * http://www.eclipse.org/legal/epl-v10.html
10 *
11 * Contributors: See CVS logs. Details at http://www.graphviz.org/
12 *************************************************************************/
13
14
15#ifndef NEATO_H
16#define NEATO_H
17
18#include "config.h"
19
20#define MODEL_SHORTPATH 0
21#define MODEL_CIRCUIT 1
22#define MODEL_SUBSET 2
23#define MODEL_MDS 3
24
25#define MODE_KK 0
26#define MODE_MAJOR 1
27#define MODE_HIER 2
28#define MODE_IPSEP 3
29
30#define INIT_ERROR -1
31#define INIT_SELF 0
32#define INIT_REGULAR 1
33#define INIT_RANDOM 2
34
35#include "render.h"
36#include "pathplan.h"
37#include "neatoprocs.h"
38#include "adjust.h"
39
40#endif /* NEATO_H */
41