You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running the example code provided in the wiki, I get this error:
Type mismatch: cannot convert from IFDSReachingDefinitions to IFDSTabulationProblem<Unit,Pair<Value,Set>,SootMethod,InterproceduralCFG<Unit,SootMethod>>
It seems the issue comes from this statement:
IFDSTabulationProblem<Unit, Pair<Value,
Set<DefinitionStmt>>, SootMethod,
InterproceduralCFG<Unit, SootMethod>> problem = new IFDSReachingDefinitions(icfg);
Activity
ericbodden commentedon Jan 14, 2020
Can you please make sure that the
Pair
type you use is the typesoot.toolkits.scalar.Pair
? Then it works for me.ericbodden commentedon Jan 27, 2020
@danielftz Could you confirm please? Thanks