mlpack  master
Namespaces | Functions
serialization.hpp File Reference
Include dependency graph for serialization.hpp:

Go to the source code of this file.

Namespaces

 mlpack
 Linear algebra utility functions, generally performed on matrices or vectors.
 

Functions

void mlpack::CheckMatrices (const arma::mat &x, const arma::mat &xmlX, const arma::mat &textX, const arma::mat &binaryX)
 
void mlpack::CheckMatrices (const arma::Mat< size_t > &x, const arma::Mat< size_t > &xmlX, const arma::Mat< size_t > &textX, const arma::Mat< size_t > &binaryX)
 
template<typename T , typename IArchiveType , typename OArchiveType >
void mlpack::SerializeObject (T &t, T &newT)
 
template<typename T >
void mlpack::SerializeObjectAll (T &t, T &xmlT, T &textT, T &binaryT)
 
template<typename T , typename IArchiveType , typename OArchiveType >
void mlpack::SerializePointerObject (T *t, T *&newT)
 
template<typename T >
void mlpack::SerializePointerObjectAll (T *t, T *&xmlT, T *&textT, T *&binaryT)
 
template<typename CubeType >
void mlpack::TestAllArmadilloSerialization (arma::Cube< CubeType > &x)
 
template<typename MatType >
void mlpack::TestAllArmadilloSerialization (MatType &x)
 
template<typename CubeType , typename IArchiveType , typename OArchiveType >
void mlpack::TestArmadilloSerialization (arma::Cube< CubeType > &x)
 
template<typename MatType , typename IArchiveType , typename OArchiveType >
void mlpack::TestArmadilloSerialization (MatType &x)
 

Detailed Description

Author
Ryan Curtin

Miscellaneous utility functions for serialization tests.

mlpack is free software; you may redistribute it and/or modify it under the terms of the 3-clause BSD license. You should have received a copy of the 3-clause BSD license along with mlpack. If not, see http://www.opensource.org/licenses/BSD-3-Clause for more information.

Definition in file serialization.hpp.