changeset 294:9c12d9eb38fd

Clean up TODO.txt
author Jonatan Werpers <jonatan@werpers.com>
date Mon, 22 Jun 2020 22:17:33 +0200
parents 0f94dc29c4bf
children 4735abcf5d42
files TODO.txt
diffstat 1 files changed, 27 insertions(+), 16 deletions(-) [+]
line wrap: on
line diff
--- a/TODO.txt	Mon Jun 22 21:43:05 2020 +0200
+++ b/TODO.txt	Mon Jun 22 22:17:33 2020 +0200
@@ -1,17 +1,36 @@
 # TODO
 
-Kolla att vi har @inbounds och @propagate_inbounds på rätt ställen
-Kolla att vi gör boundschecks överallt och att de är markerade med @boundscheck
-Kolla att vi har @inline på rätt ställen
+## Skämskudde
+ - [ ] Ändra namn på variabler och funktioner så att det följer style-guide
+ - [ ] Skriv tester
 
-Ändra namn på variabler och funktioner så att det följer style-guide
+## Coding
+* Add new Laplace opertor to DiffOps, probably named WaveEqOp(?!!?)
+ - [ ] Add 1D operators (D1, D2, e, d ... ) as TensorOperators
+ - [ ] Create a struct that bundles the necessary Tensor operators for solving the wave equation.
+ - [ ] Use traits like IndexStyle, IndexLinear, IndexCartesian to differentiate
+    TensorMappings that are flexible in size and those that are fixed in size
+ - [x] Move Laplace tensor operator to different package
+ - [x] Remove grid as a property of the Laplace tensor operator
 
-Profilera
+## Reasearch and thinking
+ - [ ] Redo all Tensor applys to take Vararg instead of tuple of Index?
+    Have we been down that road before? Is there any reason not to do this?
+ - [ ] Check how the native julia doc generator works
+    * Check if Vidars design docs fit in there
+ - [ ] Formalize how range_size() and domain_size() are supposed to work in TensorMappings where dim(domain) != dim(range) (add tests or document)
+ - [x] Should there be some kind of collection struct for SBP operators (as TensorOperators), providing easy access to all parts (D2, e, d , -> YES!
+ H.. H_gamma etc.)
+ - [x] Is "missing" a good value for unknown dimension sizes (of e*g for example)
 
-Skriv tester
+# Wrap up task
+ - [ ] Kolla att vi har @inbounds och @propagate_inbounds på rätt ställen
+ - [ ] Kolla att vi gör boundschecks överallt och att de är markerade med @boundscheck
+ - [ ] Kolla att vi har @inline på rätt ställen
+ - [ ] Profilera
 
-Specificera operatorer i TOML eller något liknande?
 
+# Old stuff todos (Are these still relevant?)
 Borde det finns motsvarande apply_stencil för apply_quadrature,
 apply_boundary_value och apply_normal_derivative?
 
@@ -22,12 +41,4 @@
 en vektor, utan randvärdet plockas ut utanför. Känns inte konsistent med övrig
 design
 
-## TODO 2020-06-18
- * Remove grid as a property of the Laplace tensor operator
- * Add 1D operators (D1, D2, e, d ... ) as TensorOperators
- * Move Laplace tensor operator to different package
- * Add new Laplace opertor to DiffOps, probably named WaveEqOp(?!!?)
- * Decide: Should there be some kind of collection struct for SBP operators (as TensorOperators), providing easy access to all parts (D2, e, d ,
- H.. H_gamma etc.)
- * Is "missing" a good value for unknown dimension sizes (of e*g for example)
- * Formalize how range_size() and domain_size() are supposed to work in TensorMappings where dim(domain) != dim(range) (add tests or document)
+Specificera operatorer i TOML eller något liknande?
\ No newline at end of file