OOPS
LocalIncrement.cc
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2019-2020 UCAR.
3  *
4  * This software is licensed under the terms of the Apache Licence Version 2.0
5  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6  */
7 
9 
10 #include "eckit/exception/Exceptions.h"
11 
12 namespace oops {
13 
14  LocalIncrement & LocalIncrement::operator *=(const std::vector<double> & rhs) {
15  ASSERT(vals_.size() == rhs.size());
16  for (unsigned i=0; i < vals_.size(); ++i) {
17  vals_[i] *= rhs[i];
18  }
19  return *this;
20  }
21 
22  void LocalIncrement::setVals(std::vector<double> & valsIn) {
23  ASSERT(vals_.size() == valsIn.size());
24  vals_ = valsIn;
25  }
26 
27 } // namespace oops
LocalIncrement & operator*=(const std::vector< double > &)
Linear algebra operators.
void setVals(std::vector< double > &)
std::vector< double > vals_
The namespace for the main oops code.