mirror of
https://git.gfz-potsdam.de/naaice/tug.git
synced 2025-12-13 09:28:23 +01:00
added some commentary with questions and TODOs
This commit is contained in:
parent
165e72e978
commit
2d9d318981
@ -32,6 +32,7 @@ enum {
|
||||
|
||||
/**
|
||||
* Defines the boundary condition type and according value.
|
||||
* QUESTION: For what is the struct bc necessary?
|
||||
*/
|
||||
typedef struct boundary_condition_s {
|
||||
bctype type; /**< Type of the boundary condition */
|
||||
@ -197,6 +198,7 @@ private:
|
||||
|
||||
enum { X_DIM, Y_DIM };
|
||||
|
||||
// TODO combine the 'public' blocks
|
||||
public:
|
||||
/**
|
||||
* Returns the left/right boundary condition for 1D grid.
|
||||
|
||||
@ -15,6 +15,8 @@ constexpr uint8_t MAX_ARR_SIZE = 3;
|
||||
|
||||
/**
|
||||
* Defines grid dimensions and boundary conditions.
|
||||
* QUESTION: why is TugGrid a separate struct? For conceptual reasons?
|
||||
* why not combine TugGrid and TugInput?
|
||||
*/
|
||||
typedef struct tug_grid_s {
|
||||
std::array<uint32_t, MAX_ARR_SIZE>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user