Fix
This commit is contained in:
parent
053fa31bb2
commit
685f46dc27
@ -100,7 +100,7 @@ ElimGraph::exportToGraphViz (
|
|||||||
ofstream out (fileName);
|
ofstream out (fileName);
|
||||||
if (!out.is_open()) {
|
if (!out.is_open()) {
|
||||||
cerr << "error: cannot open file to write at " ;
|
cerr << "error: cannot open file to write at " ;
|
||||||
cerr << "Markov::exportToDotFile()" << endl;
|
cerr << "ElimGraph::exportToDotFile()" << endl;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
out << "strict graph {" << endl;
|
out << "strict graph {" << endl;
|
||||||
@ -115,7 +115,7 @@ ElimGraph::exportToGraphViz (
|
|||||||
out << '"' << node->label() << '"' ;
|
out << '"' << node->label() << '"' ;
|
||||||
out << " [shape=box3d]" << endl;
|
out << " [shape=box3d]" << endl;
|
||||||
} else {
|
} else {
|
||||||
cout << "error: invalid variable id: " << highlightVarIds[i] << endl;
|
cerr << "error: invalid variable id: " << highlightVarIds[i] << endl;
|
||||||
exit (EXIT_FAILURE);
|
exit (EXIT_FAILURE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user