Changeset 543ce4 for molecuilder/src/atom_graphnode.cpp
- Timestamp:
- Nov 4, 2009, 7:56:04 PM (16 years ago)
- Children:
- 4ef101, aa8542
- Parents:
- ec70ec
- File:
-
- 1 edited
-
molecuilder/src/atom_graphnode.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/atom_graphnode.cpp
rec70ec r543ce4 7 7 8 8 #include "atom_graphnode.hpp" 9 #include "log.hpp" 9 10 #include "verbose.hpp" 10 11 … … 24 25 * \param *out output stream 25 26 */ 26 void GraphNode::OutputGraphInfo( ofstream *out) const27 void GraphNode::OutputGraphInfo() const 27 28 { 28 *out<< Verbose(2) << "Atom " << Name << " is " << ((SeparationVertex) ? "a" : "not a") << " separation vertex, components are ";29 OutputComponentNumber( out);30 *out<< " with Lowpoint " << LowpointNr << " and Graph Nr. " << GraphNr << "." << endl;29 Log() << Verbose(2) << "Atom " << Name << " is " << ((SeparationVertex) ? "a" : "not a") << " separation vertex, components are "; 30 OutputComponentNumber(); 31 Log() << Verbose(0) << " with Lowpoint " << LowpointNr << " and Graph Nr. " << GraphNr << "." << endl; 31 32 }; 32 33 … … 35 36 * \param *out output stream for debugging 36 37 */ 37 void GraphNode::OutputComponentNumber( ofstream *out) const38 void GraphNode::OutputComponentNumber() const 38 39 { 39 40 if (ComponentNr != NULL) { 40 41 for (int i=0; ComponentNr[i] != -1; i++) 41 *out<< ComponentNr[i] << " ";42 Log() << Verbose(0) << ComponentNr[i] << " "; 42 43 } 43 44 };
Note:
See TracChangeset
for help on using the changeset viewer.
