This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ! Rough and untested template extracted from driver.f90 in the i-PI repo. | |
| program driver | |
| use f90sockets, only: open_socket, writebuffer, readbuffer | |
| implicit none | |
| integer, parameter :: dp=kind(0.d0) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Downloading https://easybuilders.github.io/easybuild/files/distribute-0.6.49-patched1.tar.gz | |
| Extracting in /tmp/tmpP2l2t0 | |
| Now working in /tmp/tmpP2l2t0/distribute-0.6.49 | |
| Installing Distribute | |
| Before install bootstrap. | |
| Scanning installed packages | |
| No setuptools distribution found | |
| running install | |
| running bdist_egg | |
| running egg_info |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| """ | |
| Two possible ways of implementing a class property. | |
| There does not seem to be a way to access it under the same name from the | |
| class as well, i.e. `Test2.cool = False`, as the attribute `Test2.cool` is | |
| taken up by the property. | |
| """ |