Displaying 2 results from an estimated 2 matches for "as_cholmod_sparse".
Did you mean:
r_as_cholmod_sparse
2011 Feb 11
1
Writting my own package - 64 bit problem with R_GetCCallable
...totally stumped and hoping that this is a
silly / common 32 to 64 bit transition issue.
The problem seems to come when I attempt to access a function
registered by the Matrix package. During compilation (on 64 bit only)
I get the ominous:
--------------
slim_stolen_from_matrix.c: In function ?R_as_cholmod_sparse?:
slim_stolen_from_matrix.c:36: warning: implicit declaration of
function ?R_GetCCallable?
slim_stolen_from_matrix.c:36: warning: cast to pointer from integer of
different size
--------------
The function in question is an identical copy of Matrix's
M_as_cholmod_sparse, reproduced below
-----...
2007 Jul 03
0
Forthcoming change in the API of the Matrix package
...ng to the old API. The next version
will be 0.999375-0 using the new API. I will soon upload version
0.99875-3 of the lme4 package that depends on
Matrix(<= 0.99875-3)
Version 0.999375-0 of the lme4 package will depend on
Matrix(>= 0.999375-0)
The changes in the API are in the functions as_cholmod_sparse,
as_cholmod_dense and as_cholmod_factor. After the change the first
argument will be a pointer to a struct of the appropriate return type
(i.e. the first argument in as_cholmod_sparse is a cholmod_sparse *
and the second argument is an SEXP). This allows the calling function
to handle both the al...