delete_allocated_memory.hpp
Go to the documentation of this file.
1 
12 #ifndef MLPACK_BINDINGS_IO_DELETE_ALLOCATED_MEMORY_HPP
13 #define MLPACK_BINDINGS_IO_DELETE_ALLOCATED_MEMORY_HPP
14 
16 
17 namespace mlpack {
18 namespace bindings {
19 namespace tests {
20 
21 template<typename T>
23  util::ParamData& /* d */,
24  const typename std::enable_if<!data::HasSerialize<T>::value>::type* = 0,
25  const typename std::enable_if<!arma::is_arma_type<T>::value>::type* = 0)
26 {
27  // Do nothing.
28 }
29 
30 template<typename T>
32  util::ParamData& /* d */,
33  const typename std::enable_if<arma::is_arma_type<T>::value>::type* = 0)
34 {
35  // Do nothing.
36 }
37 
38 template<typename T>
40  util::ParamData& d,
41  const typename std::enable_if<!arma::is_arma_type<T>::value>::type* = 0,
42  const typename std::enable_if<data::HasSerialize<T>::value>::type* = 0)
43 {
44  // Delete the allocated memory (hopefully we actually own it).
45  delete *boost::any_cast<T*>(&d.value);
46 }
47 
48 template<typename T>
50  util::ParamData& d,
51  const void* /* input */,
52  void* /* output */)
53 {
54  DeleteAllocatedMemoryImpl<typename std::remove_pointer<T>::type>(d);
55 }
56 
57 } // namespace tests
58 } // namespace bindings
59 } // namespace mlpack
60 
61 #endif
boost::any value
The actual value that is held.
Definition: param_data.hpp:79
Linear algebra utility functions, generally performed on matrices or vectors.
void DeleteAllocatedMemory(util::ParamData &d, const void *, void *)
This structure holds all of the information about a single parameter, including its value (which is s...
Definition: param_data.hpp:52
void DeleteAllocatedMemoryImpl(util::ParamData &, const typename std::enable_if<!data::HasSerialize< T >::value >::type *=0, const typename std::enable_if<!arma::is_arma_type< T >::value >::type *=0)