#include "sopt/config.h"
#include <limits>
#include <memory>
#include <numeric>
#include <tuple>
#include <utility>
#include "sopt/exception.h"
#include "sopt/forward_backward.h"
#include "sopt/linear_transform.h"
#include "sopt/logging.h"
#include "sopt/proximal.h"
#include "sopt/relative_variation.h"
#include "sopt/types.h"
#include "sopt/non_differentiable_func.h"
#include "sopt/differentiable_func.h"
#include <functional>
#include "sopt/gradient_utils.h"
#include <stdexcept>
Go to the source code of this file.
◆ SOPT_MACRO
#define SOPT_MACRO |
( |
|
NAME, |
|
|
|
TYPE |
|
) |
| |
Value: TYPE const &NAME() const { return NAME##_; } \
ImagingForwardBackward<SCALAR> &NAME(TYPE const &(NAME)) { \
NAME##_ = NAME; \
return *this; \
} \
\
protected: \
TYPE NAME##_; \
\
public:
Definition at line 119 of file imaging_forward_backward.h.