public BasicBlockEdge(CFG cfg, int fromName, int toName)
        {
            from = cfg.createNode(fromName);
            to = cfg.createNode(toName);

            from.addOutEdge(to);
            to.addInEdge(from);

            cfg.addEdge(this);
        }