Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-raden committed Apr 29, 2024
1 parent d61e54e commit ff8500d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/IntaRNA/Interaction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ std::ostream&
operator<<(std::ostream& out, const Interaction::Boundary& b)
{
out <<"("<<b.i1<<":"<<b.i2<<")-("<<b.j1<<","<<b.j2<<")";
// out <<"("<<b.i1<<","<<b.j1<<","<<b.i2<<","<<b.j2<<")";
return out;
}

Expand Down
6 changes: 3 additions & 3 deletions src/IntaRNA/Interaction.h
Original file line number Diff line number Diff line change
Expand Up @@ -306,12 +306,12 @@ class Interaction {
compareEnergy( const E_type& energy, const Interaction & hasLargerE );

/**
* Prints the interacting base pair to stream
* Prints the interaction boundary to stream
* @param out the ostream to write to
* @param bp the Interaction base pair object to add
* @param b the Boundary object to add
* @return the altered stream out
*/
friend std::ostream& operator<<(std::ostream& out, const BasePair& bp);
friend std::ostream& operator<<(std::ostream& out, const Boundary& b);

/**
* Prints the interacting boundary to stream
Expand Down

0 comments on commit ff8500d

Please sign in to comment.