Julian Rüth wrote:
Bruno Grenet <bruno.gre...@gmail.com> [2014-06-12 13:47:59 +0200]:
- The algorithm I implemented uses some auxiliary functions that are not of
real interest outside the algorithm. How should I do to avoid this functions
be available for the users?
If you turn these auxiliary functions into methods of the ring Z, you
can hide them by adding a single (or double but many people dislike
this) underscore to the method name. If they are only used by your
method to compute roots, you could probably name these methods
_roots_from_factorization_method_name().

... or make them local to that method, if it's unlikely that they'll be used by other methods in the future.


-leif

--
() The ASCII Ribbon Campaign
/\   Help Cure HTML E-Mail

--
You received this message because you are subscribed to the Google Groups 
"sage-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-devel+unsubscr...@googlegroups.com.
To post to this group, send email to sage-devel@googlegroups.com.
Visit this group at http://groups.google.com/group/sage-devel.
For more options, visit https://groups.google.com/d/optout.

Reply via email to