├── README.md ├── .gitignore └── LICENSE.md /README.md: -------------------------------------------------------------------------------- 1 | This repository is no longer in use. 2 | 3 | All code including test scripts has been moved to https://github.com/SpiNNakerManchester/sPyNNaker 4 | 5 | The running of the Integration Tests is now done in https://github.com/SpiNNakerManchester/IntegrationTests 6 | 7 | The state before the merged has been tagged pre_merge 8 | 9 | See: https://github.com/SpiNNakerManchester/sPyNNaker8/tree/pre_merge 10 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2017-2019 The University of Manchester 2 | # 3 | # This program is free software: you can redistribute it and/or modify 4 | # it under the terms of the GNU General Public License as published by 5 | # the Free Software Foundation, either version 3 of the License, or 6 | # (at your option) any later version. 7 | # 8 | # This program is distributed in the hope that it will be useful, 9 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 10 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 | # GNU General Public License for more details. 12 | # 13 | # You should have received a copy of the GNU General Public License 14 | # along with this program. If not, see . 15 | 16 | /.project 17 | /.pydevproject 18 | /.idea 19 | /.settings 20 | /doc/build 21 | *.pyc 22 | *reports/ 23 | *application_generated_data_files/ 24 | *build/ 25 | *dist/ 26 | *egg-info/ 27 | MANIFEST 28 | /.cache 29 | .coverage 30 | /.pytest_cache 31 | __pycache__ 32 | *local/ 33 | *.log 34 | JobDestroyedError.txt 35 | *.dat 36 | /venv/ 37 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | 2 | # License Agreement 3 | 4 | Up to date information for the whole [SpiNNakerManchester Projects](https://github.com/SpiNNakerManchester) can be found [here](http://spinnakermanchester.github.io/common_pages/4.0.0/LicenseAgreement.html) 5 | 6 | As shown there the software is currently being released under the GPL version 3 license listed [here](http://www.gnu.org/copyleft/gpl.html) 7 | 8 | 9 | # Paper Authorship 10 | 11 | See: [here](http://spinnakermanchester.github.io/common_pages/4.0.0/LicenseAgreement.html#paper-authorship) 12 | 13 | # Modifications 14 | 15 | See: [here](http://spinnakermanchester.github.io/common_pages/4.0.0/LicenseAgreement.html#modifications) 16 | 17 | # Contributors 18 | 19 | For up to date information on Contributors see the graphs/contributors pages on each project. 20 | 21 | For example [https://github.com/SpiNNakerManchester/sPyNNaker8/graphs/contributors](https://github.com/SpiNNakerManchester/sPyNNaker8/graphs/contributors) 22 | 23 | [Combined list](http://spinnakermanchester.github.io/common_pages/4.0.0/LicenseAgreement.html#contributors) 24 | 25 | --------------------------------------------------------------------------------