Dear developers and group members,
I was using an old version of Dealii where I was serializing some solutions and deserializing them where needed. In the code where I deserialize the solution I used to use the following headers:
#include <boost/archive/text_iarchive.hpp>
#include <boost/archive/text_oarchive.hpp>
#include <boost/serialization/vector.hpp>
#include <fstream>
#include <iostream>
and I used
std::ifstream iss("serialized_ex2");
boost::archive::text_iarchive ia(iss);
It used to work fine. However, after updating Dealii, the code breaks and I get the following error:
Exception on processing:
unregistered class
Aborting!
Do you have an idea of what could be the missing header or class?
Your help is highly appreciated,
Najwa