knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%"
)

solvergater.solvers

The package contains code that handles some particular external PDE solvers.

Installation

You can install the development version from GitHub with:

# install.packages("devtools")
devtools::install_github("maciejsmolka/solvergater.solvers")

Usage

This is a basic example which shows you how to run an MT solver:

if (FALSE) {
  library(solvergater.solvers)
  mts <- mt_solver()
  mt_obj <- objective(mts, mt_data$exact_qoi, 
                      precision = mt_data$precision_levels[2]
                      )
  mt_obj(c(1, 2, 3, 4))
}


maciejsmolka/solvergater.solvers documentation built on Jan. 20, 2021, 1:34 a.m.