11 #ifndef OOPS_ASSIMILATION_SADDLEPOINTVECTOR_H_
12 #define OOPS_ASSIMILATION_SADDLEPOINTVECTOR_H_
18 #include "oops/util/dot_product.h"
62 std::unique_ptr<CtrlInc_>
dx_;
67 template<
typename MODEL,
typename OBS>
70 : lambda_(lambda), dx_(dx)
75 template<
typename MODEL,
typename OBS>
127 lambda_->axpy(zz, *rhs.
lambda_);
128 dx_->axpy(zz, *rhs.
dx_);
135 return dot_product(*lambda_, *x2.
lambda_)
136 +dot_product(*dx_, *x2.
dx_);
Container of dual space vectors for all terms of the cost function.
Control vector for the saddle point formulation.
double dot_product_with(const SaddlePointVector &) const
void lambda(Multipliers_ *lambda)
Accessor method to set the lambda_ component.
ControlIncrement< MODEL, OBS > CtrlInc_
std::unique_ptr< Multipliers_ > lambda_
void axpy(const double, const SaddlePointVector &)
SaddlePointVector(CtrlInc_ *, Multipliers_ *)
SaddlePointVector & operator+=(const SaddlePointVector &)
const Multipliers_ & lambda() const
Accessor method to get the lambda_ component.
const CtrlInc_ & dx() const
Accessor method to get the dx_ component.
SaddlePointVector & operator*=(const double)
DualVector< MODEL, OBS > Multipliers_
void dx(CtrlInc_ *dx)
Accessor method to set the dx_ component.
SaddlePointVector & operator=(const SaddlePointVector &)
std::unique_ptr< CtrlInc_ > dx_
SaddlePointVector & operator-=(const SaddlePointVector &)
The namespace for the main oops code.