File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -253,18 +253,19 @@ struct
253253 end
254254end
255255
256+ type cfg_path = (MyCFG .edge * MyCFG .node ) list
256257
257258module type SIntra =
258259sig
259- val next : MyCFG .node -> (MyCFG .edge * MyCFG .node * ( MyCFG .edge * MyCFG .node ) list ) list
260- (* * @return Inner list is the original CFG path corresponding to the step. *) (* TODO: extract type *)
260+ val next : MyCFG .node -> (MyCFG .edge * MyCFG .node * cfg_path ) list
261+ (* * @return Also the original CFG path corresponding to the step. *)
261262end
262263
263264module type SIntraOpt =
264265sig
265266 include SIntra
266- val next_opt : MyCFG .node -> ((MyCFG .edge * MyCFG .node * ( MyCFG .edge * MyCFG .node ) list ) list ) option
267- (* * @return Inner list is the original CFG path corresponding to the step. *) (* TODO: extract type *)
267+ val next_opt : MyCFG .node -> ((MyCFG .edge * MyCFG .node * cfg_path ) list ) option
268+ (* * @return Also the original CFG path corresponding to the step. *)
268269end
269270
270271module CfgIntra (Cfg :CfgForward ): SIntraOpt =
You can’t perform that action at this time.
0 commit comments