Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Knueven committed Aug 7, 2017
1 parent 2179ea0 commit 0d406d3
Show file tree
Hide file tree
Showing 33 changed files with 52,885 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#Makefile for findAlmost

#change these to the locations of PEBBL and nauty respectively
PEBBL_DIR = /opt/acro-pebbl
NAUTY_DIR = /opt/nauty25r9


MPICPP = mpic++ -std=c++0x -O3
NAUTYGRAPH = NautyGraph.cpp
PEBBL = -I$(PEBBL_DIR)/include -L$(PEBBL_DIR)/lib -lpebbl -lutilib
NAUTY = -I$(NAUTY_DIR) $(NAUTY_DIR)/nauty.a

findAlmost : findAlmost.cpp NautyGraph.cpp
$(MPICPP) findAlmost.cpp $(NAUTYGRAPH) $(NAUTY) $(PEBBL) -o findAlmost

clean :
rm -f findAlmost
Loading

0 comments on commit 0d406d3

Please sign in to comment.