1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
#* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
#* *
#* This file is part of the program and library *
#* SCIP --- Solving Constraint Integer Programs *
#* *
#* Copyright (C) 2002-2025 Zuse Institute Berlin (ZIB) *
#* *
#* SCIP is distributed under the terms of the ZIB Academic License. *
#* *
#* You should have received a copy of the ZIB Academic License *
#* along with SCIP; see the file COPYING. If not email to scip@zib.de. *
#* *
#* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
# description -> see check/README_PERFORMANCE.md
#-----------------------------------------------------------------------------
# paths variables
#-----------------------------------------------------------------------------
PAPILODIR=$(shell pwd -P)
.DEFAULT_GOAL := help
#-----------------------------------------------------------------------------
# include make.project file
#-----------------------------------------------------------------------------
# load default settings and detect host architecture
include $(PAPILODIR)/make/make.project
# include local targets
-include make/local/make.targets
#-----------------------------------------------------------------------------
# Rules
#-----------------------------------------------------------------------------
.PHONY: help
help:
@echo " Main targets:"
@echo " - test: start Papilo testrun locally."
@echo " - testcluster: start Papilo testrun on the cluster."
.PHONY: test
test:
cd check; \
$(SHELL) ./check.sh $(TEST) $(EXECUTABLE) $(SETTINGS) $(BINID) $(OUTPUTDIR) $(TIME) $(NODES) $(MEM) $(FEASTOL) $(DISPFREQ) \
$(CONTINUE) $(LOCK) $(VERSION) $(LPS) $(DEBUGTOOL) $(CLIENTTMPDIR) $(REOPT) $(PAPILO_OPT_COMMAND) $(SETCUTOFF) $(MAXJOBS) $(VISUALIZE) $(PERMUTE) \
$(SEEDS) $(GLBSEEDSHIFT) $(STARTPERM) $(SOLVE_EXECUTABLE) $(SKIP_PRESOLVE);
# --- EOF ---------------------------------------------------------------------
# DO NOT DELETE
|