comparison TODO.md @ 1047:d12ab8120d29 feature/first_derivative

Merge default
author Jonatan Werpers <jonatan@werpers.com>
date Wed, 23 Mar 2022 12:43:03 +0100
parents 6b94663f4376
children 3bb94ce74697 396278072f18
comparison
equal deleted inserted replaced
1046:e00eb000346e 1047:d12ab8120d29
8 - [ ] Add new Laplace operator to DiffOps, probably named WaveEqOp(?!!?) 8 - [ ] Add new Laplace operator to DiffOps, probably named WaveEqOp(?!!?)
9 - [ ] Create a struct that bundles the necessary Tensor operators for solving the wave equation. 9 - [ ] Create a struct that bundles the necessary Tensor operators for solving the wave equation.
10 - [ ] Replace getindex hack for flattening tuples with flatten_tuple. (eg. `getindex.(range_size.(L.D2),1)`) 10 - [ ] Replace getindex hack for flattening tuples with flatten_tuple. (eg. `getindex.(range_size.(L.D2),1)`)
11 - [ ] Use `@inferred` in a lot of tests. 11 - [ ] Use `@inferred` in a lot of tests.
12 - [ ] Make sure we are setting tolerances in tests in a consistent way 12 - [ ] Make sure we are setting tolerances in tests in a consistent way
13 - [ ] Add check for correct domain sizes to lazy tensor operations using SizeMismatch
14 - [ ] Write down some coding guideline or checklist for code conventions. For example i,j,... for indices and I for multi-index 13 - [ ] Write down some coding guideline or checklist for code conventions. For example i,j,... for indices and I for multi-index
15 - [ ] Add boundschecking in TensorMappingApplication
16 - [ ] Start renaming things in LazyTensors
17 - [ ] Clean up RegionIndices 14 - [ ] Clean up RegionIndices
18 1. [ ] Write tests for how things should work 15 1. [ ] Write tests for how things should work
19 2. [ ] Update RegionIndices accordingly 16 2. [ ] Update RegionIndices accordingly
20 3. [ ] Fix the rest of the library 17 3. [ ] Fix the rest of the library
21 Should getregion also work for getregion(::Colon,...) 18 Should getregion also work for getregion(::Colon,...)
22 - [ ] Add possibility to create tensor mapping application with `()`, e.g `D1(v) <=> D1*v`? 19 - [ ] Add possibility to create tensor mapping application with `()`, e.g `D1(v) <=> D1*v`?
23 - [ ] Add custom pretty printing to LazyTensors/SbpOperators to enhance readability of e.g error messages. 20 - [ ] Add custom pretty printing to LazyTensors/SbpOperators to enhance readability of e.g error messages.
24 See (https://docs.julialang.org/en/v1/manual/types/#man-custom-pretty-printing) 21 See (https://docs.julialang.org/en/v1/manual/types/#man-custom-pretty-printing)
25 - [ ] Move export statements to top of each module 22 - [ ] Move export statements to top of each module
26 - [ ] Add a type StencilSet for easier dispatch
27 23
28 ## Repo 24 ## Repo
29 - [ ] Rename repo to Sbplib.jl 25 - [ ] Rename repo to Sbplib.jl
30 26
31 # Wrap up tasks 27 # Wrap up tasks