amuse
amuse copied to clipboard
Astrophysical Multipurpose Software Environment. This is the main repository for AMUSE
See issue #687. This PR makes it possible to construct quantities using the `*` operator, which would previously have resulted in a unit. With this PR, a unit multiplied/divided by...
Update tests
While checking pytest I found that many (code) tests aren't doing a great job... Many are incomplete (testing only very basic things), run for a very long time, produce unnecessary...
In src/amuse/support/core.py, 2to3 changed ``` def isnumber(self, x): return isinstance(x,types.IntType) or isinstance(x,types.FloatType) ``` to ``` def isnumber(self, x): return isinstance(x,int) or isinstance(x,float) ``` about which @ipelupessy wrote >this one is...
the documentation (https://amuse.readthedocs.io/) needs to be read and critically assessed, preferably by a set of new eyes.. @MJCWilhelm: can you do this?
newer python versions have build-in decorators for caching and memoization, which may replace the current ones used (needs testing/ performance timing though)
**Describe the bug** When installing amuse via `python setup.py install`, some files required for examples/scripts/codes are forgotten by the installer. This is a tracker bug to report such files. -...
The documentation of AMUSE both documents the framework and the astrophysics AMUSE. Make a clearer seperation (e.g. seperate sections)
I think the scripts and stuff needed to build binary releases can move to their own repository - they are not related to amuse per se