#include "sopt/config.h"
#include <limits>
#include <numeric>
#include <utility>
#include <vector>
#include "sopt/conjugate_gradient.h"
#include "sopt/exception.h"
#include "sopt/linear_transform.h"
#include "sopt/logging.h"
#include "sopt/proximal.h"
#include "sopt/proximal_expression.h"
#include "sopt/types.h"
#include "sopt/wrapper.h"
Go to the source code of this file.
◆ SOPT_MACRO
#define SOPT_MACRO |
( |
|
NAME, |
|
|
|
TYPE |
|
) |
| |
Value: TYPE const &NAME() const { return NAME##_; } \
SDMM<SCALAR> &NAME(TYPE const &(NAME)) { \
NAME##_ = NAME; \
return *this; \
} \
\
protected: \
TYPE NAME##_; \
\
public:
Definition at line 62 of file sdmm.h.