| 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 | #include "config.h" | 
|---|
| 15 |  | 
|---|
| 16 | #define EXTERN | 
|---|
| 17 | #include "types.h" | 
|---|
| 18 | #include "globals.h" | 
|---|
| 19 | #include "fdp.h" | 
|---|
| 20 |  | 
|---|
| 21 | /* Default layout values, possibly set via command line; -1 indicates unset */ | 
|---|
| 22 | static fdpParms_t fdpParms = { | 
|---|
| 23 | 1,                          /* useGrid */ | 
|---|
| 24 | 1,                          /* useNew */ | 
|---|
| 25 | -1,                         /* numIters */ | 
|---|
| 26 | 50,                         /* unscaled */ | 
|---|
| 27 | 0.0,                        /* C */ | 
|---|
| 28 | 1.0,                        /* Tfact */ | 
|---|
| 29 | -1.0,                       /* K - set in initParams; used in init_edge */ | 
|---|
| 30 | -1.0,                       /* T0 */ | 
|---|
| 31 | }; | 
|---|
| 32 |  | 
|---|
| 33 | struct fdpParms_s* fdp_parms = &fdpParms; | 
|---|
| 34 |  | 
|---|