00001 /* $Id: xlayout.h,v 1.3 2005/02/17 23:21:25 erg Exp $ $Revision: 1.3 $ */ 00002 /* vim:set shiftwidth=4 ts=8: */ 00003 00004 /********************************************************** 00005 * This software is part of the graphviz package * 00006 * http://www.graphviz.org/ * 00007 * * 00008 * Copyright (c) 1994-2004 AT&T Corp. * 00009 * and is licensed under the * 00010 * Common Public License, Version 1.0 * 00011 * by AT&T Corp. * 00012 * * 00013 * Information and Software Systems Research * 00014 * AT&T Research, Florham Park NJ * 00015 **********************************************************/ 00016 00017 #ifdef __cplusplus 00018 extern "C" { 00019 #endif 00020 00021 #ifndef XLAYOUT_H 00022 #define XLAYOUT_H 00023 00024 #include <fdp.h> 00025 00026 typedef struct { 00027 int numIters; 00028 double T0; 00029 double K; 00030 double C; 00031 int loopcnt; 00032 } xparams; 00033 00034 extern void fdp_xLayout(graph_t *, xparams *); 00035 00036 #endif 00037 00038 #ifdef __cplusplus 00039 } 00040 #endif