proxsuite 0.6.7
The Advanced Proximal Optimization Toolbox
Loading...
Searching...
No Matches
ruiz.hpp
Go to the documentation of this file.
1//
2// Copyright (c) 2022 INRIA
3//
8#ifndef PROXSUITE_SERIALIZATION_RUIZ_HPP
9#define PROXSUITE_SERIALIZATION_RUIZ_HPP
10
11#include <cereal/cereal.hpp>
13
14namespace cereal {
15
16template<class Archive, typename T>
17void
18serialize(Archive& archive,
20{
21 archive(
22 // CEREAL_NVP(ruiz.delta),
23 CEREAL_NVP(ruiz.c)
24 // CEREAL_NVP(ruiz.dim)
25 // CEREAL_NVP(ruiz.epsilon),
26 // CEREAL_NVP(ruiz.max_iter)
27 // CEREAL_NVP(ruiz.sym)
28 );
29}
30} // namespace cereal
31
32#endif /* end of include guard PROXSUITE_SERIALIZATION_RUIZ_HPP */
void serialize(Archive &archive, proxsuite::proxqp::dense::Model< T > &model)
Definition model.hpp:18