DMP_BBO library
Functions
MetaParameters.cpp File Reference

MetaParameters class source file. More...

#include <iostream>
#include <assert.h>
#include <boost/serialization/export.hpp>
#include <boost/archive/text_iarchive.hpp>
#include <boost/archive/text_oarchive.hpp>
#include <boost/archive/xml_iarchive.hpp>
#include <boost/archive/xml_oarchive.hpp>
#include "functionapproximators/MetaParameters.hpp"
Include dependency graph for MetaParameters.cpp:

Go to the source code of this file.

Functions

 BOOST_CLASS_EXPORT_IMPLEMENT (DmpBbo::MetaParameters)
 For boost::serialization. More...
 
ostream & operator<< (std::ostream &output, const MetaParameters &meta_parameters)
 

Detailed Description

MetaParameters class source file.

Author
Freek Stulp

This file is part of DmpBbo, a set of libraries and programs for the black-box optimization of dynamical movement primitives. Copyright (C) 2014 Freek Stulp, ENSTA-ParisTech

DmpBbo is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version.

DmpBbo is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License along with DmpBbo. If not, see http://www.gnu.org/licenses/.

Definition in file MetaParameters.cpp.

Function Documentation

BOOST_CLASS_EXPORT_IMPLEMENT ( DmpBbo::MetaParameters  )
ostream& DmpBbo::operator<< ( std::ostream &  output,
const MetaParameters meta_parameters 
)
Parameters
[in]outputOutput stream to which to write to
[in]meta_parametersMeta-parameters to write
Returns
Output stream
Remarks
Calls virtual function MetaParameters::toString, which must be implemented by subclasses: http://stackoverflow.com/questions/4571611/virtual-operator

Definition at line 51 of file MetaParameters.cpp.

51  {
52  output << meta_parameters.toString();
53  return output;
54 }

Here is the call graph for this function: