Skip to content
Snippets Groups Projects
Commit f21c99b7 authored by Ludovic Apvrille's avatar Ludovic Apvrille
Browse files

Update on clock management in avatar model checker

parent f7c20e27
Branches
No related tags found
No related merge requests found
...@@ -147,12 +147,12 @@ public class AvatarModelChecker implements Runnable { ...@@ -147,12 +147,12 @@ public class AvatarModelChecker implements Runnable {
// Compute initial state // Compute initial state
SpecificationState initialState = new SpecificationState(); SpecificationState initialState = new SpecificationState();
initialState.setInit(spec); initialState.setInit(spec);
prepareTransitionsOfState(initialState);
blockValues = initialState.getBlockValues();
initialState.id = getStateID(); initialState.id = getStateID();
if (ignoreEmptyTransitions) { if (ignoreEmptyTransitions) {
handleNonEmptyUniqueTransition(initialState); handleNonEmptyUniqueTransition(initialState);
} }
prepareTransitionsOfState(initialState);
blockValues = initialState.getBlockValues();
//TraceManager.addDev("initialState=" + initialState.toString()); //TraceManager.addDev("initialState=" + initialState.toString());
initialState.computeHash(blockValues); initialState.computeHash(blockValues);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment