Explicitly delete the copy constructor and copy assignment operator The implicitly-declared copy constructor and copy assignment operator of ProductParameterization are not deleted since the corresponding functions of the member vector are defined, though ill-formed if they are instantiated. With dllexport, the compiler must generate all of the member functions of the class, including those are implicitly-declared, so we need explicitly delete the ill-formed ones. Change-Id: Iaa763dfaefdc74a9840f244ba05c6bfd0bd99492
Ceres Solver is an open source C++ library for modeling and solving large, complicated optimization problems. It is a feature rich, mature and performant library which has been used in production at Google since 2010. Ceres Solver can solve two kinds of problems.
Please see ceres-solver.org for more information.