From 85b83ec91a13b87e160326246246ab86d5ac63ae Mon Sep 17 00:00:00 2001 From: Tom Gustafsson Date: Mon, 20 Jul 2020 23:22:45 +0300 Subject: [PATCH] Update README.md --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 75264e281..54562a09e 100644 --- a/README.md +++ b/README.md @@ -56,14 +56,12 @@ A = laplace.assemble(basis) # type: scipy.sparse.csr_matrix The matrix `A` has 1.5 million rows/columns and took only a few seconds to assemble! -More examples can be found in the [source code -distribution](https://github.com/kinnala/scikit-fem/tree/master/docs/examples). +More examples can be found in the [gallery](https://scikit-fem.readthedocs.io/en/latest/listofexamples.html). ## Documentation The project is documented using Sphinx. A recent version of the documentation -can be found from [Github -pages](https://kinnala.github.io/scikit-fem-docs/index.html). +can be found from [Read the Docs](https://scikit-fem.readthedocs.io/en/latest/). ## Installation @@ -111,6 +109,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Unreleased #### Added +- Support for complex-valued forms: `BilinearForm` and `LinearForm` now take + an optional argument `dtype` which defaults to `np.float64` + but can be also `np.complex64` - `Dofs.__or__` and `Dofs.__add__`, for merging degree-of-freedom sets (i.e. `Dofs` objects) using `|` and `+` operators - `Dofs.drop` and `Dofs.keep`, for further filtering the degree-of-freedom sets