value pathUntil is not a member of scalax.collection.mutable.Graph[br.unb.cic.soot.graph.Node,scalax.collection.GraphEdge.DiEdge]#NodeT
I Have the following definitions for a graph:
trait NodeType
case class SourceNode() extends NodeType
case class SinkNode() extends NodeType
case class SimpleNode() extends NodeType
case class Node(className: String, method: String, stmt: String, line: Int, nodeType: NodeType)
var svg = collection.mutable.Graph.empty[Node,DiEdge]
When I try to call the pathUntil method in a node of the svg graph, I get a compilation error using sbt: value pathUntil is not a member of scalax.collection.mutable.Graph[br.unb.cic.soot.graph.Node,scalax.collection.GraphEdge.DiEdge]#NodeT
A similar error also occurs when I try to use the method pathTo. After spending a couple of hours, I could not figure out what is happening.
Cheers,
Rodrigo.