|
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 #ifdef HAVE_CONFIG_H 00015 #include "config.h" 00016 #endif 00017 00018 #define EXTERN 00019 #include "types.h" 00020 #include "globals.h" 00021 00022 /* Default layout values, possibly set via command line; -1 indicates unset */ 00023 fdpParms_t fdp_parms = { 00024 1, /* useGrid */ 00025 1, /* useNew */ 00026 -1, /* numIters */ 00027 50, /* unscaled */ 00028 0.0, /* C */ 00029 1.0, /* Tfact */ 00030 -1.0, /* K - set in initParams; used in init_edge */ 00031 -1.0, /* T0 */ 00032 }; 00033
1.7.5