A serializable (using boost serialization) alglib 1D interpolant. More...
#include <SerializableSpline1dInterpolant.h>
Private Member Functions | |
template<class Archive > | |
void | serialize (Archive &ar, const unsigned int) |
Friends | |
class | boost::serialization::access |
std::ostream & | operator<< (std::ostream &os, const SerializableSpline1dInterpolant &interp) |
Human readable output for interpolants (data is currently not output). More... | |
A serializable (using boost serialization) alglib 1D interpolant.
Definition at line 15 of file SerializableSpline1dInterpolant.h.
|
private |
Serialize (see boost serialization library) the interpolation.
Serializes everything EXCEPT p_struct->x.data and p_struct->y.data, because I have no idea what they are. Also assumes that the spline data are all stored as doubles.
ar | The archive to serialize to. |
int | Version number. Ignored! |
Definition at line 53 of file SerializableSpline1dInterpolant.h.
|
friend |
Human readable output for interpolants (data is currently not output).
os | The stream to output to. |
interp | The interpolant to output. |
Definition at line 15 of file SerializableSpline1dInterpolant.cpp.