/usr/include/opencascade/GraphDS_DirectedGraph.gxx is in libopencascade-foundation-dev 6.5.0.dfsg-2build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 | // File: GraphDS_DirectedGraph.gxx
// Created: Tue Mar 16 14:12:08 1993
// Author: Denis PASCAL
// <dp@bravox>
#include <Standard_NoSuchObject.hxx>
#include <Standard_DomainError.hxx>
//=======================================================================
//function : GraphDS_DirectedGraph
//purpose :
//=======================================================================
GraphDS_DirectedGraph::GraphDS_DirectedGraph ()
{
}
//=======================================================================
//function : NbVertices
//purpose :
//=======================================================================
Standard_Integer GraphDS_DirectedGraph::NbVertices () const
{
return myVertices.Extent();
}
//=======================================================================
//function : NbEdges
//purpose :
//=======================================================================
Standard_Integer GraphDS_DirectedGraph::NbEdges () const
{
return myEdges.Extent();
}
//=======================================================================
//function : IsEmpty
//purpose :
//=======================================================================
Standard_Boolean GraphDS_DirectedGraph::IsEmpty () const
{
return (myVertices.IsEmpty());
}
//=======================================================================
//function : Clear
//purpose :
//=======================================================================
void GraphDS_DirectedGraph::Clear ()
{
myVertices.Clear();
myEdges.Clear();
}
//=======================================================================
//function : Contains
//purpose :
//=======================================================================
Standard_Boolean GraphDS_DirectedGraph::Contains
(const Handle(GraphDS_Vertex)& V) const
{
return myVertices.Contains(V);
}
//=======================================================================
//function : IsRoot
//purpose :
//=======================================================================
Standard_Boolean GraphDS_DirectedGraph::IsRoot
(const Handle(GraphDS_Vertex)& V,
const Standard_Boolean ignoreselfloop) const
{
return V->IsRoot(ignoreselfloop);
}
//=======================================================================
//function : IsLeaf
//purpose :
//=======================================================================
Standard_Boolean GraphDS_DirectedGraph::IsLeaf
(const Handle(GraphDS_Vertex)& V,
const Standard_Boolean ignoreselfloop) const
{
return V->IsLeaf(ignoreselfloop);
}
//=======================================================================
//function : Contains
//purpose :
//=======================================================================
Standard_Boolean GraphDS_DirectedGraph::Contains
(const Handle(GraphDS_Edge)& E) const
{
return myEdges.Contains(E);
}
//=======================================================================
//function : Add
//purpose :
//=======================================================================
Handle(GraphDS_Vertex) GraphDS_DirectedGraph::Add
(const GraphDS_Item& value)
{
Handle(GraphDS_Vertex) V = new GraphDS_Vertex (value);
myVertices.Add(V);
return V;
}
//=======================================================================
//function : Remove
//purpose :
//=======================================================================
void GraphDS_DirectedGraph::Remove (const Handle(GraphDS_Vertex)& V)
{
if (!V->GetEdges().IsEmpty()) Standard_DomainError::Raise();
myVertices.Remove(V);
}
//=======================================================================
//function : Add
//purpose :
//=======================================================================
Handle(GraphDS_Edge) GraphDS_DirectedGraph::Add
(const Handle(GraphDS_Vertex)& source,
const Handle(GraphDS_Vertex)& destination,
const GraphDS_Attribute& A)
{
Handle(GraphDS_Edge) E = new GraphDS_Edge (source,destination,A);
source->AddEdge (E);
destination->AddEdge(E);
myEdges.Add(E);
return E;
}
//=======================================================================
//function : Remove
//purpose :
//=======================================================================
void GraphDS_DirectedGraph::Remove (const Handle(GraphDS_Edge)& E)
{
E->Source()->RemoveEdge(E);
E->Destination()->RemoveEdge(E);
myEdges.Remove(E);
}
|