SimaticResearchActivity / FBAE

Framework for Broadcast Algorithms Evaluation
GNU Affero General Public License v3.0
0 stars 1 forks source link

For Cereal polymorphic serialization, see if unique_ptr could be used instead of shared_ptr. #57

Open simatic opened 6 months ago

simatic commented 6 months ago

For Cereal polymorphic serialization, FBAE has used shared_ptr as suggested by Polymorphism user's manual. But, according to this Cereal tutorial, unique_ptr can also be used.

==> Study if it is possible to use unique_ptr instead of shared_ptr.