Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,12 @@ void CompareState::processCompareState()
}
}

if (validLines.empty()) // No references found, we need to notify that this is not a correct result
{
totalError_X = std::numeric_limits<double>::max();
totalError_V = std::numeric_limits<double>::max();
}

msg_info() << "totalError_X = " << totalError_X << ", totalError_V = " << totalError_V;
}

Expand Down
Loading