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 20a365e2 authored by Michael KRISPER's avatar Michael KRISPER
Browse files

SearchAlgorithm: corrected display of search points

parent 4bf3d93b
Branches
Tags
No related merge requests found
...@@ -181,7 +181,7 @@ namespace TUGraz.VectoCore.Utils ...@@ -181,7 +181,7 @@ namespace TUGraz.VectoCore.Utils
log.Error("debug: {0}", debug); log.Error("debug: {0}", debug);
WriteSearch(debug, "LineSearch.csv"); 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")] [Conditional("TRACE")]
...@@ -298,7 +298,7 @@ namespace TUGraz.VectoCore.Utils ...@@ -298,7 +298,7 @@ namespace TUGraz.VectoCore.Utils
log.Error("debug: {0}", debug); log.Error("debug: {0}", debug);
#endif #endif
WriteSearch(debug, "InterpolateSearch.csv"); 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")] [Conditional("TRACE")]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment