You are here: Home >Posts Tagged ‘slicing

Static and Dynamic Program Slicing

Static slices depend on data flow control possibilities…. All the possible executions are captured and sometimes this is too much information, especially when debugging. Dynamic slices isolate all the statements that actually affect the value of a variable for a particular execution of a program. As well as looking at a variable at a particular [...]

Tags:

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • Twitter
  • RSS
Read User's Comments0

An Introduction to Program Slicing

Program Slicing is a software debugging technique used to isolate only those statements that are related to a particular statement under inspection. A Quick Example x = 42 d = 23 Suppose you were interested in the value of d. In this case we can see that x = 42 is not important or related [...]

Tags:

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • Twitter
  • RSS
Read User's Comments0