fc5 and gcc4.1 compiler problems

Johannes Rainer johannes.rainer at tcri.at
Fri May 12 12:02:11 UTC 2006


ok, thats basicly the function around line 371 (transitive_closure(g, TC);).
i attached also the cpp file...

    SEXP BGL_transitive_closure_D (SEXP num_verts_in,
            SEXP num_edges_in, SEXP R_edges_in )
    {
        using namespace boost;

        Graph_dd g(num_verts_in, num_edges_in, R_edges_in );
        Graph_dd TC;

        transitive_closure(g, TC);

        SEXP ansList, eList, vList;
        PROTECT(ansList = allocVector(VECSXP,2));
        PROTECT(vList = allocMatrix(INTSXP, 1, num_vertices(TC)));
        PROTECT(eList = allocMatrix(INTSXP, 2, num_edges(TC)));

        Graph_dd::vertex_iterator vi, v_end;
        int i = 0;
        for (i = 0, tie(vi, v_end) = vertices(TC); vi != v_end; ++vi)
    {
        INTEGER(vList)[i++] = *vi;
    }

        Graph_dd::edge_iterator ei, e_end;
        for (i = 0, tie(ei, e_end) = edges(TC); ei != e_end; ++ei)
        {
            INTEGER(eList)[i++] = source(*ei, TC);
            INTEGER(eList)[i++] = target(*ei, TC);
        }

        SET_VECTOR_ELT(ansList,0,vList);
        SET_VECTOR_ELT(ansList,1,eList);
        UNPROTECT(3);
        return(ansList);
    }

On 5/12/06, Chris Jones <jonesc at hep.phy.cam.ac.uk> wrote:
>
>
> > interfaces.cpp:371:   instantiated from here
>
> This is where you should start to look, as it appears to be where the
> problem start from. Can you post whats in the file around this line.
>
> Chris
>
> --
> fedora-list mailing list
> fedora-list at redhat.com
> To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
>



-- 
Johannes Rainer, Msc
Tyrolean Cancer Research Institute
Innrain 66, 6020 Innsbruck, Austria
Tel.: +43 512 570485 15
Email: johannes.rainer at tcri.at
          johannes.rainer at tugraz.at
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://listman.redhat.com/archives/fedora-list/attachments/20060512/60088bfa/attachment-0001.htm>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: interfaces.cpp
Type: text/x-c++src
Size: 14550 bytes
Desc: not available
URL: <http://listman.redhat.com/archives/fedora-list/attachments/20060512/60088bfa/attachment-0001.bin>


More information about the fedora-list mailing list