03c8ba1c27
Implemented are the 3-graph BDZ algorithm as well as the 2-graph and 3-graph CHM algorithms. All algorithms have expected linear run time and the smallest functions need around 2.85 bit/key.
9 lines
183 B
Makefile
9 lines
183 B
Makefile
# $NetBSD: Makefile,v 1.1 2009/08/15 16:21:04 joerg Exp $
|
|
|
|
PROG= nbperf
|
|
SRCS= nbperf.c
|
|
SRCS+= nbperf-bdz.c nbperf-chm.c nbperf-chm3.c
|
|
SRCS+= graph2.c graph3.c
|
|
|
|
.include <bsd.prog.mk>
|