Program Listing for File wrapper.hpp
↰ Return to documentation for file (include/proxsuite/serialization/wrapper.hpp
)
//
// Copyright (c) 2022 INRIA
//
#ifndef PROXSUITE_SERIALIZATION_WRAPPER_HPP
#define PROXSUITE_SERIALIZATION_WRAPPER_HPP
#include <cereal/cereal.hpp>
#include <proxsuite/proxqp/dense/wrapper.hpp>
namespace cereal {
template<class Archive, typename T>
void
serialize(Archive& archive, proxsuite::proxqp::dense::QP<T>& qp)
{
archive(
CEREAL_NVP(qp.model), CEREAL_NVP(qp.results), CEREAL_NVP(qp.settings));
} // CEREAL_NVP(qp.ruiz), ,CEREAL_NVP(qp.ruiz)
} // namespace cereal
#endif /* end of include guard PROXSUITE_SERIALIZATION_WRAPPER_HPP */