Skip to content

Commit

Permalink
grmpf
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-raden committed Apr 29, 2024
1 parent ff8500d commit a2785a5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/IntaRNA/Interaction.h
Original file line number Diff line number Diff line change
Expand Up @@ -306,20 +306,20 @@ class Interaction {
compareEnergy( const E_type& energy, const Interaction & hasLargerE );

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

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

/**
* Prints the interacting base pairs to stream
Expand Down

0 comments on commit a2785a5

Please sign in to comment.