#include "sopt/config.h"
#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/l1_proximal.h"
Go to the source code of this file.
◆ SOPT_MACRO
#define SOPT_MACRO |
( |
|
VAR, |
|
|
|
TYPE |
|
) |
| |
Value: \
TYPE const &l1_proximal_##VAR() const { return l1_proximal().VAR(); } \ \
L1GProximal<SCALAR> &l1_proximal_##VAR(TYPE const ARG) { \
l1_proximal().VAR(ARG); \
return *this; \
}
Definition at line 90 of file l1_non_diff_function.h.