|
7 | 7 | - Double logarithmic scale for the integration of spherical diffuse
|
8 | 8 | interfaces: much more stable than the previous version, allowing for
|
9 | 9 | Runge-Kutta 4 integrator.
|
| 10 | +- A new CMake module `options_wrappers.cmake` that adds new wrapper macros for |
| 11 | + the CMake `option` command. |
10 | 12 |
|
11 | 13 | ### Fixed
|
12 | 14 |
|
13 | 15 | - Bug in the diffuse interface Green's function. Contrary to the sharp
|
14 | 16 | interface case, it is wrong to remove the monopole, which becomes
|
15 | 17 | identically zero when the corresponding differential equation is
|
16 | 18 | solved in extreme cases (e.g. charge far away from the sphere).
|
17 |
| - |
18 |
| -### Added |
19 |
| - |
20 |
| -- A new CMake module `options_wrappers.cmake` that adds new wrapper macros for |
21 |
| - the CMake `option` command. |
22 |
| - |
23 |
| -### Fixed |
24 |
| - |
25 | 19 | - Visibility of symbols in the shared library is _finally_ handled properly.
|
26 | 20 | The necessary flags to the C++ compiler were not set for the subtargets built
|
27 | 21 | as CMake `OBJECT` libraries. This results in a modest decrease in library
|
|
33 | 27 | `<install_prefix>/lib64` (or `<install_prefix>/lib`) as path to `libpcm.so.1`.
|
34 | 28 | - Code coverage analysis was restored. We now use
|
35 | 29 | [Codecov](https://codecov.io). Thanks @arnfinn :tada:
|
| 30 | +- **BREAKING CHANGE** The layout of the installation for the Python scripts has |
| 31 | + been changed. This addresses issue #116. Given the user-defined installation |
| 32 | + prefix (`<prefix>`) one would obtain: |
| 33 | + ``` |
| 34 | + <prefix>/pcmsolver |
| 35 | + ├── bin |
| 36 | + │ ├── go_pcm.py |
| 37 | + │ ├── plot_cavity.py |
| 38 | + │ └── run_pcm |
| 39 | + ├── include |
| 40 | + │ └── PCMSolver |
| 41 | + │ ├── bi_operators |
| 42 | + │ ├── cavity |
| 43 | + │ ├── Citation.hpp |
| 44 | + │ ├── Config.hpp |
| 45 | + │ ├── Cxx11Workarounds.hpp |
| 46 | + │ ├── ErrorHandling.hpp |
| 47 | + │ ├── external |
| 48 | + │ ├── GitInfo.hpp |
| 49 | + │ ├── green |
| 50 | + │ ├── interface |
| 51 | + │ ├── LoggerInterface.hpp |
| 52 | + │ ├── PCMInput.h |
| 53 | + │ ├── PCMSolverExport.h |
| 54 | + │ ├── pcmsolver.h |
| 55 | + │ ├── PhysicalConstants.hpp |
| 56 | + │ ├── solver |
| 57 | + │ ├── STLUtils.hpp |
| 58 | + │ ├── TimerInterface.hpp |
| 59 | + │ └── utils |
| 60 | + ├── lib64 |
| 61 | + │ ├── libpcm.a |
| 62 | + │ ├── libpcm.so -> libpcm.so.1 |
| 63 | + │ ├── libpcm.so.1 |
| 64 | + │ └── python |
| 65 | + │ └── pcmsolver |
| 66 | + └── share |
| 67 | + └── cmake |
| 68 | + └── PCMSolver |
| 69 | + ``` |
36 | 70 |
|
37 | 71 | ### Changed
|
38 | 72 |
|
39 | 73 | - As a result of the visibility change, unit tests can only be linked against
|
40 | 74 | the static library, since all symbols are always visible in a static archive
|
41 | 75 | library.
|
| 76 | +- **BREAKING CHANGE** The `pcmsolver.py` script/module **was removed** to |
| 77 | + address issues #111 and #112. The `main` portion of the script has now been |
| 78 | + separated into a `go_pcm.py` script which can be used in the same way as |
| 79 | + `pcmsolver.py` was used before: to parse the PCMSolver input and to run the |
| 80 | + module standalone. This separation greatly simplifies the use as a module |
| 81 | + within the Python launcher scripts of host programs. |
42 | 82 |
|
43 | 83 | ## [Version 1.1.12] - 2018-01-20
|
44 | 84 |
|
|
0 commit comments