ttvalue.h
Go to the documentation of this file.
1 #ifndef TTG_MADNESS_TTVALUE_H
2 #define TTG_MADNESS_TTVALUE_H
3 
4 namespace ttg_madness {
5 
6  template<typename DerivedT>
7  struct TTValue
8  {
9  /* empty */
10  };
11 
12  template<typename ValueT>
13  inline auto persistent(ValueT&& value) {
14  return std::forward<ValueT>(value);
15  }
16 
17 } // namespace ttg_madness
18 
19  #endif // TTG_MADNESS_TTVALUE_H
this contains MADNESS-based TTG functionality
Definition: fwd.h:16
auto persistent(ValueT &&value)
Definition: ttvalue.h:13