Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS has been phased out. To see alternatives please check here

Skip to content
Snippets Groups Projects
Commit 88fc5df9 authored by Michael KRISPER's avatar Michael KRISPER
Browse files

SearchAlgorithm: corrected display of search points

(cherry picked from commit 20a365e2)
parent 7e9e9b3a
No related branches found
No related tags found
No related merge requests found
......@@ -181,7 +181,7 @@ namespace TUGraz.VectoCore.Utils
log.Error("debug: {0}", debug);
WriteSearch(debug, "LineSearch.csv");
throw new VectoSearchFailedException("Failed to find operating point! points: {0}", debug);
throw new VectoSearchFailedException("Failed to find operating point! points: {0}", debug.LocalData.Select(d => d.b).Join());
}
[Conditional("TRACE")]
......@@ -298,7 +298,7 @@ namespace TUGraz.VectoCore.Utils
log.Error("debug: {0}", debug);
#endif
WriteSearch(debug, "InterpolateSearch.csv");
throw new VectoSearchFailedException("Failed to find operating point! points: {0}", debug);
throw new VectoSearchFailedException("Failed to find operating point! points: {0}", debug.LocalData.Select(d => d.b).Join());
}
[Conditional("TRACE")]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment