Skip to content
#

physics-simulation

Here are 995 public repositories matching this topic...

netket
PhilipVinc
PhilipVinc commented May 11, 2021

This should prevent things like #701
It would be great to generate automatically the list of oldest dependencies with something like

import pkg_resources

package = pkg_resources.working_set.by_key["netket"]

oldest_dependencies = []

for requirement in package.requires():
    dependency = requirement.project_name
    if requirement.extras:
        dependency += '[' + ','.
jgreener64
jgreener64 commented Oct 29, 2018

This issue is a roadmap for Molly.jl development. Feel free to discuss things here or submit a PR. Bear in mind that significant refactoring will probably occur as the package develops.

Low hanging fruit

Want to get involved? These issues might be the place to start:

  • Speedups to the code. Both on the level of individual functions and the overall algorithm. [Getting there]
  • Look over
Open

Tests

flaport
flaport commented Oct 14, 2019

The library needs tests to prevent bugs. This library uses pytest as test suite, which is by far the most user friendly test-suite for Python. This is great, because this means anyone can add tests; it's super easy! Moreover, it makes you acquainted with the code, which is why it's labeled a good first issue.

When adding tests, keep the following in mind:

Improve this page

Add a description, image, and links to the physics-simulation topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the physics-simulation topic, visit your repo's landing page and select "manage topics."

Learn more