Skip to content

Commit

Permalink
version 7.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
aadler authored and cran-robot committed Apr 26, 2019
1 parent fe1f2f5 commit f4c1066
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: Delaporte
Type: Package
Title: Statistical Functions for the Delaporte Distribution
Version: 7.0.0
Date: 2019-02-12
Version: 7.0.1
Date: 2019-04-05
Authors@R: c(person(given="Avraham", family="Adler", role=c("aut", "cph", "cre"), email="Avraham.Adler@gmail.com", comment = c(ORCID = "0000-0002-3039-0703")))
Description: Provides probability mass, distribution, quantile, random-variate generation, and method-of-moments parameter-estimation functions for the Delaporte distribution. The Delaporte is a discrete probability distribution which can be considered the convolution of a negative binomial distribution with a Poisson distribution. Alternatively, it can be considered a counting distribution with both Poisson and negative binomial components. It has been studied in actuarial science as a frequency distribution which has more variability than the Poisson, but less than the negative binomial.
License: BSD_2_clause + file LICENSE
Expand All @@ -13,8 +13,8 @@ Imports: stats
Suggests: testthat
ByteCompile: yes
NeedsCompilation: yes
Packaged: 2019-02-12 05:15:37 UTC; Parents
Packaged: 2019-04-05 08:05:33 UTC; ripley
Author: Avraham Adler [aut, cph, cre] (<https://orcid.org/0000-0002-3039-0703>)
Maintainer: Avraham Adler <Avraham.Adler@gmail.com>
Repository: CRAN
Date/Publication: 2019-02-12 13:25:21 UTC
Date/Publication: 2019-04-26 13:20:22 UTC
6 changes: 3 additions & 3 deletions MD5
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
e976580a163ca0b55d5e36a8d4ba1293 *DESCRIPTION
44e5ac75d353ba1dcfbe1145a14c883e *DESCRIPTION
e61f7ad42a80fc7fc00d7ab6fd577dec *LICENSE
c541024d29b2f90e7ff1616f6376efd3 *NAMESPACE
222a1e46b52f62558ea0228da02c38c1 *R/Delaporte.R
3fb0234852c98654079a2889fd2df7f2 *README.md
5426beac45cd538ef04d2211015c1b85 *build/partial.rdb
2f15ed44be20407a7d4d10a97a3af81c *build/partial.rdb
21c60a1a489f4f6f0df83376d05619b9 *inst/NEWS.Rd
948bb23028a98b5da5ab08566e8ca5a4 *man/Delaporte-defunct.Rd
924a8bce21e6b8dc9c43790f850e1f23 *man/Delaporte-internal.Rd
bb8d6ced6eb875823d0e597e27c6b59a *man/Delaporte-package.Rd
e9610fb3b2eef4ae5db81bf1b3845b81 *man/Delaporte.Rd
1e9a2610448ea493b5cefd8758f5211b *src/Makevars
ff5d142b8ab5d14fa822aaf3e921f9e5 *src/Makevars
ed69661c4e16ea3d6b9d4f924b68bd8a *src/delaporte.f95
a1cd6fd44a9435ff92271fa6bee821f3 *src/lgamma.f95
937d135dc1ca1d654b348e6c0f342a68 *src/utils.f95
Expand Down
Binary file modified build/partial.rdb
Binary file not shown.
14 changes: 7 additions & 7 deletions src/Makevars
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ PKG_LIBS = $(LAPACK_LIBS) $(BLAS_LIBS) $(FLIBS) $(SHLIB_OPENMP_CFLAGS)
C_OBJS = utils_and_wrappers.o
FT_OBJS = utils.o lgamma.o delaporte.o

all: $(SHLIB) cleanup

all:
@$(MAKE) $(SHLIB)
@rm -f *.mod *.o

$(SHLIB): $(FT_OBJS) $(C_OBJS)

utils.mod: utils.o
lgamma.o: utils.mod utils.o
lgam.mod: lgamma.o utils.mod utils.o
delaporte.o: lgam.mod lgamma.o utils.mod utils.o
lgamma.o: utils.o
delaporte.o: lgamma.o utils.o

cleanup:
@rm -rf *.mod *.o
@rm -f *.mod *.o

0 comments on commit f4c1066

Please sign in to comment.