agutal
March 11th, 2009, 06:47 AM
help needed.
I want a tool which will track a variables or pieace of code which is affected by a particular variable.
Means it will check for dependencies on a particular variable.
eg.
int i;
int x = i +10 ;
int k = x - 1;
in above example integers 'x' and 'k' are dependent on [int 'i' .
so i want such a tool or algorithm which may track dependecies on a particular Variable.
Please help. Thanks in advance.
I want a tool which will track a variables or pieace of code which is affected by a particular variable.
Means it will check for dependencies on a particular variable.
eg.
int i;
int x = i +10 ;
int k = x - 1;
in above example integers 'x' and 'k' are dependent on [int 'i' .
so i want such a tool or algorithm which may track dependecies on a particular Variable.
Please help. Thanks in advance.