Lines Matching refs:graph
33 #include "ceres/graph.h"
49 scoped_ptr<Graph< ParameterBlock*> > graph(CreateHessianGraph(program));
51 const HashSet<ParameterBlock*>& vertices = graph->vertices();
58 int independent_set_size = StableIndependentSetOrdering(*graph, ordering);
75 scoped_ptr<Graph< ParameterBlock*> > graph(CreateHessianGraph(program));
76 int independent_set_size = IndependentSetOrdering(*graph, ordering);
94 scoped_ptr<Graph< ParameterBlock*> > graph(CreateHessianGraph(program));
101 IndependentSetOrdering(*graph, &independent_set_ordering);
105 graph->RemoveVertex(parameter_block);
112 Graph<ParameterBlock*>*
114 Graph<ParameterBlock*>* graph = CHECK_NOTNULL(new Graph<ParameterBlock*>);
119 graph->AddVertex(parameter_block);
139 graph->AddEdge(parameter_blocks[j], parameter_blocks[k]);
144 return graph;