Public Methods | |
Status () | |
Status (Status s) | |
void | add (Status s) |
void | print () |
int | report (long deltaTime, int lastReportTransitions) |
void | updateMemoryUsage () |
Public Attributes | |
int | states = 0 |
int | transitions = 0 |
int | instructions = 0 |
long | memory = 0 |
long | memoryGC = 0 |
int | storageMemory = 0 |
int | GCRuns = 0 |
int | GCs = 0 |
int | maxStackDepth = 0 |
int | intermediateTransitions = 0 |
int | unique = 0 |
Static Public Attributes | |
long | startingTime = System.currentTimeMillis() |
Definition at line 15 of file Status.java.
|
Initializes the status. Definition at line 166 of file Status.java. |
|
Creates a copy of a Status object.
Definition at line 173 of file Status.java. |
|
Adds the status of a node to the state of the system. Definition at line 210 of file Status.java. |
|
Prints the current status to the console. Definition at line 259 of file Status.java. Referenced by JPF::printResults().
|
|
Updates the information regarding memory usage. Definition at line 344 of file Status.java. |
|
Number of types the garbage collector has been activated. Definition at line 106 of file Status.java. |
|
Number of objects collected by the garbage collector. Definition at line 116 of file Status.java. |
|
Number of instruction that has been executed. Definition at line 29 of file Status.java. |
|
Number of intermediate transitions. Definition at line 152 of file Status.java. |
|
Current maximum depth searched by the stack. Definition at line 128 of file Status.java. |
|
Size of the heap used to store objects. Definition at line 34 of file Status.java. |
|
Size of the heap after running the garbage collector. Definition at line 40 of file Status.java. |
|
Time the verification was started. Definition at line 123 of file Status.java. |
|
Number of states that has been visited. Definition at line 19 of file Status.java. |
|
Memory used to store states in the hash table. Definition at line 45 of file Status.java. |
|
Number of transitions that has been executed. Definition at line 24 of file Status.java. |
|
Number of unique states stored. Definition at line 159 of file Status.java. |