mirror of
https://git.gfz-potsdam.de/naaice/poet.git
synced 2025-12-16 04:48:23 +01:00
8 lines
198 B
C++
8 lines
198 B
C++
#include "InitialList.hpp"
|
|
|
|
namespace poet {
|
|
void InitialList::initializeFromList(const Rcpp::List &setup) {
|
|
initGrid(setup[grid_key]);
|
|
initDiffusion(setup[diffusion_key]);
|
|
}
|
|
} // namespace poet
|