Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: symengine
Title: Interface to the 'SymEngine' Library
Version: 0.2.6
Version: 0.2.10
Authors@R: c(person("Jialin", "Ma", email="marlin@inventati.org", role = c("cre", "aut")),
person("Isuru", "Fernando", email="isuruf@gmail.com", role = c("aut")),
person("Xin", "Chen", email="xinchen.tju@gmail.com", role = c("aut")))
Expand All @@ -17,7 +17,6 @@ Imports:
Suggests:
crayon,
pracma,
odeintr,
testthat (>= 2.1.0),
knitr,
rmarkdown
Expand All @@ -35,20 +34,18 @@ Encoding: UTF-8
LazyData: true
URL: https://github.com/symengine/symengine.R
BugReports: https://github.com/symengine/symengine.R/issues
Additional_repositories: https://Marlin-Na.github.io/drat
License: GPL (>= 2)
Copyright: The R package bundles the 'SymEngine' library source and its subcomponents
under 'src/upstream' directory. See file COPYRIGHTS for retained copyright notices
as a relicensing and redistribution requirement.
RoxygenNote: 7.2.3
RoxygenNote: 7.3.2
Collate:
'RcppExports.R'
'basic-getinfo.R'
'classes.R'
'basic.R'
'codegen.R'
'double_visitor.R'
'dxdt.R'
'function_symbol.R'
'knitr.R'
'lambdify.R'
Expand Down
6 changes: 3 additions & 3 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
# Generated by roxygen2: do not edit by hand

S3method("[",symArray)
S3method(as.data.frame,symArray)
S3method(as.function,BasicOrVecBasic)
S3method(as.matrix,DenseMatrix)
S3method(cbind,SymEngineDataType)
S3method(print,symArray)
S3method(rbind,SymEngineDataType)
S3method(rep,Basic)
S3method(rep,VecBasic)
Expand All @@ -15,7 +18,6 @@ export(FunctionSymbol)
export(GCD)
export(LCM)
export(Matrix)
export(ODESystem)
export(Real)
export(S)
export(Symbol)
Expand All @@ -24,7 +26,6 @@ export(Vector)
export(as.language)
export(codegen)
export(dirichlet_eta)
export(dxdt)
export(erf)
export(erfc)
export(evalf)
Expand Down Expand Up @@ -57,7 +58,6 @@ exportMethods(choose)
exportMethods(det)
exportMethods(digamma)
exportMethods(factorial)
exportMethods(predict)
exportMethods(psigamma)
exportMethods(solve)
exportMethods(t)
Expand Down
216 changes: 0 additions & 216 deletions R/dxdt.R

This file was deleted.

7 changes: 6 additions & 1 deletion R/symbolic_array.R
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ symArray <- function(...) {
ans
}

#' @export
print.symArray <- function(x, ...) {
## TODO: to improve this...
## maybe we need to define method for format instead?
Expand All @@ -21,6 +22,7 @@ print.symArray <- function(x, ...) {

## Preserve class attributes for these functions

#' @export
`[.symArray` <- function(x,...) {
ans <- NextMethod("[")
class(ans) <- class(x)
Expand All @@ -29,5 +31,8 @@ print.symArray <- function(x, ...) {


## So that it can be used in data frame
as.data.frame.symArray <- as.data.frame.vector
#' @export
as.data.frame.symArray <- function(...) {
as.data.frame.vector(...)
}

3 changes: 1 addition & 2 deletions R/symengine.R
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,9 @@
#' - `lambertw`, `zeta`, `dirichlet_eta`, `erf`, `erfc`
#' - `atan2`, `kronecker_delta`, `lowergamma`, `uppergamma`, `psigamma`, `beta`
#'
#' @docType package
#' @name symengine
#' @md
NULL
"_PACKAGE"

#' @import methods
#' @importFrom Rcpp cppFunction
Expand Down
Loading
Loading