We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here is a MWE of my code:
#include <iostream> #include <fstream> #include <boost/graph/graphml.hpp> #include <boost/property_map/dynamic_property_map.hpp> int main(int, char**){ std::ifstream graph_file; graph_file.open("more_exampleHoles_8.txt", std::ifstream::in); Graph g; boost::dynamic_properties dp; boost::read_graphml(graph_file, g, dp); }
The file more_exampleHoles_8.txt is attached below. I receive the following error:
more_exampleHoles_8.txt
terminate called after throwing an instance of 'boost::wrapexcept<boost::property_not_found>' what(): Property not found: betti. Aborted (core dumped)
I think this is a bug? If not, any help appreciated.
The text was updated successfully, but these errors were encountered:
Do you have something else that reads GraphML to compare against? I mean, how did you verify that it's well formed?
Sorry, something went wrong.
jeremy-murphy
No branches or pull requests
Here is a MWE of my code:
The file
more_exampleHoles_8.txt
is attached below. I receive the following error:I think this is a bug? If not, any help appreciated.
more_exampleHoles_8.txt
The text was updated successfully, but these errors were encountered: