1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/updateParVals.R
\name{updateParVals}
\alias{updateParVals}
\title{Insert par.vals to old ones with meeting requirements}
\usage{
updateParVals(par.set, old.par.vals, new.par.vals, warn = FALSE)
}
\arguments{
\item{par.set}{\link{ParamSet}\cr
Parameter set.}
\item{old.par.vals}{\link{list}\cr
Param Values to be updated.}
\item{new.par.vals}{\link{list}\cr
New Param Values to update the \code{old.par.vals}.}
\item{warn}{\link{logical}\cr
Whether a warning should be shown, if a param setting from \code{old.par.vals}
is dropped. Default is \code{FALSE}.}
}
\value{
\code{\link{list}}.
}
\description{
Update the values of a given parameter setting with a new
parameter setting. Settings that do not meet the requirements anymore will be
deleted from the first given parameter setting. Default values of the Param
Set are respected to check if the new param settings meet the requirements.
}
|