Skip to content

Metis - Serial programs for partitioning graphs.

Notifications You must be signed in to change notification settings

kotaroyamazaki/metis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 

Repository files navigation

METIS

Overview

METIS is a software package with vrious algorithms for dividing graphs.

Install

wget http://glaros.dtc.umn.edu/gkhome/fetch/sw/metis/metis-5.1.0.tar.gz  
tar zxfv metis-5.1.0.tar.gz  
cd metis-5.1.0/build  
cmake ../  
make config shared=1  
make && make install  
export PATH=/usr/local/lib:$PATH  
export LD_LIBRARY_PATH=/usr/local/lib/  
python3 -m pip install metis  

Input File

[node id1] [node id2] [weight]

ex) 1 2 5  
represent node 1 has an edge at node 2, its weight is 5.

Usage

python graph_partition_by_metis.py [Input File] [node number] [partition number]

About

Metis - Serial programs for partitioning graphs.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages