Code Monkey home page Code Monkey logo

Comments (4)

KirstieJane avatar KirstieJane commented on August 22, 2024

Woooo! This is a REALLY useful issue!! Thank you @Islast! ✨

I'm happy to discuss any refactoring that's needed. I have to admit that I don't really know the benefits of having class methods 😬. The most important thing for me with this refactoring is that the values are written out in a standard form (csv for example) so that the other commands can be run without running this one.

from scona.

Islast avatar Islast commented on August 22, 2024

The value of having something saved as a class attribute instead of as a global namespace variable or in a dictionary is that they are easier to identify. i.e if you want to find the nodal partition you calculated for a given graph G, you only need to type G.nodal_partition.
The value of class methods is that grammatically you expect nodal_partition(G) to return a nodal partition, while you expect G.nodal_partition() to return nothing and make changes to G. This means that if we want the nodal partition to be saved automatically as an class attribute, G.nodal_partition() is the better choice.
I think it's good to provide functions in terms of both: normal functions for when you just want to return the result, and class methods for when you want to automatically add to the graph attributes.
BUT, I don't know how adding new class methods to an existing class interferes with it (adding attributes is fine).

resources for this
more

from scona.

Islast avatar Islast commented on August 22, 2024

@kirstie, let me know where and when and what you would like to see written to disk 🌺

from scona.

Islast avatar Islast commented on August 22, 2024

Completed in #74

from scona.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.