-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #52 from rfvander/pseudorandom-no-population-change
Pseudorandom no population change
- Loading branch information
Showing
12 changed files
with
894 additions
and
6 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
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,33 @@ | ||
include ../../common/SERIAL.defs | ||
COMOBJS += random_draw.o | ||
|
||
##### User configurable options ##### | ||
#uncomment any of the following flags (or change values) to change defaults | ||
|
||
OPTFLAGS = $(DEFAULT_OPT_FLAGS) | ||
#OPTFLAGS=-axCORE-AVX2 -O3 -restrict | ||
#description: change above into something that is a decent optimization on you system | ||
|
||
#RESTRICTFLAG = -DRESTRICT_KEYWORD | ||
#description: the "restrict" keyword can be used on IA platforms to disambiguate | ||
# data accessed through pointers | ||
|
||
DEBUGFLAG = -DVERBOSE | ||
#description: default diagnostic style is silent | ||
|
||
USERFLAGS = | ||
#description: parameter to specify optional flags | ||
|
||
#set the following variables for custom libraries and/or other objects | ||
EXTOBJS = | ||
LIBS = -lm | ||
LIBPATHS = | ||
INCLUDEPATHS = | ||
|
||
### End User configurable options ### | ||
TUNEFLAGS = $(RESTRICTFLAG) $(DEBUGFLAG) $(USERFLAGS) | ||
PROGRAM = pic | ||
OBJS = $(PROGRAM).o $(COMOBJS) | ||
|
||
include ../../common/make.common | ||
|
Oops, something went wrong.