md.getSafeMethodDescriptor()+
".txt" ) );
bw.write( "MLP Results for "+md+"\n-------------------\n");
+
+ FlatSESEEnterNode implicitSESE = (FlatSESEEnterNode) fm.getNext(0);
+ if( !implicitSESE.getIsCallerSESEplaceholder() &&
+ implicitSESE != mainSESE
+ ) {
+ System.out.println( implicitSESE+" is not implicit?!" );
+ System.exit( -1 );
+ }
+ bw.write( "Dynamic vars to manage:\n "+implicitSESE.getDynamicVarSet());
+
bw.write( "\n\nLive-In, Root View\n------------------\n" +fm.printMethod( livenessRootView ) );
bw.write( "\n\nVariable Results-Out\n----------------\n" +fm.printMethod( variableResults ) );
bw.write( "\n\nNot Available Results-Out\n---------------------\n"+fm.printMethod( notAvailableResults ) );
}
}
+ bw.write( " Dynamic vars to manage: "+fsen.getDynamicVarSet()+"\n");
+
bw.write( " out-set: "+fsen.getOutVarSet()+"\n" );
bw.write( "}\n" );
}