Skip to content

Commit 0d406d3

Browse files
author
Ben Knueven
committed
Initial commit
1 parent 2179ea0 commit 0d406d3

33 files changed

+52885
-0
lines changed

Makefile

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#Makefile for findAlmost
2+
3+
#change these to the locations of PEBBL and nauty respectively
4+
PEBBL_DIR = /opt/acro-pebbl
5+
NAUTY_DIR = /opt/nauty25r9
6+
7+
8+
MPICPP = mpic++ -std=c++0x -O3
9+
NAUTYGRAPH = NautyGraph.cpp
10+
PEBBL = -I$(PEBBL_DIR)/include -L$(PEBBL_DIR)/lib -lpebbl -lutilib
11+
NAUTY = -I$(NAUTY_DIR) $(NAUTY_DIR)/nauty.a
12+
13+
findAlmost : findAlmost.cpp NautyGraph.cpp
14+
$(MPICPP) findAlmost.cpp $(NAUTYGRAPH) $(NAUTY) $(PEBBL) -o findAlmost
15+
16+
clean :
17+
rm -f findAlmost

0 commit comments

Comments
 (0)