craffael
craffael
CMake allows you to specify "interface target properties" which are then "inherited" by all dependent targets; this is unfortunately not respected by cotire 1.7.8. I've constructed a small testcase that...
For me decompression of a cache on Windows is much slower than on linux. A [360Mb cache](https://github.com/craffael/lehrfempp/runs/1288591548) takes - only 10sec to download - but 5 minutes to decompress! The...
Dear all I'm trying to use BoomerAMG as a preconditioner to solve a 3D laplace problem which is assembled by a finite element code. I have the particular problem, that...
A REST API endpoint often has a "baseURI" such as `https://api.mailgun.net/v3`. A concrete endpoint has e.g. the full URI `https://api.mailgun.net/v3/abc.ch/events`. It would now be very nice if we could write:...
The MeshHierarchy class has five methods which essentially attach a struct for every mesh entity: - `const std::vector &PointChildInfos(size_type level) const` - `const std::vector &EdgeChildInfos(size_type level) const` - `const std::vector...
- Get rid of `entity_pointers_` for nodes + edges. - Instead of using `std::map` in `hybrid2d::Mesh()` constructor to identify duplicate edges, use std::sort. This should be quite a bit faster...
If we refine the [this mesh](https://github.com/craffael/lehrfempp/blob/6bc71806f16a8b07f62a218f7cf7a32ef47733c4/examples/refinement/meshes/square_quads.msh) with `MeshHierarchy::RefineRegular()`, the refined mesh contains quads with positive and negative orientation even though the original file had only positive orientations.
At the moment the function `write_tikz` outputs nodes of the mesh and connects them with straight line segments (codim=1 entities). I propose to add another option to WriteTikz named `TikzOutputControl::SecondOrder`...
As @anianruoss already noted in https://github.com/craffael/lehrfempp/pull/52#issuecomment-427921913 there are some problems with the structure and goal of the `example`'s. At the moment we have a whole bunch of small sample applications...