Last change
on this file since 6971 was
2051,
checked in by jack, 19 years ago
|
Python interface to metis. Currently provides only the
METIS_PartMeshNodal function, since that is what is currently needed for partitioning.
Module name is metis.
|
File size:
571 bytes
|
Line | |
---|
1 | /* |
---|
2 | * Copyright 1997, Regents of the University of Minnesota |
---|
3 | * |
---|
4 | * metis.h |
---|
5 | * |
---|
6 | * This file includes all necessary header files |
---|
7 | * |
---|
8 | * Started 8/27/94 |
---|
9 | * George |
---|
10 | * |
---|
11 | * $Id: metis.h,v 1.1 1998/11/27 17:59:21 karypis Exp $ |
---|
12 | */ |
---|
13 | |
---|
14 | |
---|
15 | #include <stdio.h> |
---|
16 | #ifdef __STDC__ |
---|
17 | #include <stdlib.h> |
---|
18 | #else |
---|
19 | #include <malloc.h> |
---|
20 | #endif |
---|
21 | #include <strings.h> |
---|
22 | #include <string.h> |
---|
23 | #include <ctype.h> |
---|
24 | #include <math.h> |
---|
25 | #include <stdarg.h> |
---|
26 | #include <time.h> |
---|
27 | |
---|
28 | #ifdef DMALLOC |
---|
29 | #include <dmalloc.h> |
---|
30 | #endif |
---|
31 | |
---|
32 | #include <defs.h> |
---|
33 | #include <struct.h> |
---|
34 | #include <macros.h> |
---|
35 | #include <rename.h> |
---|
36 | #include <proto.h> |
---|
37 | |
---|
Note: See
TracBrowser
for help on using the repository browser.