├── .gitignore ├── DM_phase.py ├── LICENSE ├── README.md ├── __version__.py ├── docs ├── What_am_I_looking_at.pdf └── mathematical_background.pdf ├── setup.py └── tests ├── B0355+54_DM57.2403.npy └── test_dm_phase.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielemichilli/DM_phase/HEAD/.gitignore -------------------------------------------------------------------------------- /DM_phase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielemichilli/DM_phase/HEAD/DM_phase.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielemichilli/DM_phase/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielemichilli/DM_phase/HEAD/README.md -------------------------------------------------------------------------------- /__version__.py: -------------------------------------------------------------------------------- 1 | 0.1.1 2 | -------------------------------------------------------------------------------- /docs/What_am_I_looking_at.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielemichilli/DM_phase/HEAD/docs/What_am_I_looking_at.pdf -------------------------------------------------------------------------------- /docs/mathematical_background.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielemichilli/DM_phase/HEAD/docs/mathematical_background.pdf -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielemichilli/DM_phase/HEAD/setup.py -------------------------------------------------------------------------------- /tests/B0355+54_DM57.2403.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielemichilli/DM_phase/HEAD/tests/B0355+54_DM57.2403.npy -------------------------------------------------------------------------------- /tests/test_dm_phase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielemichilli/DM_phase/HEAD/tests/test_dm_phase.py --------------------------------------------------------------------------------