|
Graphviz
2.29.20120524.0446
|
00001 /* $Id$ $Revision$ */ 00002 /* vim:set shiftwidth=4 ts=8: */ 00003 00004 /************************************************************************* 00005 * Copyright (c) 2011 AT&T Intellectual Property 00006 * All rights reserved. This program and the accompanying materials 00007 * are made available under the terms of the Eclipse Public License v1.0 00008 * which accompanies this distribution, and is available at 00009 * http://www.eclipse.org/legal/epl-v10.html 00010 * 00011 * Contributors: See CVS logs. Details at http://www.graphviz.org/ 00012 *************************************************************************/ 00013 00014 00015 #ifndef NEATO_H 00016 #define NEATO_H 00017 00018 #ifdef HAVE_CONFIG_H 00019 #include "config.h" 00020 #endif 00021 00022 #define MODEL_SHORTPATH 0 00023 #define MODEL_CIRCUIT 1 00024 #define MODEL_SUBSET 2 00025 #define MODEL_MDS 3 00026 00027 #define MODE_KK 0 00028 #define MODE_MAJOR 1 00029 #define MODE_HIER 2 00030 #define MODE_IPSEP 3 00031 00032 #define INIT_ERROR -1 00033 #define INIT_SELF 0 00034 #define INIT_REGULAR 1 00035 #define INIT_RANDOM 2 00036 00037 #include "render.h" 00038 #include "pathplan.h" 00039 #include "neatoprocs.h" 00040 #include "adjust.h" 00041 00042 #endif /* NEATO_H */
1.7.5