Skip to content

Commit

Permalink
Update to fix CRAN checks on windows-devel.
Browse files Browse the repository at this point in the history
  • Loading branch information
fbertran committed Apr 10, 2021
1 parent e63bd1c commit f6ad7f2
Show file tree
Hide file tree
Showing 16 changed files with 52 additions and 78 deletions.
23 changes: 0 additions & 23 deletions MD5

This file was deleted.

4 changes: 4 additions & 0 deletions cleanup
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#!/bin/sh

## a.out.dSYM may get created on OS X.
## rm -rf src/Makevars
rm -f src/*.o src/*.so
rm -f src/refblas64/*.o src/refblas64/*.so src/refblas64/*.a
rm -rf autom4te.cache
4 changes: 2 additions & 2 deletions docs/404.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions docs/authors.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions docs/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions docs/news/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ pandoc: 2.11.2
pkgdown: 1.6.1
pkgdown_sha: ~
articles: {}
last_built: 2021-04-10T01:07Z
last_built: 2021-04-10T13:56Z

4 changes: 2 additions & 2 deletions docs/reference/Ops.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 6 additions & 4 deletions docs/reference/bigalgebra-package.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 15 additions & 14 deletions docs/reference/daxpy.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docs/reference/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions man/bigalgebra-package.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,10 @@ Maintainer: Frédéric Bertrand <frederic.bertrand@utt.fr>
# if you have any problems, please email us! - Jay & Mike 4/29/2010
library("bigmemory")
A <- big.matrix(5,4,init=1)
B <- big.matrix(4,4,init=2)
A <- big.matrix(5,4, type="double", init=0,
dimnames=list(NULL, c("alpha", "beta")))
B <- big.matrix(4,4, type="double", init=0,
dimnames=list(NULL, c("alpha", "beta")))
C <- A %*% B # Returns a new big.matrix object
D <- A[] %*% B[] # Compute the same thing in R
Expand Down
3 changes: 2 additions & 1 deletion man/daxpy.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ Michael J. Kane
\examples{
require(bigmemory)
A = matrix(1, nrow=3, ncol=2)
B = big.matrix(nrow=3, ncol=2, type='double', init=1)
B <- big.matrix(3, 2, type="double", init=0,
dimnames=list(NULL, c("alpha", "beta")), shared=FALSE)
C = B + B # C is a new big matrix
D = A + B # D defaults to a regular R matrix, to change this, set the option:
# optons(bigalgebra.mixed_arithmetic_returns_R_matrix=FALSE)
Expand Down
1 change: 1 addition & 0 deletions src/Makevars
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
PKG_CPPFLAGS=-I../include
PKG_LIBS = $(LAPACK_LIBS) $(BLAS_LIBS) $(FLIBS)

13 changes: 0 additions & 13 deletions src/Makevars.win

This file was deleted.

3 changes: 1 addition & 2 deletions src/R_init_bigalgebra.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
//
// 2019-02-19. Author F. Bertrand <fbertran@math.unistra.fr>
// Copyright (c) Universite de Strasbourg and CNRS
// 2021-04-10. Author F. Bertrand <frederic.bertrand@utt.fr>
//

#include <stdlib.h> // for NULL
Expand Down

0 comments on commit f6ad7f2

Please sign in to comment.