#include "sopt/config.h"
#include <array>
#include <type_traits>
#include <utility>
#include <Eigen/Core>
#include "sopt/linear_transform.h"
#include "sopt/maths.h"
#include "sopt/proximal_expression.h"
Go to the source code of this file.
◆ SOPT_MACRO [1/2]
      
        
          | #define SOPT_MACRO | ( |  | NAME, | 
        
          |  |  |  | TYPE | 
        
          |  | ) |  |  | 
      
 
Value:  TYPE const &NAME() const { return NAME##_; }   \
  L1TightFrame<Scalar> &NAME(TYPE const &(NAME)) { \
    NAME##_ = NAME;                              \
    return *this;                                \
  }                                              \
                                                 \
 protected:                                      \
  TYPE NAME##_;                                  \
                                                 \
 public:
Definition at line 255 of file l1_proximal.h.
 
 
◆ SOPT_MACRO [2/2]
      
        
          | #define SOPT_MACRO | ( |  | NAME, | 
        
          |  |  |  | TYPE | 
        
          |  | ) |  |  | 
      
 
Value:  TYPE const &NAME() const { return NAME##_; } \
  L1<Scalar> &NAME(TYPE const &(NAME)) {         \
    NAME##_ = NAME;                            \
    return *this;                              \
  }                                            \
                                               \
 protected:                                    \
  TYPE NAME##_;                                \
                                               \
 public:
Definition at line 255 of file l1_proximal.h.