Skip to content
Snippets Groups Projects
Commit fb7f935e authored by Giovanni La Mura's avatar Giovanni La Mura
Browse files

Add path separator to binary output file names

parent 735bf55d
Branches development
No related tags found
Loading
......@@ -37,8 +37,8 @@ void sphere(string config_file, string data_file, string output_path) {
printf("FILE: %s\n", ex.what());
exit(1);
}
sconf->write_formatted(output_path + "c_OEDFB");
sconf->write_binary(output_path + "c_TEDF");
sconf->write_formatted(output_path + "/c_OEDFB");
sconf->write_binary(output_path + "/c_TEDF");
GeometryConfiguration *gconf = NULL;
try {
gconf = GeometryConfiguration::from_legacy(data_file);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment