Code development platform for open source projects from the European Union institutions

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

SearchAlgorithm: corrected display of search points

parent 4bf3d93b
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.
Finish editing this message first!
Please register or to comment