Skip to content

Commit c8672e2

Browse files
committed
updated CHANGELOG.md to reflect the changes on the new version.
1 parent 888f8cf commit c8672e2

2 files changed

Lines changed: 23 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,28 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres
66
to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8+
## [0.1.9] - 18-01-2022
9+
10+
### Added
11+
12+
- Added `plot_replicator_dynamics_in_simplex` and `plot_moran_dynamics_in_simplex` to simplify the plotting of 2
13+
Simplexes when using `replicator_equation` and `StochDynamics` provided in `egttools`.
14+
- Added an extra example to the docs to showcase the simplified plotting.
15+
16+
### Fixed
17+
18+
- Fixed wrong numpy use in `egttools.utils.calculate_stationary_distribution`. Instead of `numpy.eig` the correct use
19+
is `numpy.linalg.eig`.
20+
- Fixed issue with plotting edges which have random drift.
21+
Before `egttools.plotting.helpers.calculate_stationary_points` would logically find many roots in an edge with random
22+
drift and `Simplex2D.draw_stationary_points` would attempt to draw all of them. Now, we first search of edges in which
23+
there is random drift, and mask them, so that no stationary points nor trajectories are plot in the edge. Instead, we
24+
draw a `dashed` line to represent the random drift.
25+
26+
### Changed
27+
28+
- Updated `Readme.md` to use the simplified `plot_replicator_dynamics_in_simplex` in the example of 2 Simplex plotting.
29+
830
## [0.1.8] - 15-01-2022
931

1032
### Added

src/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
#ifndef EGTTOOLS_VERSION_H
1919
#define EGTTOOLS_VERSION_H
2020

21-
#define EGTTOOLS_VERSION 0.1.8.dev1
21+
#define EGTTOOLS_VERSION 0.1.9.dev1
2222

2323
#endif//EGTTOOLS_VERSION_H

0 commit comments

Comments
 (0)