metisord.h

来自「数学算法的实现库。可以实现常见的线性计算。」· C头文件 代码 · 共 44 行

H
44
字号
/* * Copyright 1997, Regents of the University of Minnesota * * metis.h * * This file includes all necessary header files * * Started 8/27/94 * George * * $Id: metis.h,v 1.1 1998/11/27 17:59:21 karypis Exp $ */#include <stdio.h>#ifdef __STDC__#include <stdlib.h>#else#include <malloc.h>#endif#include <strings.h>#include <string.h>#include <ctype.h>#include <math.h>#include <stdarg.h>#include <time.h>#ifdef DMALLOC#include <dmalloc.h>#endif/* Undefine the following #define in order to use short int as the idxtype */#define IDXTYPE_INT/* Indexes are as long as integers for now */#ifdef IDXTYPE_INTtypedef int idxtype;#elsetypedef short idxtype;#endifvoid METIS_EdgeND(int *, idxtype *, idxtype *, int *, int *, idxtype *, idxtype *); void METIS_NodeND(int *, idxtype *, idxtype *, int *, int *, idxtype *, idxtype *); 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?