You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The unit-test data contains a file with an integer attribute attr-Y. This is then used as follows:
auto node_sets = R"({ "NodeSet0": {"attr-Y": {"$gt": 23}} })";
NodeSets ns(node_sets);
Selection sel = ns.materialize("NodeSet0", population);
CHECK(sel == Selection({{3, 6}}));
which raises the warning:
/home/lucg/git/bbp/libsonata/extlib/HighFive/include/highfive/bits/H5ReadWrite_misc.hpp: 148 [WARN] /nodes/nodes-A/0/attr-Y": data and hdf5 dataset have different types: Float64 -> Integer64
The unit-test data contains a file with an integer attribute
attr-Y
. This is then used as follows:which raises the warning:
This can then be track down to:
libsonata/src/node_sets.cpp
Lines 365 to 374 in a9650ad
Is this intentional?
The text was updated successfully, but these errors were encountered: