MCPcopy Create free account
hub / github.com/AMReX-Codes/amrex / querytable

Method querytable

Src/Base/AMReX_ParmParse.cpp:3016–3024  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3014}
3015
3016int ParmParse::querytable (std::string_view name, std::vector<std::vector<double>>& ref) const
3017{
3018 std::string table_s;
3019 int r = query(name, table_s);
3020 if (r) {
3021 read_table_2d(ref, table_s);
3022 }
3023 return r;
3024}
3025
3026int ParmParse::querytable (std::string_view name, std::vector<std::vector<float>>& ref) const
3027{

Callers 2

gettableMethod · 0.95
mainFunction · 0.80

Calls 1

read_table_2dFunction · 0.85

Tested by

no test coverage detected