Skip to content
Snippets Groups Projects
Commit 1b7324b5 authored by Sytze de Witte's avatar Sytze de Witte
Browse files

every value in analysis results that is like (num, num)* is now plottable

parent 288b6297
No related branches found
No related tags found
No related merge requests found
......@@ -265,7 +265,8 @@ export class Result extends vscode.TreeItem {
// Icons for other types of model formats (e.g. JANI) can be added here...
}
if (label.trim() === "CDF") { // TODO: isPlottable should be determined server side
const plottableRegex = /\((\d+\.?d*),.(\d+\.?\d*)\)/gm;
if (value.match(plottableRegex)) {
this.isPlottable = true;
}
......
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