Skip to content
Snippets Groups Projects
Commit 59960744 authored by tempiaa's avatar tempiaa
Browse files

Added states and transition information in the verification trace name

parent 7e6b5062
No related branches found
No related tags found
1 merge request!350Model-checker updates
...@@ -4,6 +4,8 @@ public class CounterexampleQueryReport { ...@@ -4,6 +4,8 @@ public class CounterexampleQueryReport {
private String name; private String name;
private String query; private String query;
private String report; private String report;
private int nbOfStates;
private int nbOfTransitions;
public CounterexampleQueryReport(String name) { public CounterexampleQueryReport(String name) {
this.name = name; this.name = name;
...@@ -36,4 +38,21 @@ public class CounterexampleQueryReport { ...@@ -36,4 +38,21 @@ public class CounterexampleQueryReport {
this.report = report; this.report = report;
} }
public int getNbOfStates() {
return nbOfStates;
}
public void setNbOfStates(int nbOfStates) {
this.nbOfStates = nbOfStates;
}
public int getNbOfTransitions() {
return nbOfTransitions;
}
public void setNbOfTransitions(int nbOfTransitions) {
this.nbOfTransitions = nbOfTransitions;
}
} }
...@@ -266,6 +266,8 @@ public class CounterexampleTrace { ...@@ -266,6 +266,8 @@ public class CounterexampleTrace {
s.insert(0 ,"des(0," + (trace.size() - 1) + "," + statesID.size() + ")\n"); s.insert(0 ,"des(0," + (trace.size() - 1) + "," + statesID.size() + ")\n");
CounterexampleQueryReport cr = new CounterexampleQueryReport(null, query, s.toString()); CounterexampleQueryReport cr = new CounterexampleQueryReport(null, query, s.toString());
cr.setNbOfStates(statesID.size());
cr.setNbOfTransitions(trace.size() - 1);
autTraces.add(cr); autTraces.add(cr);
} }
......
...@@ -978,6 +978,8 @@ public class JDialogAvatarModelChecker extends javax.swing.JFrame implements Act ...@@ -978,6 +978,8 @@ public class JDialogAvatarModelChecker extends javax.swing.JFrame implements Act
RG rg = new RG(file); RG rg = new RG(file);
rg.data = tr.getReport(); rg.data = tr.getReport();
rg.fileName = filename; rg.fileName = filename;
rg.nbOfStates = tr.getNbOfStates();
rg.nbOfTransitions = tr.getNbOfTransitions();
rg.name = tr.getQuery() + "_" + dateAndTime; rg.name = tr.getQuery() + "_" + dateAndTime;
mgui.addRG(rg); mgui.addRG(rg);
File f = new File(filename); File f = new File(filename);
......
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