Skip to content
This repository has been archived by the owner on Jun 25, 2024. It is now read-only.

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
### how to compile ###
% g++ -O3 -o DL DL.cpp

"%" is not needed to type. It is a symbol to represent command line.

### how to execute ###
% ./DL input-filename output-filename

Example)
% ./DL in.dat out.dat

### inputfile format ###
The vertex set must be numbers ranging from 0 to n ({0,1,...,n}).
Each line (row) of the input file is corresponding to a hyperedge (subset,
or transaction). The vertices (items, or elements) included in a hyperedge
is listed in a line. The separator of numbers can be some non-numeric letter,
such as ","  " " , etc.

Example)  ( "[EOF]" is the end of file )
0 1 2
1
2 3 4
4,1 2 3
2,1
[EOF]