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
{{ message }}
This repository has been archived by the owner on Jan 21, 2021. It is now read-only.
The current implementation in IndexFileReader::parseLine mistakes itervar-entries in vci-files as a block and thus crashes with the error "missing fields from block", when calling loadDataset on the corresponding vec-file.
The vec files were generated by a simulation based on OMNet++ 5.4.1.
My current quick fix for this is to add another line else if (tokens[0][0] == 'i' && strcmp(tokens[0], "itervar") == 0) { return; }
to the aforementioned procedure. However, I am not sure if it might be better to include the itervar-value within the data returned to R.
The text was updated successfully, but these errors were encountered:
michele-segata
added a commit
to michele-segata/omnetpp-resultfiles
that referenced
this issue
May 13, 2019
The current implementation in IndexFileReader::parseLine mistakes itervar-entries in vci-files as a block and thus crashes with the error "missing fields from block", when calling loadDataset on the corresponding vec-file.
The vec files were generated by a simulation based on OMNet++ 5.4.1.
My current quick fix for this is to add another line
else if (tokens[0][0] == 'i' && strcmp(tokens[0], "itervar") == 0) { return; }
to the aforementioned procedure. However, I am not sure if it might be better to include the itervar-value within the data returned to R.
The text was updated successfully, but these errors were encountered: