Skip to content

Commit 9f2e20c

Browse files
author
Stephan Schiffels
committed
bumped version nr output
1 parent 4e58918 commit 9f2e20c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Set this variable to your static gsl libraries
2-
GSL = /usr/lib/libgsl.a /usr/lib/libgslcblas.a
3-
# GSL=/usr/local/lib/libgsl.a /usr/local/lib/libgslcblas.a
2+
# GSL = /usr/lib/libgsl.a /usr/lib/libgslcblas.a
3+
GSL=/usr/local/lib/libgsl.a /usr/local/lib/libgslcblas.a
44

55
build/msmc : model/*.d powell.d brent.d maximization_step.d expectation_step.d msmc.d branchlength.d logger.d
6-
dmd -O ${GSL} -odbuild -ofbuild/msmc $^
6+
dmd -debug -O ${GSL} -odbuild -ofbuild/msmc $^
77

88
build/maximize : model/*.d powell.d brent.d maximization_step.d logger.d maximize.d
99
dmd -O ${GSL} -odbuild -ofbuild/maximize $^

msmc.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ size_t nrTimeSegments;
6666
size_t[] indices;
6767
string logFileName, loopFileName, finalFileName;
6868

69-
immutable versionString = "1.0.1";
69+
immutable versionString = "1.1.0";
7070

7171
auto helpString = format("This is MSMC Version %s. Usage: msmc [options] <datafiles>
7272
Options:

0 commit comments

Comments
 (0)