1 // Copyright (c) 2018 ERGO-Code. See license.txt for license.
2 
3 #include "linear_operator.h"
4 
5 namespace ipx {
6 
Apply(const Vector & rhs,Vector & lhs,double * rhs_dot_lhs)7 void LinearOperator::Apply(const Vector& rhs, Vector& lhs,
8                            double* rhs_dot_lhs) {
9     _Apply(rhs, lhs, rhs_dot_lhs);
10 }
11 
12 }  // namespace ipx
13