Metrics and Models for Multi-layer Networks
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
396 B

CFLAGS="-O3"
CC="gcc"
GSL_FLAGS=-lgsl -lgslcblas -lm
MFLAG=-lm
all: tune_qnn_adaptive tune_rho
tune_qnn_adaptive: tune_qnn_adaptive.c rank_utils.c fit_utils.c
$(CC) $(CFLAGS) -o tune_qnn_adaptive tune_qnn_adaptive.c rank_utils.c fit_utils.c $(GSL_FLAGS)
tune_rho: tune_rho.c rank_utils.c
$(CC) $(CFLAGS) -o tune_rho tune_rho.c rank_utils.c $(MFLAG)
clean:
rm tune_rho tune_qnn_adaptive