Skip to content

Commit

Permalink
version 1.0-12
Browse files Browse the repository at this point in the history
  • Loading branch information
Claudia Gebhardt authored and gaborcsardi committed Apr 18, 2013
1 parent 1793225 commit 2936fbf
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 20 deletions.
12 changes: 7 additions & 5 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
2013-04-17 Claudia Gebhardt <cgebhard@uni-klu.ac.at>
2013-04-18 Claudia Gebhardt <cgebhard@uni-klu.ac.at>

* src/Makevars: compiler options for asan, not tested

* DESCRIPTION: fixes for R 3
* DESCRIPTION, src/heap.c: valgrind checks

2013-04-17 Claudia Gebhardt <cgebhard@uni-klu.ac.at>

* src/chdet.f: boundary check fix?

Expand All @@ -13,7 +17,7 @@

* NAMESPACE, R/zzz.R: remove .First.lib

* src/entrp.c, src/heap.c, src/mwrite.f: cleanup for R 2.15.2
* src/entrp.c, src/mwrite.f: cleanup for R 2.15.2

2011-09-29 Claudia Gebhardt <cgebhard@uni-klu.ac.at>

Expand All @@ -35,8 +39,6 @@

2009-09-14 Claudia Gebhardt <cgebhard@uni-klu.ac.at>

* src/Makevars: cleanup

* R/makematrix.R:
functions renamed, now passes "R CMD check" with R 2.9.2

Expand Down
6 changes: 3 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Package: edesign
Title: Maximum entropy sampling
Version: 1.0-11
Version: 1.0-12
Author: Claudia Gebhardt <claudia.gebhardt@uni-klu.ac.at>
Maintainer: Claudia Gebhardt <claudia.gebhardt@uni-klu.ac.at>
Description: Maximum entropy sampling
License: GPL
Packaged: 2013-04-17 06:26:18 UTC; agebhard
Packaged: 2013-04-18 12:25:43 UTC; agebhard
NeedsCompilation: yes
Repository: CRAN
Date/Publication: 2013-04-17 13:42:48
Date/Publication: 2013-04-18 15:06:06
8 changes: 4 additions & 4 deletions MD5
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
1ac64844d9a80652e69708e74eb812f1 *ChangeLog
a5523da115fa408458d385b03b2e7a1f *DESCRIPTION
da36686450a0b1d0e94877dab87cc154 *ChangeLog
96e7cf5f3fb4d1ab56b77b7b97824f2d *DESCRIPTION
dcc3d9c0f0b2ee165e45ba88599c4796 *NAMESPACE
9666455ab8ad31514b7790cb198b3b49 *R/dualgreedy.R
2c581d206e0f23ffb29f200af295dcd8 *R/greedy.R
Expand All @@ -17,7 +17,7 @@ e58b171cd86faaf75f2345cbe3384757 *man/makematrix.Rd
90dad6afc22699b721227d89e273b299 *man/monet.Rd
d49230ba232fdb03c5e6d0005e1df48c *man/monet.selected.Rd
a4f2446fee1b1ecab4a0ac17bf9728df *man/print.monet.Rd
d6c059b158bd1676b6fdc266014c5cf2 *src/Makevars
f0210158b053ee2e67aa4ecbaef43472 *src/Makevars
30b37b1f9014ccd0fb2351539cfa4ecb *src/ch2det.f
bc778e17f236ea560321df96c1e1c0be *src/ch2inv1.f
a7fac6b012888617ddf5b6b8c83a86a8 *src/change.f
Expand All @@ -30,7 +30,7 @@ c5d648591675ae434819d13520773c7f *src/entrp.c
dc450658294ed566302cc9278d469859 *src/entrp.h
56707d30d82b84fe3de47dff30aadf0a *src/grd.f
ebb01899c5e9a82f567782d429162840 *src/grddl.f
9bc9affa63a6c5a3b9a2ef896ea1d34d *src/heap.c
eedd11c0ff28900c396e7d82b51e4195 *src/heap.c
5371e92607006aba4441b477cdc73ea9 *src/heap.h
181e250505fff4e4375efd2792d8ff09 *src/init.c
e1455edeac1809a6185cc9dd0ddd7fe9 *src/pind.f
Expand Down
1 change: 1 addition & 0 deletions src/Makevars
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## private CPP flags:
PKG_CPPFLAGS = # -I./Something
#PKG_CFLAGS = -fsanitize=address -fno-omit-frame-pointer # for ASan

## we use the BLAS and the LAPACK library:
PKG_LIBS = $(SUBLIBS) $(LAPACK_LIBS) $(BLAS_LIBS) $(FLIBS)
Expand Down
16 changes: 8 additions & 8 deletions src/heap.c
Original file line number Diff line number Diff line change
Expand Up @@ -107,14 +107,14 @@ heap_type *heap_init()
heap_type *heap;
int *i,*j,*k,*l;
/* dummy arrays */
i=Calloc(1,int);
j=Calloc(1,int);
k=Calloc(1,int);
l=Calloc(1,int);
i[1]=0;
j[1]=0;
k[1]=0;
l[1]=0;
i=Calloc((size_t)1,int);
j=Calloc((size_t)1,int);
k=Calloc((size_t)1,int);
l=Calloc((size_t)1,int);
i[0]=0;
j[0]=0;
k[0]=0;
l[0]=0;

/*
* allocate memory, initialize values
Expand Down

0 comments on commit 2936fbf

Please sign in to comment.