-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ben Knueven
committed
Aug 7, 2017
1 parent
2179ea0
commit 0d406d3
Showing
33 changed files
with
52,885 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.