MBDyn-1.7.3
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups
chacowrap.h
Go to the documentation of this file.
1 /* $Header: /var/cvs/mbdyn/mbdyn/mbdyn-1.0/libraries/libmbwrap/chacowrap.h,v 1.6 2011/05/19 11:24:38 masarati Exp $ */
2 /* A simple interface to the Chaco graph partioning library. It does
3  * some small conversions so that it is easy to substitute for Metis.
4  *
5  * MBDyn (C) is a multibody analysis code.
6  * http://www.mbdyn.org
7  *
8  * Copyright (C) 2003 Mississippi State University
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation (version 2 of the License).
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22  */
23 
24 #ifndef CHACOWRAP_H
25 #define CHACOWRAP_H
26 
27 extern void
29  const int iTotVertices,
30  int *start,
31  int *adjacency,
32  int *vertex_weights,
33  int *comm_weights,
34  int *edge_weights,
35  const int num_processors,
36  int *pParAmgProcs
37  );
38 
39 #endif // CHACOWRAP_H
40 
void chaco_interface(const int iTotVertices, int *start, int *adjacency, int *vertex_weights, int *comm_weights, int *edge_weights, const int num_processors, int *pParAmgProcs)
Definition: chacowrap.cc:63