src/Tools/Graphview/mutator.scala
changeset 71601 97ccf48c2f0c
parent 59459 985fc55e9f27
child 73344 f5c147654661
equal deleted inserted replaced
71600:64aad1e46f98 71601:97ccf48c2f0c
   171   override def toString: String = name
   171   override def toString: String = name
   172 }
   172 }
   173 
   173 
   174 trait Filter extends Mutator
   174 trait Filter extends Mutator
   175 {
   175 {
   176   def mutate(full_graph: Graph_Display.Graph, graph: Graph_Display.Graph) = filter(graph)
   176   def mutate(full_graph: Graph_Display.Graph, graph: Graph_Display.Graph): Graph_Display.Graph = filter(graph)
   177   def filter(graph: Graph_Display.Graph): Graph_Display.Graph
   177   def filter(graph: Graph_Display.Graph): Graph_Display.Graph
   178 }
   178 }